-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathexporter.sh
executable file
·158 lines (134 loc) · 5.33 KB
/
exporter.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#!/bin/sh
APITEST=$(curl --fail -s -X GET \
-H 'Content-Type: application/json' \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/member")
if [ ! "$APITEST" ]
then
echo "[Error] Set the SHORTCUT_API_TOKEN environment variable to a valid Shortcut API token, then run ./exporter.sh again."
exit 1
fi
export DATADIR=./data
mkdir -p "$DATADIR"
export FILE=""
f() {
# Specify output file for a given export,
# using a single variable to avoid drift
# between echo and curl statements.
FILE="$DATADIR/$1"
}
f "categories.json"
echo "Saving all Categories to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/categories" > "$FILE" 2>/dev/null
f "epics.json"
echo "Saving all Epics to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/epics" > "$FILE" 2>/dev/null
f "files.json"
echo "Saving all Files to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/files" > "$FILE" 2>/dev/null
f "iterations.json"
echo "Saving all Iterations to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/iterations" > "$FILE" 2>/dev/null
f "labels.json"
echo "Saving all Labels to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/labels" > "$FILE" 2>/dev/null
f "custom-fields.json"
echo "Saving all Custom Fields to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/custom-fields" > "$FILE" 2>/dev/null
f "linked-files.json"
echo "Saving all Linked Files to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/linked-files" > "$FILE" 2>/dev/null
f "members.json"
echo "Saving all Members to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/members" > "$FILE" 2>/dev/null
f "groups.json"
echo "Saving all Groups (of Members, a.k.a. Teams in the app) to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/groups" > "$FILE" 2>/dev/null
f "objectives.json"
echo "Saving all Objectives to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/objectives" > "$FILE" 2>/dev/null
f "projects.json"
echo "Saving all Projects to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/projects" > "$FILE" 2>/dev/null
f "repositories.json"
echo "Saving all Repositories to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/repositories" > "$FILE" 2>/dev/null
f "stories.features.json"
echo "Saving all Feature Stories to $FILE"
curl -X POST \
-H "Content-Type: application/json" -d "{ \"story_type\": \"feature\" }" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/stories/search" > "$FILE" 2>/dev/null
f "stories.bugs.json"
echo "Saving all Bug Stories to $FILE"
curl -X POST \
-H "Content-Type: application/json" -d "{ \"story_type\": \"bug\" }" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/stories/search" > "$FILE" 2>/dev/null
f "stories.chores.json"
echo "Saving all Chore Stories to $FILE"
curl -X POST \
-H "Content-Type: application/json" -d "{ \"story_type\": \"chore\" }" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/stories/search" > "$FILE" 2>/dev/null
f "entity-templates.json"
echo "Saving all Entity Templates to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/entity-templates" > "$FILE" 2>/dev/null
f "teams.json"
echo "Saving all Teams (not of members, see Groups export for that) to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/teams" > "$FILE" 2>/dev/null
f "workflows.json"
echo "Saving Story Workflows and their states to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/workflows" > "$FILE" 2>/dev/null
f "epic-workflow.json"
echo "Saving the Epic Workflow and its states to $FILE"
curl -X GET \
-H "Content-Type: application/json" \
-H "Shortcut-Token: $SHORTCUT_API_TOKEN" \
-L "https://api.app.shortcut.com/api/v3/epic-workflow" > "$FILE" 2>/dev/null
echo "Done!"