mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
f3ccafee94
* [CE/SP] Hotfix 5.0.3 * [CE/SP] Apply hotfix changes to init script There's some divergences in the current state of 910_initiate_doc_version_recovery in server-ce/init_scripts and 5.0.2 hotfix. With this change we ensure the same content in server-ce/init_scripts and the current hotfix * Updated patch for recover_doc_versions.js GitOrigin-RevId: 175af6b3ac584575764cbd03a5105c6933618c28
51 lines
1.6 KiB
Bash
Executable file
51 lines
1.6 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
source /etc/container_environment.sh
|
|
source /etc/overleaf/env.sh
|
|
|
|
LOG_FILE=/var/lib/overleaf/data/history/doc-version-recovery.log
|
|
RESYNCS_NEEDED_FILE=/var/lib/overleaf/data/history/doc-version-recovery-resyncs-5.0.3.log
|
|
|
|
echo "Checking for doc version recovery. This can take a while if needed. Logs are in $LOG_FILE"
|
|
cd /overleaf/services/history-v1
|
|
LOG_LEVEL=info DOC_VERSION_RECOVERY_RESYNCS_NEEDED_FILE="$RESYNCS_NEEDED_FILE" node storage/scripts/recover_doc_versions.js 2>&1 | tee -a "$LOG_FILE"
|
|
|
|
function resyncAllProjectsInBackground() {
|
|
waitForService docstore 3016
|
|
waitForService document-updater 3003
|
|
waitForService filestore 3009
|
|
waitForService history-v1 3100
|
|
waitForService project-history 3054
|
|
waitForService web-api 4000
|
|
|
|
# Resync files that had their versions updated
|
|
while read -r project_id; do
|
|
echo "Resyncing project $project_id..."
|
|
curl -X POST --silent "http://127.0.0.1:3054/project/$project_id/resync?force=true"
|
|
done < "$RESYNCS_NEEDED_FILE"
|
|
|
|
# Resync files that have broken histories
|
|
/overleaf/bin/force-history-resyncs
|
|
|
|
echo "Finished resyncing history for all projects. Adding .done suffix to log file"
|
|
mv "$RESYNCS_NEEDED_FILE" "$RESYNCS_NEEDED_FILE.done"
|
|
}
|
|
|
|
function waitForService() {
|
|
local name=$1
|
|
local port=$2
|
|
while ! curl --fail --silent "http://127.0.0.1:$port/status"; do
|
|
echo "Waiting for $name service to start up"
|
|
sleep 10
|
|
done
|
|
}
|
|
|
|
if [ -f "$RESYNCS_NEEDED_FILE" ]; then
|
|
echo "Finished recovery of doc versions. Resyncing history for all projects in the background."
|
|
resyncAllProjectsInBackground &
|
|
else
|
|
echo "No recovery of doc versions needed."
|
|
fi
|
|
|