Update OOjs to v2.2.0
[lhc/web/wiklou.git] / maintenance / resources / update-oojs.sh
1 #!/bin/bash -eu
2
3 # This script generates a commit that updates our copy of OOjs
4
5 if [ -n "${2:-}" ]
6 then
7 # Too many parameters
8 echo >&2 "Usage: $0 [<version>]"
9 exit 1
10 fi
11
12 REPO_DIR=$(cd "$(dirname $0)/../.."; pwd) # Root dir of the git repo working tree
13 TARGET_DIR="resources/lib/oojs" # Destination relative to the root of the repo
14 NPM_DIR=$(mktemp -d 2>/dev/null || mktemp -d -t 'update-oojs') # e.g. /tmp/update-oojs.rI0I5Vir
15
16 # Prepare working tree
17 cd "$REPO_DIR"
18 git reset -- $TARGET_DIR
19 git checkout -- $TARGET_DIR
20 git fetch origin
21 git checkout -B upstream-oojs origin/master
22
23 # Fetch upstream version
24 cd $NPM_DIR
25 if [ -n "${1:-}" ]
26 then
27 npm install "oojs@$1"
28 else
29 npm install oojs
30 fi
31
32 OOJS_VERSION=$(node -e 'console.log(require("./node_modules/oojs/package.json").version);')
33 if [ "$OOJS_VERSION" == "" ]
34 then
35 echo 'Could not find OOjs version'
36 exit 1
37 fi
38
39 # Copy file(s)
40 rsync --force ./node_modules/oojs/dist/oojs.jquery.js "$REPO_DIR/$TARGET_DIR"
41 rsync --force ./node_modules/oojs/dist/AUTHORS.txt "$REPO_DIR/$TARGET_DIR"
42 rsync --force ./node_modules/oojs/dist/LICENSE-MIT "$REPO_DIR/$TARGET_DIR"
43 rsync --force ./node_modules/oojs/dist/README.md "$REPO_DIR/$TARGET_DIR"
44
45 # Clean up temporary area
46 rm -rf "$NPM_DIR"
47
48 # Generate commit
49 cd $REPO_DIR
50
51 COMMITMSG=$(cat <<END
52 Update OOjs to v$OOJS_VERSION
53
54 Release notes:
55 https://gerrit.wikimedia.org/r/plugins/gitiles/oojs/core/+/v$OOJS_VERSION/History.md
56 END
57 )
58
59 # Stage deletion, modification and creation of files. Then commit.
60 git add --update $TARGET_DIR
61 git add $TARGET_DIR
62 git commit -m "$COMMITMSG"