forked from mozilla-mobile/firefox-ios
-
Notifications
You must be signed in to change notification settings - Fork 4
/
iOSNimbusFeatureUtility.sh
85 lines (70 loc) · 2.05 KB
/
iOSNimbusFeatureUtility.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/bin/sh
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/. */
# General:
# This utility simplifies managing the `include` block of the
# nimbus.fml.yaml file. There are two main options:
# --add fileName : option to add a new feature. Argument should be camelCase
# Note: --add also runs --update
# --update : updates the `include` block of the FML file.
# Adds the files in the 'nimbus-features' directory in the
# `include` block of the FML
addFeatureFilesToNimbus() {
for filename in nimbus-features/*.yaml; do
echo " - $filename" >> $1
done
}
# Removes the files listed in the FML's `include` block
cleanupNimbusFile() {
grep -v "nimbus-features" $1 > temp
rm $1
mv temp $1
}
updateNimbusFML() {
NIMBUSFML=nimbus.fml.yaml
cleanupNimbusFile $NIMBUSFML
addFeatureFilesToNimbus $NIMBUSFML
}
# Takes a given feature name in camelCase and coverts it to kebab-case
configureFeatureName() {
echo $1 | sed -r 's/([a-z0-9])([A-Z])/\1-\2/g' | tr '[:upper:]' '[:lower:]'
}
# Prefills a newly created feature file with
addNewFeatureContent() {
KEBAB_FEATURE_NAME=$(configureFeatureName $2)
echo """# The configuration for the $2 feature
features:
$KEBAB_FEATURE_NAME:
description: >
Feature description
variables:
new-variable:
description: >
Variable description
type: Boolean
default: false
defaults:
- channel: beta
value:
new-variable: false
- channel: developer
value:
new-variable: false
objects:
enums:
""" > $1
}
if [ "$1" == "--add" ]; then
NEW_FILE=nimbus-features/$2.yaml
touch $NEW_FILE
addNewFeatureContent $NEW_FILE $2
updateNimbusFML
echo "Added new feature successfully"
fi
if [ "$1" == "--update" ]; then
updateNimbusFML
fi
if [ $# -eq 0 ]; then
echo "No arguments supplied. Please see the documentation in the script."
fi