Skip to content

openpaas-ng/linshare-editor-onlyoffice

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

linshare-editor-onlyoffice

A backend application acts as a middleware between OnlyOffice document server and LinShare

Initial setup steps

Install dependencies

npm install

Save public key to Linshare

[email protected] LINSHARE_PASS=adminlinshare LINSHARE_HOST=http://localhost:30000 bash ./config/config_key.sh

LINSHARE_USER and LINSHARE_PASS are Linshare administrator's username and password.

Configurations

Setup neccessary configurations in ./config/default.json to make the app works properly:

  • webserver.baseUrl: base url of this backend app for communication with document server
  • linshare.baseUrl: base url to LinShare api.
  • db.connectionString: connection string to a MongoDB sever.

In order to utilize environment values for custom configuration, you can add your own environment values that will be used for certain configuration in config/custom-environment-variables.json. This configuration will override the other configuration files to use the environment values instead.

Development

Create a customized config file for development

cp ./config/default.json ./config/development.json

Start server

npm start

Run in development mode

npm run dev

Run your unit tests

npm run test

Configurations

Enable authorization by JWT token for requests coming from OnlyOffice document server.

From Document server side, change the server configuration of services.CoAuthoring.token.enable.request.outbox to true and define the JWT secret key in services.CoAuthoring.secret.outbox.string.

From linshare-editor-onlyoffice side, use the following configuration, note that both services must share a same secret

{
  "documentServer": {
      "signature": {
        "request": {
          "incoming": {
            "enable": "true",
            "algorithm": "HS256",
            "secret": "secret",
            "authorizationHeader": "authorization",
            "authorizationHeaderPrefix": "Bearer "
          }
        }
      }
    }
  }
}

About

Backend part for LinShare editor tool using OnlyOffice

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.1%
  • Shell 1.9%