-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMakefile
335 lines (267 loc) · 9.08 KB
/
Makefile
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
CAKEPHP_SOURCE_DIR=../cakephp
CHRONOS_SOURCE_DIR=../chronos
ELASTIC_SOURCE_DIR=../elastic-search
QUEUE_SOURCE_DIR=../queue
AUTHENTICATION_SOURCE_DIR=../authentication
AUTHORIZATION_SOURCE_DIR=../authorization
BUILD_DIR=./build/api
DEPLOY_DIR=./website
PHP=php
COMPOSER=$(PWD)/composer.phar
.PHONY: clean help
.PHONY: build-cakephp-3
.PHONY: build-cakephp-4
.PHONY: build-cakephp-5
.PHONY: build-chronos
.PHONY: build-elastic
.PHONY: build-queue
.PHONY: build-authentication
.PHONY: build-authorization
.PHONY: build-active-and-missing
.ALL: help
# Versions that can be built.
CAKEPHP3_VERSIONS = 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8 3.9 3.10
CAKEPHP4_VERSIONS = 4.0 4.1 4.2 4.3 4.4 4.5 4.6
CAKEPHP5_VERSIONS = 5.0 5.1 5.2
CHRONOS_VERSIONS = 1.x 2.x 3.x
ELASTIC_VERSIONS = 2.x 3.x 4.x
QUEUE_VERSIONS = 1.x 2.x
AUTHENTICATION_VERSIONS = 2.x 3.x
AUTHORIZATION_VERSIONS = 2.x 3.x
help:
@echo "CakePHP API Documentation generator"
@echo "-----------------------------------"
@echo ""
@echo "Tasks:"
@echo ""
@echo " clean - Clean the build output directory"
@echo ""
@echo " build-name-v - Build the version v documentation. The versions that can be"
@echo " built are:"
@echo " $(VERSIONS)"
@echo ""
@echo "Variables:"
@echo ""
@echo " CAKEPHP-SOURCE_DIR - Define where your cakephp clone is."
@echo " CHRONOS_SOURCE_DIR - Define where your chronos clone is."
@echo " ELASTIC_SOURCE_DIR - Define where your elastic-search clone is."
@echo " QUEUE_SOURCE_DIR - Define where your queue clone is."
@echo " AUTHENTICATION_SOURCE_DIR - Define where your authentication clone is."
@echo " AUTHORIZATION_SOURCE_DIR - Define where your authentication clone is."
@echo " QUEUE_SOURCE_DIR - Define where your queue clone is."
@echo " BUILD_DIR - The directory where the output should go. Default: $(BUILD_DIR)"
@echo " DEPLOY_DIR - The directory files shold be copied to in `deploy` Default: $(DEPLOY_DIR)"
@echo ""
@echo "NOTE: Source directories will have their checkout branch changed."
@echo " Make sure all working directories are clean."
clean:
rm -rf $(DEPLOY_DIR)
rm -rf $(BUILD_DIR)
# Make the deployment directory
$(DEPLOY_DIR):
mkdir -p $(DEPLOY_DIR)
deploy: $(DEPLOY_DIR)
for release in $$(ls $(BUILD_DIR)); do \
rm -rf $(DEPLOY_DIR)/$$release; \
mkdir -p $(DEPLOY_DIR)/$$release; \
mv $(BUILD_DIR)/$$release $(DEPLOY_DIR)/; \
done
composer.phar:
curl -sS https://getcomposer.org/installer | php
install: composer.phar
$(PHP) $(COMPOSER) install
define cakephp3-no-vendor
build-cakephp-$(VERSION): install
cd $(CAKEPHP_SOURCE_DIR) && git checkout -f $(TAG)
cd $(CAKEPHP_SOURCE_DIR) && rm -rf ./vendor
mkdir -p $(BUILD_DIR)/cakephp/$(VERSION)
cp -r static/assets/* $(BUILD_DIR)/cakephp/$(VERSION)
$(PHP) bin/apitool.php generate --config cakephp3 --version $(VERSION) --tag $(TAG) \
--output-dir $(BUILD_DIR)/cakephp/$(VERSION) $(CAKEPHP_SOURCE_DIR)
endef
define cakephp3
build-cakephp-$(VERSION): install
cd $(CAKEPHP_SOURCE_DIR) && git checkout -f $(TAG)
cd $(CAKEPHP_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
mkdir -p $(BUILD_DIR)/cakephp/$(VERSION)
cp -r static/assets/* $(BUILD_DIR)/cakephp/$(VERSION)
$(PHP) bin/apitool.php generate --config cakephp3 --version $(VERSION) --tag $(TAG) \
--output-dir $(BUILD_DIR)/cakephp/$(VERSION) $(CAKEPHP_SOURCE_DIR)
endef
define cakephp4
build-cakephp-$(VERSION): install
cd $(CAKEPHP_SOURCE_DIR) && git checkout -f $(TAG)
cd $(CAKEPHP_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
mkdir -p $(BUILD_DIR)/cakephp/$(VERSION)
cp -r static/assets/* $(BUILD_DIR)/cakephp/$(VERSION)
$(PHP) bin/apitool.php generate --config cakephp4 --version $(VERSION) --tag $(TAG) \
--output-dir $(BUILD_DIR)/cakephp/$(VERSION) $(CAKEPHP_SOURCE_DIR)
endef
define cakephp5
build-cakephp-$(VERSION): install
cd $(CAKEPHP_SOURCE_DIR) && git checkout -f $(TAG)
cd $(CAKEPHP_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
mkdir -p $(BUILD_DIR)/cakephp/$(VERSION)
cp -r static/assets/* $(BUILD_DIR)/cakephp/$(VERSION)
$(PHP) bin/apitool.php generate --config cakephp5 --version $(VERSION) --tag $(TAG) \
--output-dir $(BUILD_DIR)/cakephp/$(VERSION) $(CAKEPHP_SOURCE_DIR)
endef
define chronos
build-chronos-$(VERSION): install
cd $(CHRONOS_SOURCE_DIR) && git checkout -f $(TAG)
cd $(CHRONOS_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
mkdir -p $(BUILD_DIR)/chronos/$(VERSION)
cp -r static/assets/* $(BUILD_DIR)/chronos/$(VERSION)
$(PHP) bin/apitool.php generate --config chronos --version $(VERSION) --tag $(TAG) \
--output-dir $(BUILD_DIR)/chronos/$(VERSION) $(CHRONOS_SOURCE_DIR)
endef
define elastic
build-elastic-$(VERSION): install
cd $(ELASTIC_SOURCE_DIR) && git checkout -f $(TAG)
cd $(ELASTIC_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
mkdir -p $(BUILD_DIR)/elastic-search/$(VERSION)
cp -r static/assets/* $(BUILD_DIR)/elastic-search/$(VERSION)
$(PHP) bin/apitool.php generate --config elastic --version $(VERSION) --tag $(TAG) \
--output-dir $(BUILD_DIR)/elastic-search/$(VERSION) $(ELASTIC_SOURCE_DIR)
endef
define queue
build-queue-$(VERSION): install
cd $(QUEUE_SOURCE_DIR) && git checkout -f $(TAG)
cd $(QUEUE_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
mkdir -p $(BUILD_DIR)/queue/$(VERSION)
cp -r static/assets/* $(BUILD_DIR)/queue/$(VERSION)
$(PHP) bin/apitool.php generate --config queue --version $(VERSION) --tag $(TAG) \
--output-dir $(BUILD_DIR)/queue/$(VERSION) $(QUEUE_SOURCE_DIR)
endef
define authentication
build-authentication-$(VERSION): install
cd $(AUTHENTICATION_SOURCE_DIR) && git checkout -f $(TAG)
cd $(AUTHENTICATION_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
mkdir -p $(BUILD_DIR)/authentication/$(VERSION)
cp -r static/assets/* $(BUILD_DIR)/authentication/$(VERSION)
$(PHP) bin/apitool.php generate --config authentication --version $(VERSION) --tag $(TAG) \
--output-dir $(BUILD_DIR)/authentication/$(VERSION) $(AUTHENTICATION_SOURCE_DIR)
endef
define authorization
build-authorization-$(VERSION): install
cd $(AUTHORIZATION_SOURCE_DIR) && git checkout -f $(TAG)
cd $(AUTHORIZATION_SOURCE_DIR) && $(PHP) $(COMPOSER) update --no-plugins --ignore-platform-reqs
mkdir -p $(BUILD_DIR)/authorization/$(VERSION)
cp -r static/assets/* $(BUILD_DIR)/authorization/$(VERSION)
$(PHP) bin/apitool.php generate --config authorization --version $(VERSION) --tag $(TAG) \
--output-dir $(BUILD_DIR)/authorization/$(VERSION) $(AUTHORIZATION_SOURCE_DIR)
endef
# Build all the versions in a loop.
build-cakephp3-all: $(foreach version, $(CAKEPHP3_VERSIONS), build-cakephp-$(version))
build-cakephp4-all: $(foreach version, $(CAKEPHP4_VERSIONS), build-cakephp-$(version))
build-cakephp5-all: $(foreach version, $(CAKEPHP5_VERSIONS), build-cakephp-$(version))
build-chronos-all: $(foreach version, $(CHRONOS_VERSIONS), build-chronos-$(version))
build-elastic-all: $(foreach version, $(ELASTIC_VERSIONS), build-elastic-$(version))
build-queue-all: $(foreach version, $(QUEUE_VERSIONS), build-queue-$(version))
build-authentication-all: $(foreach version, $(AUTHENTICATION_VERSIONS), build-authentication-$(version))
build-authorization-all: $(foreach version, $(AUTHORIZATION_VERSIONS), build-authorization-$(version))
# Generate build targets for cakephp
TAG:=3.0.19
VERSION:=3.0
$(eval $(cakephp3-no-vendor))
TAG:=3.1.14
VERSION:=3.1
$(eval $(cakephp3-no-vendor))
TAG:=3.2.14
VERSION:=3.2
$(eval $(cakephp3))
TAG:=3.3.16
VERSION:=3.3
$(eval $(cakephp3))
TAG:=3.4.14
VERSION:=3.4
$(eval $(cakephp3))
TAG:=3.5.18
VERSION:=3.5
$(eval $(cakephp3))
TAG:=3.6.15
VERSION:=3.6
$(eval $(cakephp3))
TAG:=3.7.9
VERSION:=3.7
$(eval $(cakephp3))
TAG:=3.8.13
VERSION:=3.8
$(eval $(cakephp3))
TAG:=3.9.10
VERSION:=3.9
$(eval $(cakephp3))
TAG:=origin/3.x
VERSION:=3.10
$(eval $(cakephp3))
TAG:=4.0.9
VERSION:=4.0
$(eval $(cakephp4))
TAG:=4.1.7
VERSION:=4.1
$(eval $(cakephp4))
TAG:=4.2.10
VERSION:=4.2
$(eval $(cakephp4))
TAG:=4.3.10
VERSION:=4.3
$(eval $(cakephp4))
TAG:=4.4.18
VERSION:=4.4
$(eval $(cakephp4))
TAG:=4.5.10
VERSION:=4.5
$(eval $(cakephp4))
TAG:=origin/4.x
VERSION:=4.6
$(eval $(cakephp4))
TAG:=5.0.11
VERSION:=5.0
$(eval $(cakephp5))
TAG:=5.1.6
VERSION:=5.1
$(eval $(cakephp5))
TAG:=origin/5.x
VERSION:=5.2
$(eval $(cakephp5))
# Generate build targets for chronos
TAG:=origin/1.x
VERSION:=1.x
$(eval $(chronos))
TAG:=origin/2.x
VERSION:=2.x
$(eval $(chronos))
TAG:=origin/3.x
VERSION:=3.x
$(eval $(chronos))
# Generate build targets for elastic-search
TAG:=origin/2.x
VERSION:=2.x
$(eval $(elastic))
TAG:=origin/3.x
VERSION:=3.x
$(eval $(elastic))
TAG:=origin/4.x
VERSION:=4.x
$(eval $(elastic))
# Generate build targets for queue
TAG:=origin/1.x
VERSION:=1.x
$(eval $(queue))
TAG:=origin/2.x
VERSION:=2.x
$(eval $(queue))
# Generate build targets for authetication
TAG:=origin/2.x
VERSION:=2.x
$(eval $(authentication))
TAG:=origin/3.x
VERSION:=3.x
$(eval $(authentication))
# Generate build targets for authorization
TAG:=origin/2.x
VERSION:=2.x
$(eval $(authorization))
TAG:=origin/3.x
VERSION:=3.x
$(eval $(authorization))