• Stars
    star
    533
  • Rank 81,254 (Top 2 %)
  • Language
    PHP
  • License
    GNU Affero Genera...
  • Created almost 6 years ago
  • Updated 12 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The app which enables the users to edit office documents from Nextcloud using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to Nextcloud

Nextcloud ONLYOFFICE integration app

This app enables users to edit office documents from Nextcloud using ONLYOFFICE Docs packaged as Document Server - Community or Enterprise Edition.

Features

The app allows to:

  • Create and edit text documents, spreadsheets, and presentations.
  • Share files to other users.
  • Protect documents with watermarks.
  • Co-edit documents in real-time: use two co-editing modes (Fast and Strict), Track Changes, comments, and built-in chat. Co-editing is also available between several federated Nextcloud instances connected to one Document Server.

Supported formats:

  • For viewing and editing: DOCX, XLSX, PPTX, CSV, TXT, DOCXF, OFORM.
  • For viewing only: PDF.
  • For converting to Office Open XML formats: DOC, DOCM, DOT, DOTX, EPUB, HTM, HTML, ODP, ODT, POT, POTM, POTX, PPS, PPSM, PPSX, PPT, PPTM, RTF, XLS, XLSM, XLT, XLTM, XLTX.

Installing ONLYOFFICE Docs

You will need an instance of ONLYOFFICE Docs (Document Server) that is resolvable and connectable both from Nextcloud and any end clients. ONLYOFFICE Document Server must also be able to POST to Nextcloud directly.

ONLYOFFICE Document Server and Nextcloud can be installed either on different computers, or on the same machine. If you use one machine, set up a custom port for Document Server as by default both ONLYOFFICE Document Server and Nextcloud work on port 80.

You can install free Community version of ONLYOFFICE Docs or scalable Enterprise Edition with pro features.

To install free Community version, use Docker (recommended) or follow these instructions for Debian, Ubuntu, or derivatives.

To install Enterprise Edition, follow instructions here.

Community Edition vs Enterprise Edition comparison can be found here.

To use ONLYOFFICE behind a proxy, please refer to this article.

You can also use our Docker installation to install pre-configured Document Server (free version) and Nextcloud with a couple of commands.

Installing Nextcloud ONLYOFFICE integration app

The Nextcloud administrator can install the integration app from the in-built application market. For that go to the user name and select Apps.

After that find ONLYOFFICE in the list of available applications and install it.

If the server with the Nextcloud installed does not have an Internet access, or if you need it for some other reason, the administrator can install the application manually. To start using ONLYOFFICE Document Server with Nextcloud, the following steps must be performed:

  1. Go to the Nextcloud server apps/ directory (or some other directory used):

    cd apps/
  2. Get the Nextcloud ONLYOFFICE integration app. There are several ways to do that:

    a. Download the latest signed version from the official store for Nextcloud.

    b. Or you can download the latest signed version from the application release page on GitHub.

    c. Or you can clone the application source code and compile it yourself:

    git clone https://github.com/ONLYOFFICE/onlyoffice-nextcloud.git onlyoffice
    cd onlyoffice
    git submodule update --init --recursive
  3. Change the owner to update the application right from Nextcloud web interface:

    chown -R www-data:www-data onlyoffice
  4. In Nextcloud open the ~/settings/apps/disabled page with Not enabled apps by administrator and click Enable for the ONLYOFFICE application.

Configuring Nextcloud ONLYOFFICE integration app

In Nextcloud open the ~/settings/admin/onlyoffice page with administrative settings for ONLYOFFICE section. Enter the following address to connect ONLYOFFICE Document Server:

https://<documentserver>/

Where the documentserver is the name of the server with the ONLYOFFICE Document Server installed. The address must be accessible for the user browser and from the Nextcloud server. The Nextcloud server address must also be accessible from ONLYOFFICE Document Server for correct work.

Sometimes your network configuration might not allow the requests between installed Nextcloud and ONLYOFFICE Document Server using the public addresses. The Advanced server settings allows to set the ONLYOFFICE Document Server address for internal requests from Nextcloud server and the returning Nextcloud address for the internal requests from ONLYOFFICE Document Server. You need to enter them in the appropriate fields.

Starting from version 7.2, JWT is enabled by default and the secret key is generated automatically to restrict the access to ONLYOFFICE Docs and for security reasons and data integrity. Specify your own Secret key in the Nextcloud administrative configuration. In the ONLYOFFICE Docs config file, specify the same secret key and enable the validation.

Enable or disable the Open file in the same tab setting.

The Open in ONLYOFFICE action will be added to the file context menu. You can specify this action as default and it will be used when the file name is clicked for the selected file types.

Checking the connection

You can check the connection to ONLYOFFICE Document Server by using the following occ command:

occ onlyoffice:documentserver --check

You will see a text either with information about the successful connection or the cause of the error.

How it works

The ONLYOFFICE integration follows the API documented here https://api.onlyoffice.com/editors/basic:

  • When creating a new file, the user navigates to a document folder within Nextcloud and clicks the Document, Spreadsheet or Presentation item in the new (+) menu.

  • The browser invokes the create method in the /lib/Controller/EditorController.php controller. This method adds the copy of the file from the assets folder to the folder the user is currently in.

  • Or, when opening an existing file, the user navigates to it within Nextcloud and selects the Open in ONLYOFFICE menu option.

  • A new browser tab is opened and the index method of the /lib/Controller/EditorController.php controller is invoked.

  • The app prepares a JSON object with the following properties:

    • url - the URL that ONLYOFFICE Document Server uses to download the document;
    • callbackUrl - the URL that ONLYOFFICE Document Server informs about status of the document editing;
    • documentServerUrl - the URL that the client needs to respond to ONLYOFFICE Document Server (can be set at the administrative settings page);
    • key - the etag to instruct ONLYOFFICE Document Server whether to download the document again or not;
  • Nextcloud takes this object and constructs a page from templates/editor.php template, filling in all of those values so that the client browser can load up the editor.

  • The client browser makes a request for the javascript library from ONLYOFFICE Document Server and sends ONLYOFFICE Document Server the DocEditor configuration with the above properties.

  • Then ONLYOFFICE Document Server downloads the document from Nextcloud and the user begins editing.

  • ONLYOFFICE Document Server sends a POST request to the callbackUrl to inform Nextcloud that a user is editing the document.

  • When all users and client browsers are done with editing, they close the editing window.

  • After 10 seconds of inactivity, ONLYOFFICE Document Server sends a POST to the callbackUrl letting Nextcloud know that the clients have finished editing the document and closed it.

  • Nextcloud downloads the new version of the document, replacing the old one.

Known issues

  • Adding the storage using the External storages app has issues with the co-editing in some cases. If the connection is made using the same authorization keys (the Username and password or Global credentials authentication type is selected), then the co-editing is available for the users. If different authorization keys are used (Log-in credentials, save in database or User entered, store in database authentication options), the co-editing is not available. When the Log-in credentials, save in session authentication type is used, the files cannot be opened in the editor.

  • If you are using a self-signed certificate for your Document Server, Nextcloud will not validate such a certificate and will not allow connection to/from Document Server. This issue can be solved in two ways.

    You can check the 'Disable certificate verification (insecure)' box on the ONLYOFFICE administration page, Server settings section, within your Nextcloud.

    Another option is to change the Nextcloud config file manually. Locate the Nextcloud config file (/nextcloud/config/config.php) and open it. Insert the following section to it:

    'onlyoffice' => array (
        'verify_peer_off' => true
    )

    This will disable the certificate verification and allow Nextcloud to establish connection with Document Server.

    Please remember that this is a temporary insecure solution and we strongly recommend that you replace the certificate with the one issued by some CA. Once you do that, do not forget to uncheck the corresponding setting box or remove the above section from the Nextcloud config file.

ONLYOFFICE Docs editions

ONLYOFFICE offers different versions of its online document editors that can be deployed on your own servers.

  • Community Edition (onlyoffice-documentserver package)
  • Enterprise Edition (onlyoffice-documentserver-ee package)

The table below will help you to make the right choice.

Pricing and licensing Community Edition Enterprise Edition
Get it now Start Free Trial
Cost FREE Go to the pricing page
Simultaneous connections up to 20 maximum As in chosen pricing plan
Number of users up to 20 recommended As in chosen pricing plan
License GNU AGPL v.3 Proprietary
Support Community Edition Enterprise Edition
Documentation Help Center Help Center
Standard support GitHub or paid One year support included
Premium support Contact us Contact us
Services Community Edition Enterprise Edition
Conversion Service + +
Document Builder Service + +
Interface Community Edition Enterprise Edition
Tabbed interface + +
Dark theme + +
125%, 150%, 175%, 200% scaling + +
White Label - -
Integrated test example (node.js) + +
Mobile web editors - +*
Plugins & Macros Community Edition Enterprise Edition
Plugins + +
Macros + +
Collaborative capabilities Community Edition Enterprise Edition
Two co-editing modes + +
Comments + +
Built-in chat + +
Review and tracking changes + +
Display modes of tracking changes + +
Version history + +
Document Editor features Community Edition Enterprise Edition
Font and paragraph formatting + +
Object insertion + +
Adding Content control + +
Editing Content control + +
Layout tools + +
Table of contents + +
Navigation panel + +
Mail Merge + +
Comparing Documents + +
Spreadsheet Editor features Community Edition Enterprise Edition
Font and paragraph formatting + +
Object insertion + +
Functions, formulas, equations + +
Table templates + +
Pivot tables + +
Data validation + +
Conditional formatting + +
Sparklines + +
Sheet Views + +
Presentation Editor features Community Edition Enterprise Edition
Font and paragraph formatting + +
Object insertion + +
Transitions + +
Presenter mode + +
Notes + +
Form creator features Community Edition Enterprise Edition
Adding form fields + +
Form preview + +
Saving as PDF + +
Get it now Start Free Trial

* If supported by DMS.

More Repositories

1

DocumentServer

ONLYOFFICE Docs is a free collaborative online office suite comprising viewers and editors for texts, spreadsheets and presentations, forms and PDF, fully compatible with Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing in real time.
Shell
3,957
star
2

CommunityServer

Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
C#
2,456
star
3

DesktopEditors

An office suite that combines text, spreadsheet and presentation editors allowing to create, view and edit local documents
2,229
star
4

Docker-DocumentServer

ONLYOFFICE Document Server is an online office suite comprising viewers and editors for texts, spreadsheets and presentations, fully compatible with Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing in real time.
Shell
1,053
star
5

Docker-CommunityServer

Collaborative system for managing documents, projects, customer relations and emails in one place
Shell
442
star
6

docker-onlyoffice-nextcloud

Shell
356
star
7

onlyoffice-owncloud

The app which enables the users to edit office documents from ownCloud using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to ownCloud
JavaScript
299
star
8

core

Server core components which are a part of ONLYOFFICE Document Server
C++
251
star
9

sdkjs

JavaScript SDK which is a part of ONLYOFFICE Document Server and ONLYOFFICE Desktop Editors
JavaScript
214
star
10

web-apps

The frontend for ONLYOFFICE Document Server which builds the program interface
HTML
186
star
11

server

The backend server software layer which is the part of ONLYOFFICE Document Server and is the base for all other components
JavaScript
171
star
12

DocSpace

ONLYOFFICE DocSpace is a room-based collaborative platform which allows organizing a clear file structure depending on users' needs or project goals. Flexible access permissions and user roles allow fine-tuning the access to the whole space or separate rooms.
160
star
13

desktop-apps

The frontend for ONLYOFFICE Desktop Editors which builds the program interface
HTML
157
star
14

document-server-integration

Examples on how to integrate ONLYOFFICE Document Server into your own website or application
JavaScript
136
star
15

sdkjs-plugins

The add-ons forΒ ONLYOFFICE Document ServerΒ and ONLYOFFICE Desktop Editors.
JavaScript
120
star
16

onlyoffice.github.io

JavaScript
112
star
17

documents-app-android

Kotlin
101
star
18

build_tools

Used to build ONLYOFFICE DocumentServer-related products
Python
97
star
19

DocumentBuilder

ONLYOFFICE Document Builder is powerful text, spreadsheet, presentation and PDF generating tool
Makefile
96
star
20

docker-onlyoffice-owncloud

Shell
89
star
21

ooxml_parser

Ruby OOXML Parser
Ruby
83
star
22

Docker-MailServer

ONLYOFFICE Mail Server is a full-featured mail server solution developed on the base of the iRedMail package, containing the following components: Postfix, Dovecot, SpamAssassin, ClamAV, OpenDKIM, Fail2ban.
Shell
77
star
23

web-apps-old

The frontend for ONLYOFFICE Document Server which builds the program interface
HTML
75
star
24

document-server-proxy

Common setting for Document Server proxy
Shell
53
star
25

OneClickInstall

Installer used to automate the deployment process of ONLYOFFICE Community Edition.
C#
52
star
26

document-editor-vue

Vue component for ONLYOFFICE Document Server
TypeScript
51
star
27

desktop-sdk

The core part of ONLYOFFICE Desktop Editors
C++
44
star
28

appimage-desktopeditors

Portable version of ONLYOFFICE Desktop Editors
Makefile
42
star
29

dictionaries

The dictionaries of various languages used for spellchecking and hyphenation in ONLYOFFICE Document Server.
40
star
30

Kubernetes-Docs

ONLYOFFICE Docs for Kubernetes
Shell
40
star
31

onlyoffice-confluence

The plugin which enables the users to edit office documents from Confluence using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to Confluence
Java
36
star
32

document-editor-react

React component for ONLYOFFICE Document Server
TypeScript
26
star
33

documents-app-ios

Swift
23
star
34

plugin-zotero

Zotero plugin allows users to create bibliographies in ONLYOFFICE editors.
JavaScript
23
star
35

onlyoffice-redmine

The app which enables the users to edit office documents from Redmine using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to Redmine
Ruby
22
star
36

snap-documentserver

The ONLYOFFICE Document Server snap package for the snap package system
Shell
21
star
37

onlyoffice_odoo

The app which enables the users to edit office documents from Odoo using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to Odoo
Python
21
star
38

onlyoffice-mattermost

The app which enables the users to edit office documents from Mattermost using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to Mattermost
Go
19
star
39

projects-mobile

ONLYOFFICE Projects is a free project management app for Android-based devices. It allows users to create and track projects, tasks, subtasks, and milestones on the go.
Dart
18
star
40

onlyoffice-sharepoint

The solution which enables the users to edit office documents from SharePoint using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to SharePoint
C#
16
star
41

nssm

Forked version of git://git.nssm.cc/nssm/nssm.git http://nssm.cc/
C++
15
star
42

ControlPanel

Tools for administrating self-hosted ONLYOFFICE.
JavaScript
15
star
43

plugin-languagetool

Quickly correct grammar and style mistakes in ONLYOFFICE
JavaScript
15
star
44

plugin-mendeley

Mendeley plugin allows users to create bibliographies in ONLYOFFICE editors.
JavaScript
13
star
45

onlyoffice-humhub

Plugin for integrating ONLYOFFICE online editors with HumHub
PHP
12
star
46

ansible-role-documentserver

Ansible Role Document Server
11
star
47

document-server-package

Packages for Document Server
Shell
11
star
48

docs-integration-sdk-java

SDK for integrating ONLYOFFICE Document Server into your own website or application on Java
Java
10
star
49

plugin-ocr

OCR plugin allows recognizing text from pictures and screenshots and inserting it into ONLYOFFICE documents
JavaScript
9
star
50

core-fonts

9
star
51

snap-desktopeditors

The ONLYOFFICE Desktop Editors snap package for the snap package system
Shell
9
star
52

onlyoffice-strapi

The app which enables the users to edit office documents from Strapi using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to Strapi
JavaScript
8
star
53

plugin-drawio

Use the draw.io plugin to create, edit, and insert diagrams in ONLYOFFICE Docs
JavaScript
8
star
54

xcode-assets-export-figma

A Figma plugin for export Xcode assets
TypeScript
8
star
55

api.onlyoffice.com

ASP.NET
7
star
56

plugin-macros

Macros plugin allows creating JavaScript macros to run in your documents
JavaScript
7
star
57

plugin-wordscounter

Word-counting plugin for ONLYOFFICE editors
JavaScript
7
star
58

Docker-Docs

ONLYOFFICE Docs is an online office suite comprising viewers and editors for texts, spreadsheets and presentations and enabling collaborative editing in real time. The suite provides maximum compatibility with Office Open XML formats: .docx, .xlsx, .pptx.
Dockerfile
7
star
59

plugin-wordpress

WordPress plugin allows publishing articles from ONLYOFFICE document editor on your WordPress website.
JavaScript
7
star
60

DocSpace-server

C#
6
star
61

DocSpace-client

JavaScript
6
star
62

XMPPServer

An instant messaging app used within ONLYOFFICE.
C#
6
star
63

Kubernetes-DocSpace

Smarty
5
star
64

onlyoffice-wordpress

The plugin which enables the users to edit office documents from WordPress using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to WordPress
PHP
5
star
65

onlyoffice-chrome-extension

ONLYOFFICE Chrome Extension
JavaScript
5
star
66

document-editor-angular-workspace

Angular component for ONLYOFFICE Document Server
TypeScript
5
star
67

onlyoffice-plone

Plugin for integrating ONLYOFFICE online editors with Plone
Python
5
star
68

OneClickInstall-Workspace

Shell
5
star
69

onlyoffice-nuxeo

Plugin for integrating ONLYOFFICE online editors with Nuxeo
Java
5
star
70

document-builder-package

Inno Setup
4
star
71

Mail

C#
4
star
72

document-templates

Template files used to create new documents and documents with sample content
4
star
73

plugin-autocomplete

An example of an input assistant/non-standard keybord for ONLYOFFICE editors
JavaScript
4
star
74

testing-wrata

Ruby
4
star
75

plugin-photoeditor

Photo Editor plugin allows editing images in ONLYOFFICE editors.
JavaScript
4
star
76

document-editor-react-samples

TypeScript
4
star
77

onlyoffice-jira

The plugin which enables the users to edit office documents from Jira using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to Jira
Java
4
star
78

plugin-youtube

YouTube plugin allows embedding YouTube videos into ONLYOFFICE documents, spreadsheets, and presentations
JavaScript
4
star
79

plugin-highlightcode

Highlight code plugin allows highlighting code syntax in ONLYOFFICE documents, spreadsheets, and presentations
JavaScript
4
star
80

Docker-DocumentServerBuilder

Docker container for build sources from DocumentServer repository
Dockerfile
3
star
81

testing-documentserver-capacity

Script for testing documentserver capacity
JavaScript
3
star
82

plugin-doc2md

Convert your formatted documents to Markdown or HTML.
JavaScript
3
star
83

editors-webview-ios

Swift
3
star
84

office-js-api

Python
3
star
85

onlyoffice-api-dev

Python
3
star
86

editors-ios-sp

Swift
3
star
87

onlyoffice-suitecrm

The app which enables the users to edit office documents from SuiteCRM using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to SuiteCRM
PHP
3
star
88

plugin-speech

Speech plugin allows converting selected text into speech
JavaScript
3
star
89

plugin-jitsi

Make audio and video calls right in ONLYOFFICE Docs
JavaScript
3
star
90

onlyoffice-trello

The Power-Up which enables the users to edit office documents from Trello using ONLYOFFICE Document Server, allows multiple users to collaborate in real time and to save back those changes to Trello
TypeScript
3
star
91

plugin-thesaurus

Thesaurus plugin for ONLYOFFICE allows finding synonyms and inserting them into your doc
JavaScript
3
star
92

plugin-translator

Translator plugin allows translating the selected text into other languages
JavaScript
3
star
93

document-builder-integration

Examples on how to execute ONLYOFFICE Document Builder from your own website or application
C#
2
star
94

sdkjs-forms

JavaScript
2
star
95

plugin-typograf

Plugin to correct typography within ONLYOFFICE Docs
HTML
2
star
96

doc-builder-testing

JavaScript
2
star
97

document-editor-vue-samples

Vue
2
star
98

plugin-apertium

Quickly translate text in ONLYOFFICE Docs
JavaScript
2
star
99

DocSpace-buildtools

Rich Text Format
2
star
100

oforms.onlyoffice.com

JavaScript
2
star