Use npm link to install ep_etherpad-lite. This places a package.json

file in the root directory that references ./src directory as the file
source for `ep_etherpad-lite`.

Remove --legacy-peer-deps and --no-save when invoking npm. There is no
need for them anymore, as we are bumping npm now to v8.

./src/package.json contains all dependencies of Etherpad core
(package name ep_etherpad-lite) as before. The root directory's
package.json file references ep_etherpad-lite and also contains
references to any installed plugins.

Remove npm from package.json as we depend on a recent version now; PATH is still updated as before, so in the future we may install a custom npm version again

lint package-lock: update exception for sqlite3

remove node_modules and package.json during installDeps.sh

update Dockerfile

adapt minify

windows build

Fixed installOnWindows.bat

remove node_modules from git

bump minimal node/npm version in src/bin/functions.sh

add changelog notes

update installdeps

fix dockerfile

docker: test npm prefix set to the etherpad directory

workflow: upgrade-from-latest-release needs to be adapted until next release is out

Revert "docker: test npm prefix set to the etherpad directory"

This reverts commit b856a2488c9dbfb2acf35309cd1ee83016b631ad.

use npm link --bin-links=false to prevent it from copying bin files

temp fix for scripts as they are not installed to bin directory anymore

adjust bin paths in Dockerfile

Dockerfile

add hint for npm link, dockerfile

update dockerfile

Revert "Fixed installOnWindows.bat"

This reverts commit 70d0716bbedc4c0c1043155fcc5d157f01775c61.

try installOnWindows; still TODO: no difference between production and development; no warning like in installDeps.sh before update - it just removes package* and node_modules so admins must be aware of the plugins they want to reinstall later

update installOnWindows.bat

update package-lock.json

Dockerfile

Dockerfile

add file: scheme for lint check - needed as long as we have the plugin compatibility symlinks in ./src/node_modules

fix installOnWindows

upgrade-from-latest-release workflow: adapt cypress installation

src/package.json: test-container fix path to _mocha; maybe revert this in case we enable bin-links again

src/package.json: add test-on-windows script

another try with test-on-windows, without using bin-links

use bin-links on windows

Revert "use bin-links on windows"

This reverts commit f50ec2a9fabe3098d48e8f412b73c01edbe2140e.

invoke mocha binary on windows

run npm i once on windows, to make bin files available - why?

remove supertest on windows production builds

add symlink for mocha

debug

Revert "debug"

This reverts commit 8916a0515ca2897c57ca65fef49fd0b3610d2989.

Revert "add symlink for mocha"

This reverts commit 3c60bef77d2a120d24fce14421fe638598cd849d.

windows workflow: adapt cypress path

frontend admin tests
This commit is contained in:
webzwo0i 2023-07-05 20:48:58 +02:00 committed by SamTV12345
parent 83246cd070
commit 1f9b927d47
24 changed files with 24172 additions and 2170 deletions

View file

@ -38,7 +38,7 @@ jobs:
sudo apt update sudo apt update
sudo apt install -y --no-install-recommends libreoffice libreoffice-pdfimport sudo apt install -y --no-install-recommends libreoffice libreoffice-pdfimport
- -
name: Install all dependencies and symlink for ep_etherpad-lite name: Install the ep_etherpad-lite package from ./src
run: src/bin/installDeps.sh run: src/bin/installDeps.sh
- -
name: Run the backend tests name: Run the backend tests
@ -74,12 +74,13 @@ jobs:
sudo add-apt-repository -y ppa:libreoffice/ppa sudo add-apt-repository -y ppa:libreoffice/ppa
sudo apt update sudo apt update
sudo apt install -y --no-install-recommends libreoffice libreoffice-pdfimport sudo apt install -y --no-install-recommends libreoffice libreoffice-pdfimport
-
name: Install the ep_etherpad-lite package from ./src
run: src/bin/installDeps.sh
- -
name: Install Etherpad plugins name: Install Etherpad plugins
# The --legacy-peer-deps flag is required to work around a bug in npm v7:
# https://github.com/npm/cli/issues/2199
run: > run: >
npm install --no-save --legacy-peer-deps npm install
ep_align ep_align
ep_author_hover ep_author_hover
ep_cursortrace ep_cursortrace
@ -93,18 +94,6 @@ jobs:
ep_spellcheck ep_spellcheck
ep_subscript_and_superscript ep_subscript_and_superscript
ep_table_of_contents ep_table_of_contents
# Etherpad core dependencies must be installed after installing the
# plugin's dependencies, otherwise npm will try to hoist common
# dependencies by removing them from src/node_modules and installing them
# in the top-level node_modules. As of v6.14.10, npm's hoist logic appears
# to be buggy, because it sometimes removes dependencies from
# src/node_modules but fails to add them to the top-level node_modules.
# Even if npm correctly hoists the dependencies, the hoisting seems to
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
# rules.
-
name: Install all dependencies and symlink for ep_etherpad-lite
run: src/bin/installDeps.sh
- -
name: Run the backend tests name: Run the backend tests
run: cd src && npm test run: cd src && npm test
@ -130,8 +119,11 @@ jobs:
src/package-lock.json src/package-lock.json
src/bin/doc/package-lock.json src/bin/doc/package-lock.json
- -
name: Install all dependencies and symlink for ep_etherpad-lite name: Install the ep_etherpad-lite package from ./src
run: src/bin/installOnWindows.bat run: src/bin/installOnWindows.bat
-
name: Run npm i once to make bin files available - why is this needed at all?
run: npm i
- -
name: Fix up the settings.json name: Fix up the settings.json
run: | run: |
@ -139,7 +131,7 @@ jobs:
powershell -Command "(gc settings.json.holder) -replace '\"points\": 10', '\"points\": 1000' | Out-File -encoding ASCII settings.json" powershell -Command "(gc settings.json.holder) -replace '\"points\": 10', '\"points\": 1000' | Out-File -encoding ASCII settings.json"
- -
name: Run the backend tests name: Run the backend tests
run: cd src && npm test run: cd src && npm run test-on-windows
withpluginsWindows: withpluginsWindows:
# run on pushes to any branch # run on pushes to any branch
@ -162,12 +154,16 @@ jobs:
cache-dependency-path: | cache-dependency-path: |
src/package-lock.json src/package-lock.json
src/bin/doc/package-lock.json src/bin/doc/package-lock.json
-
name: Install the ep_etherpad-lite package from ./src
run: src/bin/installOnWindows.bat
-
name: Run npm i once to make bin files available - why is this needed at all?
run: npm i
- -
name: Install Etherpad plugins name: Install Etherpad plugins
# The --legacy-peer-deps flag is required to work around a bug in npm
# v7: https://github.com/npm/cli/issues/2199
run: > run: >
npm install --no-save --legacy-peer-deps npm install
ep_align ep_align
ep_author_hover ep_author_hover
ep_cursortrace ep_cursortrace
@ -181,18 +177,6 @@ jobs:
ep_spellcheck ep_spellcheck
ep_subscript_and_superscript ep_subscript_and_superscript
ep_table_of_contents ep_table_of_contents
# Etherpad core dependencies must be installed after installing the
# plugin's dependencies, otherwise npm will try to hoist common
# dependencies by removing them from src/node_modules and installing them
# in the top-level node_modules. As of v6.14.10, npm's hoist logic appears
# to be buggy, because it sometimes removes dependencies from
# src/node_modules but fails to add them to the top-level node_modules.
# Even if npm correctly hoists the dependencies, the hoisting seems to
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
# rules.
-
name: Install all dependencies and symlink for ep_etherpad-lite
run: src/bin/installOnWindows.bat
- -
name: Fix up the settings.json name: Fix up the settings.json
run: | run: |
@ -200,4 +184,4 @@ jobs:
powershell -Command "(gc settings.json.holder) -replace '\"points\": 10', '\"points\": 1000' | Out-File -encoding ASCII settings.json" powershell -Command "(gc settings.json.holder) -replace '\"points\": 10', '\"points\": 1000' | Out-File -encoding ASCII settings.json"
- -
name: Run the backend tests name: Run the backend tests
run: cd src && npm test run: cd src && npm run test-on-windows

View file

@ -37,23 +37,11 @@ jobs:
src/package-lock.json src/package-lock.json
src/bin/doc/package-lock.json src/bin/doc/package-lock.json
- -
name: Install etherpad plugins name: Install the ep_etherpad-lite package from ./src
# We intentionally install an old ep_align version to test upgrades to
# the minor version number. The --legacy-peer-deps flag is required to
# work around a bug in npm v7: https://github.com/npm/cli/issues/2199
run: npm install --no-save --legacy-peer-deps ep_align@0.2.27
# Etherpad core dependencies must be installed after installing the
# plugin's dependencies, otherwise npm will try to hoist common
# dependencies by removing them from src/node_modules and installing them
# in the top-level node_modules. As of v6.14.10, npm's hoist logic appears
# to be buggy, because it sometimes removes dependencies from
# src/node_modules but fails to add them to the top-level node_modules.
# Even if npm correctly hoists the dependencies, the hoisting seems to
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
# rules.
-
name: Install all dependencies and symlink for ep_etherpad-lite
run: src/bin/installDeps.sh run: src/bin/installDeps.sh
-
name: Install etherpad plugins
run: npm install ep_align@0.2.27
- -
name: Install etherpad plugins name: Install etherpad plugins
run: rm -Rf node_modules/ep_align/static/tests/* run: rm -Rf node_modules/ep_align/static/tests/*

View file

@ -31,7 +31,7 @@ jobs:
src/package-lock.json src/package-lock.json
src/bin/doc/package-lock.json src/bin/doc/package-lock.json
- -
name: Install all dependencies and symlink for ep_etherpad-lite name: Install the ep_etherpad-lite package from ./src
run: src/bin/installDeps.sh run: src/bin/installDeps.sh
- -
name: export GIT_HASH to env name: export GIT_HASH to env
@ -85,12 +85,13 @@ jobs:
cache-dependency-path: | cache-dependency-path: |
src/package-lock.json src/package-lock.json
src/bin/doc/package-lock.json src/bin/doc/package-lock.json
-
name: Install the ep_etherpad-lite package from ./src
run: src/bin/installDeps.sh
- -
name: Install Etherpad plugins name: Install Etherpad plugins
# The --legacy-peer-deps flag is required to work around a bug in npm v7:
# https://github.com/npm/cli/issues/2199
run: > run: >
npm install --no-save --legacy-peer-deps npm install
ep_align ep_align
ep_author_hover ep_author_hover
ep_cursortrace ep_cursortrace
@ -105,18 +106,6 @@ jobs:
ep_spellcheck ep_spellcheck
ep_subscript_and_superscript ep_subscript_and_superscript
ep_table_of_contents ep_table_of_contents
# Etherpad core dependencies must be installed after installing the
# plugin's dependencies, otherwise npm will try to hoist common
# dependencies by removing them from src/node_modules and installing them
# in the top-level node_modules. As of v6.20.10, npm's hoist logic appears
# to be buggy, because it sometimes removes dependencies from
# src/node_modules but fails to add them to the top-level node_modules.
# Even if npm correctly hoists the dependencies, the hoisting seems to
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
# rules.
-
name: Install all dependencies and symlink for ep_etherpad-lite
run: src/bin/installDeps.sh
- -
name: export GIT_HASH to env name: export GIT_HASH to env
id: environment id: environment

View file

@ -38,4 +38,6 @@ jobs:
--allowed-hosts npm --allowed-hosts npm
--allowed-schemes https: --allowed-schemes https:
--allowed-schemes github: --allowed-schemes github:
--allowed-urls github:mapbox/node-sqlite3#593c9d498be2510d286349134537e3bf89401c4a --allowed-schemes git+ssh:
--allowed-schemes file:
--allowed-urls git+ssh://git@github.com/mapbox/node-sqlite3.git#593c9d498be2510d286349134537e3bf89401c4a

View file

@ -28,7 +28,7 @@ jobs:
src/package-lock.json src/package-lock.json
src/bin/doc/package-lock.json src/bin/doc/package-lock.json
- -
name: Install all dependencies and symlink for ep_etherpad-lite name: Install the ep_etherpad-lite package from ./src
run: src/bin/installDeps.sh run: src/bin/installDeps.sh
- -
name: Install etherpad-load-test name: Install etherpad-load-test
@ -57,15 +57,16 @@ jobs:
cache-dependency-path: | cache-dependency-path: |
src/package-lock.json src/package-lock.json
src/bin/doc/package-lock.json src/bin/doc/package-lock.json
-
name: Install the ep_etherpad-lite package from ./src
run: src/bin/installDeps.sh
- -
name: Install etherpad-load-test name: Install etherpad-load-test
run: sudo npm install -g etherpad-load-test run: sudo npm install -g etherpad-load-test
- -
name: Install etherpad plugins name: Install etherpad plugins
# The --legacy-peer-deps flag is required to work around a bug in npm v7:
# https://github.com/npm/cli/issues/2199
run: > run: >
npm install --no-save --legacy-peer-deps npm install
ep_align ep_align
ep_author_hover ep_author_hover
ep_cursortrace ep_cursortrace
@ -78,18 +79,6 @@ jobs:
ep_spellcheck ep_spellcheck
ep_subscript_and_superscript ep_subscript_and_superscript
ep_table_of_contents ep_table_of_contents
# Etherpad core dependencies must be installed after installing the
# plugin's dependencies, otherwise npm will try to hoist common
# dependencies by removing them from src/node_modules and installing them
# in the top-level node_modules. As of v6.14.10, npm's hoist logic appears
# to be buggy, because it sometimes removes dependencies from
# src/node_modules but fails to add them to the top-level node_modules.
# Even if npm correctly hoists the dependencies, the hoisting seems to
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
# rules.
-
name: Install all dependencies and symlink for ep_etherpad-lite
run: src/bin/installDeps.sh
- -
name: Run load test name: Run load test
run: src/tests/frontend/travis/runnerLoadTest.sh 25 50 run: src/tests/frontend/travis/runnerLoadTest.sh 25 50
@ -115,7 +104,7 @@ jobs:
src/package-lock.json src/package-lock.json
src/bin/doc/package-lock.json src/bin/doc/package-lock.json
- -
name: Install all dependencies and symlink for ep_etherpad-lite name: Install the ep_etherpad-lite package from ./src
run: src/bin/installDeps.sh run: src/bin/installDeps.sh
- -
name: Install etherpad-load-test name: Install etherpad-load-test

View file

@ -33,12 +33,12 @@ jobs:
cache-dependency-path: | cache-dependency-path: |
src/package-lock.json src/package-lock.json
src/bin/doc/package-lock.json src/bin/doc/package-lock.json
# FIXME after 1.9.2
# After 1.9.2 is released, we need to remove '--legacy-peer-deps --no-save'
- -
name: Install Etherpad plugins name: Install Etherpad plugins
# The --legacy-peer-deps flag is required to work around a bug in npm
# v7: https://github.com/npm/cli/issues/2199
run: > run: >
npm install --no-save --legacy-peer-deps npm install --legacy-peer-deps --no-save
ep_align ep_align
ep_author_hover ep_author_hover
ep_cursortrace ep_cursortrace
@ -52,15 +52,6 @@ jobs:
ep_spellcheck ep_spellcheck
ep_subscript_and_superscript ep_subscript_and_superscript
ep_table_of_contents ep_table_of_contents
# Etherpad core dependencies must be installed after installing the
# plugin's dependencies, otherwise npm will try to hoist common
# dependencies by removing them from src/node_modules and installing them
# in the top-level node_modules. As of v6.14.10, npm's hoist logic appears
# to be buggy, because it sometimes removes dependencies from
# src/node_modules but fails to add them to the top-level node_modules.
# Even if npm correctly hoists the dependencies, the hoisting seems to
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
# rules.
- -
name: Install all dependencies and symlink for ep_etherpad-lite name: Install all dependencies and symlink for ep_etherpad-lite
run: src/bin/installDeps.sh run: src/bin/installDeps.sh
@ -83,17 +74,37 @@ jobs:
# commit that merges the PR's source branch to its destination branch. # commit that merges the PR's source branch to its destination branch.
run: git checkout "${GITHUB_SHA}" run: git checkout "${GITHUB_SHA}"
- -
name: Install all dependencies and symlink for ep_etherpad-lite name: Temporary remove ./node_modules; Remove this after 1.9.2 release
run: rm -rf ./node_modules
-
name: Install the ep_etherpad-lite package from ./src
run: src/bin/installDeps.sh run: src/bin/installDeps.sh
-
name: Install Etherpad plugins again; Remove this after 1.9.2 release
run: >
npm install
ep_align
ep_author_hover
ep_cursortrace
ep_font_size
ep_hash_auth
ep_headings2
ep_image_upload
ep_markdown
ep_readonly_guest
ep_set_title_on_pad
ep_spellcheck
ep_subscript_and_superscript
ep_table_of_contents
- -
name: Run the backend tests name: Run the backend tests
run: cd src && npm test run: cd src && npm test
- -
name: Install Cypress name: Install Cypress
run: cd src && npm install cypress --legacy-peer-deps run: npm install cypress
- -
name: Run Etherpad & Test Frontend name: Run Etherpad & Test Frontend
run: | run: |
node src/node/server.js & node src/node/server.js &
curl --connect-timeout 10 --max-time 20 --retry 5 --retry-delay 10 --retry-max-time 60 --retry-connrefused http://127.0.0.1:9001/p/test curl --connect-timeout 10 --max-time 20 --retry 5 --retry-delay 10 --retry-max-time 60 --retry-connrefused http://127.0.0.1:9001/p/test
./src/node_modules/cypress/bin/cypress run --config-file src/tests/frontend/cypress/cypress.config.js ./node_modules/cypress/bin/cypress run --config-file src/tests/frontend/cypress/cypress.config.js

View file

@ -34,13 +34,16 @@ jobs:
src/package-lock.json src/package-lock.json
src/bin/doc/package-lock.json src/bin/doc/package-lock.json
- -
name: Install all dependencies and symlink for ep_etherpad-lite name: Install the ep_etherpad-lite package from ./src
shell: msys2 {0} shell: msys2 {0}
run: src/bin/installDeps.sh run: src/bin/installDeps.sh
-
name: Run npm i once to make bin files available - why is this needed at all?
run: npm i
- -
name: Run the backend tests name: Run the backend tests
shell: msys2 {0} shell: msys2 {0}
run: cd src && npm test run: cd src && npm run test-on-windows
- -
name: Build the .zip name: Build the .zip
shell: msys2 {0} shell: msys2 {0}
@ -115,14 +118,14 @@ jobs:
etherpad/src/bin/doc/package-lock.json etherpad/src/bin/doc/package-lock.json
- -
name: Install Cypress name: Install Cypress
run: cd etherpad && cd src && npm install cypress --legacy-peer-deps run: cd etherpad && npm install cypress
- -
name: Run Etherpad name: Run Etherpad
run: | run: |
cd etherpad cd etherpad
node node_modules\ep_etherpad-lite\node\server.js & node node_modules\ep_etherpad-lite\node\server.js &
curl --connect-timeout 10 --max-time 20 --retry 5 --retry-delay 10 --retry-max-time 60 --retry-connrefused http://127.0.0.1:9001/p/test curl --connect-timeout 10 --max-time 20 --retry 5 --retry-delay 10 --retry-max-time 60 --retry-connrefused http://127.0.0.1:9001/p/test
src\node_modules\cypress\bin\cypress run --config-file src\tests\frontendcypress\cypress.config.js node_modules\cypress\bin\cypress run --config-file src\tests\frontendcypress\cypress.config.js
# On release, upload windows zip to GitHub release tab # On release, upload windows zip to GitHub release tab
- -
name: Rename to etherpad-lite-win.zip name: Rename to etherpad-lite-win.zip

View file

@ -28,10 +28,8 @@ _install_libreoffice: &install_libreoffice >-
sudo apt-get update && sudo apt-get update &&
sudo apt-get -y install libreoffice libreoffice-pdfimport sudo apt-get -y install libreoffice libreoffice-pdfimport
# The --legacy-peer-deps flag is required to work around a bug in npm v7:
# https://github.com/npm/cli/issues/2199
_install_plugins: &install_plugins >- _install_plugins: &install_plugins >-
npm install --no-save --legacy-peer-deps npm install
ep_align ep_align
ep_author_hover ep_author_hover
ep_cursortrace ep_cursortrace
@ -64,12 +62,11 @@ jobs:
- *install_libreoffice - *install_libreoffice
- *set_loglevel_warn - *set_loglevel_warn
- "src/bin/installDeps.sh" - "src/bin/installDeps.sh"
- "cd src && npm install && cd -"
script: script:
- "cd src && npm test" - "cd src && npm test"
- name: "Test the Dockerfile" - name: "Test the Dockerfile"
install: install:
- "cd src && npm install && cd -" - "src/bin/installDeps.sh"
script: script:
- "docker build -t etherpad:test ." - "docker build -t etherpad:test ."
- "docker run -d -p 9001:9001 etherpad:test && sleep 3" - "docker run -d -p 9001:9001 etherpad:test && sleep 3"
@ -78,7 +75,6 @@ jobs:
install: install:
- *set_loglevel_warn - *set_loglevel_warn
- "src/bin/installDeps.sh" - "src/bin/installDeps.sh"
- "cd src && npm install && cd -"
- "npm install -g etherpad-load-test" - "npm install -g etherpad-load-test"
script: script:
- "src/tests/frontend/travis/runnerLoadTest.sh" - "src/tests/frontend/travis/runnerLoadTest.sh"
@ -112,7 +108,7 @@ jobs:
- "cd src && npm test" - "cd src && npm test"
- name: "Test the Dockerfile" - name: "Test the Dockerfile"
install: install:
- "cd src && npm install && cd -" - "src/bin/installDeps.sh"
script: script:
- "docker build -t etherpad:test ." - "docker build -t etherpad:test ."
- "docker run -d -p 9001:9001 etherpad:test && sleep 3" - "docker run -d -p 9001:9001 etherpad:test && sleep 3"

View file

@ -1,3 +1,35 @@
# Next release
#### Note for admins
Etherpad does no longer store it's dependencies in ./src/node_modules by default. Also, Etherpad now
stores installed plugins in a package.json file in the root directory and no longer requires quirks
like `--legacy-peer-deps` or `--no-save` when invoking npm during plugin installation.
When you're updating, it's best to use the `./src/bin/installDeps.sh` script. It will `npm link` the
src directory, using the package.json file in ./src. This will create the well-known symlink ep_etherpad-lite
in ./node_modules, that we've been using for years. However, this will also add a dependency in ./package.json.
`./src/bin/installDeps.sh` will fail, if you have no ./package.json or ./package-lock.json and your
./node_modules directory is not empty, as this is an indicator of installed plugins. You need to remove
./node_modules and install all your plugins in the next step.
`./src/bin/installDeps.sh` will remove any existing directories in `./src/node_modules`.
After running `./src/bin/installDeps.sh`, install your plugins with `npm i ep_plugin1 ep_plugin2...` or via
`/admin/plugins`.
#### Note for plugin authors
You can no longer depend on core's dependencies via `require('ep_etherpad-lite/node_modules/$dep')`.
Please run `src/bin/checkPlugins.sh` or manually change to `require('$dep')`. We don't recommend
that you rely on Etherpad to include specific dependencies in the future. So it's best if you add
the dependency in your package.json.
For convenience we have added symlinks in ./src/node_modules for the following dependencies:
async, cheerio, express, formidable, log4js and supertest.
Please note that those symlinks will be removed in a future version, so we strongly recommend that
you adapt your require statements.
# 1.9.5 # 1.9.5
### Compability changes ### Compability changes

View file

@ -91,17 +91,12 @@ WORKDIR "${EP_DIR}"
COPY --chown=etherpad:etherpad ./ ./ COPY --chown=etherpad:etherpad ./ ./
# Plugins must be installed before installing Etherpad's dependencies, otherwise RUN npm config set prefix "${EP_DIR}/.npm-packages"
# npm will try to hoist common dependencies by removing them from
# src/node_modules and installing them in the top-level node_modules. As of RUN ./src/bin/installDeps.sh
# v6.14.10, npm's hoist logic appears to be buggy, because it sometimes removes
# dependencies from src/node_modules but fails to add them to the top-level
# node_modules. Even if npm correctly hoists the dependencies, the hoisting
# seems to confuse tools such as `npm outdated`, `npm update`, and some ESLint
# rules.
RUN { [ -z "${ETHERPAD_PLUGINS}" ] || \ RUN { [ -z "${ETHERPAD_PLUGINS}" ] || \
npm install --no-save --legacy-peer-deps ${ETHERPAD_PLUGINS}; } && \ npm install ${ETHERPAD_PLUGINS}; } && \
src/bin/installDeps.sh && \
rm -rf ~/.npm rm -rf ~/.npm
# Copy the configuration file. # Copy the configuration file.
@ -110,11 +105,9 @@ COPY --chown=etherpad:etherpad ${SETTINGS} "${EP_DIR}"/settings.json
# Fix group permissions # Fix group permissions
RUN chmod -R g=u . RUN chmod -R g=u .
USER root
RUN cd src && npm link
USER etherpad USER etherpad
HEALTHCHECK --interval=20s --timeout=3s CMD ["etherpad-healthcheck"] HEALTHCHECK --interval=20s --timeout=3s CMD ["./src/bin/etherpad-healthcheck"]
EXPOSE 9001 EXPOSE 9001
CMD ["etherpad"] CMD ["./src/node/server.js"]

View file

@ -139,9 +139,7 @@ Alternatively, you can install plugins from the command line:
```sh ```sh
cd /path/to/etherpad-lite cd /path/to/etherpad-lite
# The `--no-save` and `--legacy-peer-deps` arguments are necessary to work npm install ep_${plugin_name}
# around npm quirks.
npm install --no-save --legacy-peer-deps ep_${plugin_name}
``` ```
Also see [the plugin wiki Also see [the plugin wiki
@ -153,7 +151,7 @@ Run the following command in your Etherpad folder to get all of the features
visible in the above demo gif: visible in the above demo gif:
```sh ```sh
npm install --no-save --legacy-peer-deps \ npm install \
ep_align \ ep_align \
ep_comments_page \ ep_comments_page \
ep_embedded_hyperlinks2 \ ep_embedded_hyperlinks2 \

View file

@ -7,8 +7,7 @@ execute its own functionality based on these events.
Publicly available plugins can be found in the npm registry (see Publicly available plugins can be found in the npm registry (see
<https://npmjs.org>). Etherpad's naming convention for plugins is to prefix your <https://npmjs.org>). Etherpad's naming convention for plugins is to prefix your
plugins with `ep_`. So, e.g. it's `ep_flubberworms`. Thus you can install plugins with `ep_`. So, e.g. it's `ep_flubberworms`. Thus you can install
plugins from npm, using `npm install --no-save --legacy-peer-deps plugins from npm, using `npm install ep_flubberworm` in Etherpad's root directory.
ep_flubberworm` in Etherpad's root directory.
You can also browse to `http://yourEtherpadInstan.ce/admin/plugins`, which will You can also browse to `http://yourEtherpadInstan.ce/admin/plugins`, which will
list all installed plugins and those available on npm. It even provides list all installed plugins and those available on npm. It even provides

1
node_modules/ep_etherpad-lite generated vendored
View file

@ -1 +0,0 @@
../src

View file

@ -48,6 +48,9 @@ try ./src/bin/installDeps.sh
log "copy the windows settings template..." log "copy the windows settings template..."
try cp settings.json.template settings.json try cp settings.json.template settings.json
log "Because this is a production build, we delete supertest"
try rm src/node_modules/supertest
log "resolve symbolic links..." log "resolve symbolic links..."
try cp -rL node_modules node_modules_resolved try cp -rL node_modules node_modules_resolved
try rm -rf node_modules try rm -rf node_modules

View file

@ -1,10 +1,10 @@
# minimum required node version # minimum required node version
REQUIRED_NODE_MAJOR=12 REQUIRED_NODE_MAJOR=16
REQUIRED_NODE_MINOR=13 REQUIRED_NODE_MINOR=0
# minimum required npm version # minimum required npm version
REQUIRED_NPM_MAJOR=5 REQUIRED_NPM_MAJOR=8
REQUIRED_NPM_MINOR=5 REQUIRED_NPM_MINOR=19
pecho() { printf %s\\n "$*"; } pecho() { printf %s\\n "$*"; }
log() { pecho "$@"; } log() { pecho "$@"; }

View file

@ -37,23 +37,64 @@ if [ ! -f "$settings" ]; then
cp settings.json.template "$settings" || exit 1 cp settings.json.template "$settings" || exit 1
fi fi
log "Removing src/node_modules."
rm -rf ./src/node_modules || true
# try to determine if plugins were installed using --no-save
ROOT_PLUGINS_EXIST=1
for file in node_modules/*
do
if [ ! -e "$file" ]; then break; fi
if [ -L "$file" ] && [ "$file" = "node_modules/ep_etherpad-lite" ]; then break; fi
if expr "$file" : "node_modules/ep_*" > /dev/null; then
ROOT_PLUGINS_EXIST=0
fi
done
PACKAGE_EXISTS=1
PACKAGELOCK_EXISTS=1
if test -f ./package.json; then PACKAGE_EXISTS=0;fi
if test -f ./package-lock.json; then PACKAGELOCK_EXISTS=0;fi
if [ "$PACKAGE_EXISTS" = "1" ] || [ "$PACKAGELOCK_EXISTS" = "1" ]; then
if [ "$ROOT_PLUGINS_EXIST" = "0" ]; then
log "You have plugins in ./node_modules but don't have a package.json or package-lock.json file."
log "Please manually remove your ./node_modules directory, run this script again and install any plugins with npm i ep_plugin1 ep_plugin2 afterwards"
exit 1
fi
fi
log "Linking src as new package ep_etherpad-lite."
exit_code=0
(cd ./src && npm link --bin-links=false) || exit_code=$?
if [ "$exit_code" != 0 ]; then
log "npm link failed. If there was a permission error, please set a prefix for npm."
log "The prefix can be set e.g. with npm config set prefix $HOME/.npm-packages"
log "This will create a symlink in $HOME/.npm-packages/lib/node_modules that points to this directory."
exit 1
fi
log "Installing dependencies..." log "Installing dependencies..."
(mkdir -p node_modules && if [ "$NODE_ENV" = "production" ]; then
cd node_modules &&
{ [ -d ep_etherpad-lite ] || ln -sf ../src ep_etherpad-lite; } &&
cd ep_etherpad-lite)
cd src
if [ -z "${ETHERPAD_PRODUCTION}" ]; then
log "Installing dev dependencies"
npm ci --no-optional --omit=optional --include=dev --lockfile-version 1 || exit 1
else
log "Installing production dependencies" log "Installing production dependencies"
npm ci --no-optional --omit=optional --omit=dev --lockfile-version 1 --production || exit 1 npm link ep_etherpad-lite --omit=optional --omit=dev --save --package-lock=true --bin-links=false || exit 1
else
log "Installing dev dependencies"
npm link ep_etherpad-lite --omit=optional --save --package-lock=true --bin-links=false || exit 1
fi fi
log "Adding symlinks for plugin backwards compatibility"
mkdir src/node_modules -p
ln -s ../../node_modules/async src/node_modules/async
ln -s ../../node_modules/cheerio src/node_modules/cheerio
ln -s ../../node_modules/express src/node_modules/express
ln -s ../../node_modules/formidable src/node_modules/formidable
ln -s ../../node_modules/log4js src/node_modules/log4js
ln -s ../../node_modules/supertest src/node_modules/supertest
# Remove all minified data to force node creating it new # Remove all minified data to force node creating it new
log "Clearing minified cache..." log "Clearing minified cache..."
rm -f var/minified* rm -f var/minified*

View file

@ -9,19 +9,35 @@ cmd /C node -e "" || ( echo "Please install node.js ( https://nodejs.org )" && e
echo _ echo _
echo Ensure that all dependencies are up to date... If this is the first time you have run Etherpad please be patient. echo Ensure that all dependencies are up to date... If this is the first time you have run Etherpad please be patient.
mkdir node_modules echo Deleting old node_modules and src/node_modules
cd /D node_modules del /q .\node_modules
mklink /D "ep_etherpad-lite" "..\src" del /q .\src\node_modules
echo Deleting old package.json and package-lock.json
del /q .\package.json
del /q .\package-lock.json
cd /D "ep_etherpad-lite" cd /D src
cmd /C npm ci --legacy-peer-deps || exit /B 1 cmd /C npm link --bin-links=false || exit /B 1
cd /D "%~dp0\..\.." cd ..
cmd /C npm link ep_etherpad-lite --omit=optional --omit=dev --save --package-lock=true --bin-links=false || exit /B 1
echo _ echo _
echo Clearing cache... echo Clearing cache...
del /S var\minified* del /S var\minified*
echo Adding symlinks for plugin backwards compatibility
mkdir src\node_modules
cd /D src\node_modules
mklink /D "async" "..\..\node_modules\async"
mklink /D "cheerio" "..\..\node_modules\cheerio"
mklink /D "express" "..\..\node_modules\express"
mklink /D "formidable" "..\..\node_modules\formidable"
mklink /D "log4js" "..\..\node_modules\log4js"
mklink /D "supertest" "..\..\node_modules\supertest"
cd ..\..
echo _ echo _
echo Setting up settings.json... echo Setting up settings.json...
IF NOT EXIST settings.json ( IF NOT EXIST settings.json (

View file

@ -356,18 +356,17 @@ const logger = log4js.getLogger('checkPlugin');
logger.warn('Test files not found, please create tests. https://github.com/ether/etherpad-lite/wiki/Creating-a-plugin#writing-and-running-front-end-tests-for-your-plugin'); logger.warn('Test files not found, please create tests. https://github.com/ether/etherpad-lite/wiki/Creating-a-plugin#writing-and-running-front-end-tests-for-your-plugin');
} }
// Install dependencies so we can run ESLint. This should also create or update package-lock.json
// if autoFix is enabled.
const npmInstall = `npm install${autoFix ? '' : ' --no-package-lock'}`;
execSync(npmInstall, {stdio: 'inherit'});
// Create the ep_etherpad-lite symlink if necessary. This must be done after running `npm install`
// because that command nukes the symlink.
try { try {
const d = await fsp.realpath(path.join(pluginPath, 'node_modules/ep_etherpad-lite')); const d = await fsp.realpath(path.join(pluginPath, 'node_modules/ep_etherpad-lite'));
assert.equal(d, epSrcDir); assert.equal(d, epSrcDir);
} catch (err) { } catch (err) {
execSync(`${npmInstall} --no-save ep_etherpad-lite@file:${epSrcDir}`, {stdio: 'inherit'}); execSync('./src/bin/installDeps.sh', {stdio: 'inherit'});
} }
// Install dependencies so we can run ESLint. This should also create or update package-lock.json
// if autoFix is enabled.
const npmInstall = `npm install${autoFix ? '' : ' --no-package-lock'}`;
execSync(npmInstall, {stdio: 'inherit'});
// linting begins // linting begins
try { try {
logger.info('Linting...'); logger.info('Linting...');

View file

@ -11,7 +11,7 @@ TODO: Describe the plugin.
From the Etherpad working directory, run: From the Etherpad working directory, run:
```shell ```shell
npm install --no-save --legacy-peer-deps [plugin_name] npm install [plugin_name]
``` ```
Or, install from Etherpad's `/admin/plugins` page. Or, install from Etherpad's `/admin/plugins` page.

View file

@ -8,4 +8,4 @@ OUTDATED=$(npm outdated --depth=0 | awk '{print $1}' | grep '^ep_') || {
} }
set -- ${OUTDATED} set -- ${OUTDATED}
echo "Updating plugins: $*" echo "Updating plugins: $*"
exec npm install --no-save "$@" exec npm install "$@"

View file

@ -163,7 +163,7 @@ const minify = async (req, res) => {
// Go straight into node_modules // Go straight into node_modules
// Avoid `require.resolve()`, since 'mustache' and 'mustache/index.js' // Avoid `require.resolve()`, since 'mustache' and 'mustache/index.js'
// would end up resolving to logically distinct resources. // would end up resolving to logically distinct resources.
filename = path.join('../node_modules/', library, libraryPath); filename = path.join('../../node_modules/', library, libraryPath);
} }
} }
const [, testf] = /^plugins\/ep_etherpad-lite\/(tests\/frontend\/.*)/.exec(filename) || []; const [, testf] = /^plugins\/ep_etherpad-lite\/(tests\/frontend\/.*)/.exec(filename) || [];

25909
src/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -53,7 +53,6 @@
"log4js": "^6.9.1", "log4js": "^6.9.1",
"measured-core": "^2.0.0", "measured-core": "^2.0.0",
"mime-types": "^2.1.35", "mime-types": "^2.1.35",
"npm": "^6.14.18",
"openapi-backend": "^5.10.5", "openapi-backend": "^5.10.5",
"proxy-addr": "^2.0.7", "proxy-addr": "^2.0.7",
"rate-limiter-flexible": "^4.0.0", "rate-limiter-flexible": "^4.0.0",
@ -94,16 +93,18 @@
}, },
"engines": { "engines": {
"node": ">=18.18.2", "node": ">=18.18.2",
"npm": ">=6.14.0" "npm": ">=8.19.4"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/ether/etherpad-lite.git" "url": "https://github.com/ether/etherpad-lite.git"
}, },
"scripts": { "scripts": {
"lint": "eslint .", "lint": "../node_modules/eslint/bin/eslint.js .",
"test": "mocha --timeout 120000 --recursive tests/backend/specs ../node_modules/ep_*/static/tests/backend/specs", "test": "../node_modules/mocha/bin/_mocha --timeout 120000 --recursive tests/backend/specs ../node_modules/ep_*/static/tests/backend/specs",
"test-container": "mocha --timeout 5000 tests/container/specs/api" "test-on-windows": "mocha --timeout 120000 --recursive tests/backend/specs ../node_modules/ep_*/static/tests/backend/specs",
"test-container": "../node_modules/mocha/bin/_mocha --timeout 5000 tests/container/specs/api",
"dev": "bash ./bin/run.sh"
}, },
"version": "1.9.5", "version": "1.9.5",
"license": "Apache-2.0" "license": "Apache-2.0"

View file

@ -35,10 +35,7 @@ exports.uninstall = async (pluginName, cb = null) => {
cb = wrapTaskCb(cb); cb = wrapTaskCb(cb);
logger.info(`Uninstalling plugin ${pluginName}...`); logger.info(`Uninstalling plugin ${pluginName}...`);
try { try {
// The --no-save flag prevents npm from creating package.json or package-lock.json. await runCmd(['npm', 'uninstall', pluginName]);
// The --legacy-peer-deps flag is required to work around a bug in npm v7:
// https://github.com/npm/cli/issues/2199
await runCmd(['npm', 'uninstall', '--no-save', '--legacy-peer-deps', pluginName]);
} catch (err) { } catch (err) {
logger.error(`Failed to uninstall plugin ${pluginName}`); logger.error(`Failed to uninstall plugin ${pluginName}`);
cb(err || new Error(err)); cb(err || new Error(err));
@ -54,10 +51,7 @@ exports.install = async (pluginName, cb = null) => {
cb = wrapTaskCb(cb); cb = wrapTaskCb(cb);
logger.info(`Installing plugin ${pluginName}...`); logger.info(`Installing plugin ${pluginName}...`);
try { try {
// The --no-save flag prevents npm from creating package.json or package-lock.json. await runCmd(['npm', 'install', pluginName]);
// The --legacy-peer-deps flag is required to work around a bug in npm v7:
// https://github.com/npm/cli/issues/2199
await runCmd(['npm', 'install', '--no-save', '--legacy-peer-deps', pluginName]);
} catch (err) { } catch (err) {
logger.error(`Failed to install plugin ${pluginName}`); logger.error(`Failed to install plugin ${pluginName}`);
cb(err || new Error(err)); cb(err || new Error(err));