This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
/
upgrade.sh
executable file
·526 lines (408 loc) · 13.7 KB
/
upgrade.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
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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
#!/usr/bin/env bash
# Note: If you see this error on Ubuntu, don't worry; we're using a macOS-friendly sed syntax
# that throws errors but still works fine on Linux.
#
# sed: can't read : No such file or directory
##
# tightenco/collect upgrader script
#
# usage
# ./upgrade.sh [laravel framework version]
#
# or
#
# bash upgrade.sh [laravel framework version]
#
##
# Include dotfiles on file operations
#
shopt -s dotglob
##
# App
#
function main()
{
# a='a.b.y'
# echo ${a##*.}
# exit
echo "Upgrading..."
checkDependencies
prepareEnvironment $1
displayVariables
cleanDirectories
downloadRepository
extractZip
copyClasses
copyContracts
copyTraits
copyStubs
downloadTests
copyTestSupportClasses
renameNamespace
fillAliases
cleanupDir
runTests
}
##
# Check if all dependencies are available
#
function checkDependencies()
{
for dependency in ${dependencies[@]}; do
if ! [ -x "$(command -v ${dependency})" ]; then
echo "Error: ${dependency} is not installed." >&2
exit 1
fi
done
}
##
# Prepare the environment
#
function prepareEnvironment()
{
##
# Define all variables
#
requestedVersion=$1
rootDir=.
baseDir=${rootDir}/src
vendor=laravel
project=framework
oldNamespace='Illuminate'
newNamespace='Tightenco\\Collect'
newDir='Collect'
logFile=$(mktemp /tmp/collect-log.XXXXXX)
repository=https://github.com/$vendor/$project.git
getCurrentVersionFromGitHub
repositoryDir=${rootDir}/$project-${collectionVersion}
repositorySrcDir=${repositoryDir}/src
collectionZip=${rootDir}/$project-${collectionVersion}.zip
collectionZipUrl=https://github.com/$vendor/$project/archive/v${collectionVersion}.zip
# If a new version has not been tagged, use the following
# collectionZipUrl=https://github.com/$vendor/$project/archive/${collectionVersion}.zip
oldNamespaceDir=${repositorySrcDir}/${oldNamespace}
newNamespaceDir=${baseDir}/${newDir}
testsDir=${rootDir}/tests
testsBaseUrl=https://raw.githubusercontent.com/${vendor}/${project}/v${collectionVersion}/tests
# If a new version has not been tagged, use the following
# testsBaseUrl=https://raw.githubusercontent.com/${vendor}/${project}/${collectionVersion}/tests
stubsDir=${rootDir}/stubs
aliasFile=${baseDir}/${newDir}/Support/alias.php
carriageReturn="
"
classes=(
'Support/Arr'
'Support/Collection'
'Support/Enumerable'
'Support/HigherOrderCollectionProxy'
'Support/LazyCollection'
)
classesNotInSupport=(
'Conditionable/HigherOrderWhenProxy'
'Support/Str'
)
traits=(
'Support/Traits/EnumeratesValues'
)
supportTraits=(
'Conditionable/Traits/Conditionable'
'Macroable/Traits/Macroable'
'Support/Traits/Tappable'
)
contracts=(
'Contracts/Support/Arrayable'
'Contracts/Support/Jsonable'
'Contracts/Support/Htmlable'
'Contracts/Support/CanBeEscapedWhenCastToString'
)
tests=(
'Support/Enums.php'
'Support/SupportCollectionTest.php'
'Support/SupportArrTest.php'
'Support/SupportMacroableTest.php'
'Support/SupportLazyCollectionTest.php'
'Support/SupportLazyCollectionIsLazyTest.php'
'Support/Concerns/CountsEnumerations.php'
)
testSupportClasses=(
'Support/Carbon'
'Support/HigherOrderTapProxy'
'Support/HtmlString'
'Support/Str'
'Support/Stringable'
)
testSupportClassesInExtractedCollections=(
'Support/ItemNotFoundException'
'Support/MultipleItemsFoundException'
)
stubs=(
'src/Collect/Support/helpers.php'
'src/Collect/Support/alias.php'
'tests/bootstrap.php'
)
dependencies=(
'wget'
'unzip'
'mktemp'
)
}
##
# Display all variables
#
function displayVariables()
{
echo
echo "-- Variables"
echo "---------------------------------------------"
echo baseDir = ${baseDir}
echo collectionVersion = ${collectionVersion}
echo repositoryDir = ${repositoryDir}
echo repositorySrcDir = ${repositorySrcDir}
echo collectionZip = ${collectionZip}
echo baseDir = ${baseDir}
echo oldNamespace = ${oldNamespace}
echo newNamespace = ${newNamespace}
echo oldNamespaceDir = ${oldNamespaceDir}
echo newNamespaceDir = ${newNamespaceDir}
echo testsDir = ${testsDir}
echo testsBaseUrl = ${testsBaseUrl}
echo "---------------------------------------------"
echo ""
}
##
# Clean the destination directory
#
function cleanDirectories()
{
echo "Cleaning ${baseDir} and ${testsDir}/Support..."
if [ -d ${baseDir} ]; then
rm -rf ${baseDir}
fi
if [ -d ${testsDir}/Support ]; then
rm -rf ${testsDir}
fi
if [ -d ${repositoryDir} ]; then
rm -rf ${repositoryDir}
fi
}
##
# Download a new version
#
function downloadRepository()
{
echo "-- Downloading ${collectionZipUrl} to ${baseDir}"
wget ${collectionZipUrl} -O ${collectionZip} >${logFile} 2>&1
handleErrors
}
##
# Extract from compressed file
#
function extractZip()
{
echo "-- Extracting $project.zip..."
unzip -u ${collectionZip} -d ${rootDir} >${logFile} 2>&1
rm ${collectionZip}
handleErrors
}
##
# Copy classes
#
function copyClasses()
{
echo "-- Copying classes ..."
for class in ${classes[@]}; do
classSrc="${class/Support/Collections}"
echo "Copying ${oldNamespaceDir}/${classSrc}.php..."
mkdir -p $(dirname ${newNamespaceDir}/${class}.php)
cp ${oldNamespaceDir}/${classSrc}.php $newNamespaceDir/$class.php
chmod 644 ${newNamespaceDir}/${class}.php
done
for class in ${classesNotInSupport[@]}; do
classSrc="${class}"
echo "Copying ${oldNamespaceDir}/${classSrc}.php..."
mkdir -p $(dirname ${newNamespaceDir}/${class}.php)
cp ${oldNamespaceDir}/${classSrc}.php $newNamespaceDir/$class.php
chmod 644 ${newNamespaceDir}/${class}.php
done
}
##
# Move contracts
#
function copyContracts()
{
echo "-- Copying contracts..."
for contract in ${contracts[@]}; do
echo "Copying ${oldNamespaceDir}/${contract}.php..."
mkdir -p $(dirname ${newNamespaceDir}/${contract})
cp ${oldNamespaceDir}/${contract}.php ${newNamespaceDir}/${contract}.php
done
}
##
# Move traits
#
function copyTraits()
{
echo "-- Copying traits..."
for trait in ${traits[@]}; do
traitSrc="${trait/Support/Collections}"
echo "Copying ${oldNamespaceDir}/${traitSrc}.php..."
mkdir -p $(dirname ${newNamespaceDir}/${trait})
cp ${oldNamespaceDir}/${traitSrc}.php ${newNamespaceDir}/${trait}.php
done
for traitSrc in ${supportTraits[@]}; do
traitClassName="${traitSrc##*/}"
echo "Copying ${oldNamespaceDir}/${traitSrc}.php... to ${newNamespaceDir}/Support/Traits/${traitClassName}.php"
mkdir -p $(dirname ${newNamespaceDir}/${traitClassName})
cp ${oldNamespaceDir}/${traitSrc}.php ${newNamespaceDir}/Support/Traits/${traitClassName}.php
done
}
##
# Copy classes and contracts
#
function copyStubs()
{
echo "-- Copying stubs..."
for stub in ${stubs[@]}; do
echo "Copying ${stubsDir}/${stub} to ${rootDir}/${stub}..."
mkdir -p $(dirname ${rootDir}/${stub})
cp ${stubsDir}/${stub} ${rootDir}/${stub}
chmod 644 ${rootDir}/${stub}
done
}
##
# Fill the alias.php file with the list of aliases
#
function fillAliases()
{
echo "-- Filling aliases.php..."
indent=' '
aliases='CARRIAGERETURN'
for contract in ${contracts[@]}; do
aliases="${aliases}${indent}${newNamespace}/${contract}::class => ${oldNamespace}/${contract}::class,CARRIAGERETURN"
done
for class in ${classes[@]}; do
aliases="${aliases}${indent}${newNamespace}/${class}::class => ${oldNamespace}/${class}::class,CARRIAGERETURN"
done
for trait in ${traits[@]}; do
aliases="${aliases}${indent}${newNamespace}/${trait}::class => ${oldNamespace}/${trait}::class,CARRIAGERETURN"
done
aliases=${aliases//\//\\\\}
sed -i "" -e "s|/\*--- ALIASES ---\*/|${aliases}|g" $aliasFile
sed -i "" -e "s|CARRIAGERETURN|\\${carriageReturn}|g" $aliasFile
}
##
# Copy tests to our tests dir
#
function getCurrentVersionFromGitHub()
{
echo Getting current version from $repository...
if [ -z "$requestedVersion" ]; then
collectionVersion=$(git ls-remote $repository --tags v9.5\* | grep tags/ | grep -v {} | cut -d \/ -f 3 | cut -d v -f 2 | grep -v RC | grep -vi beta | sort -t. -k 1,1n -k 2,2n -k 3,3n| tail -1)
else
collectionVersion=$requestedVersion
fi
echo Upgrading to $vendor/$project $collectionVersion
}
##
# Download tests to tests dir
#
function downloadTests()
{
echo "-- Copying tests..."
for test in ${tests[@]}; do
echo "---- Downloading test ${testsBaseUrl}/${test} to ${testsDir}/${test}..."
mkdir -p $(dirname ${testsDir}/${test})
wget ${testsBaseUrl}/${test} -O ${testsDir}/${test} >/dev/null 2>&1
done
}
##
# Copy support files for tests
#
function copyTestSupportClasses()
{
echo "-- Copying support files for tests..."
testSupportDirectory='./tests/files'
for class in ${testSupportClasses[@]}; do
echo "Copying ${oldNamespaceDir}/${class}..."
mkdir -p $(dirname $testSupportDirectory/$class)
cp ${oldNamespaceDir}/${class}.php ${testSupportDirectory}/$class.php
chmod 644 ${testSupportDirectory}/${class}.php
done
for class in ${testSupportClassesInExtractedCollections[@]}; do
echo "Copying ${oldNamespaceDir}/${class} (from extracted Collections)..."
mkdir -p $(dirname $testSupportDirectory/$class)
# Extract these classes from Illuminate/Collections, even though they end up in
# the Illuminate/Support namespace
movedClassFilename=${class/Support/Collections}
cp ${oldNamespaceDir}/${movedClassFilename}.php ${testSupportDirectory}/$class.php
chmod 644 ${testSupportDirectory}/${class}.php
done
# @todo: do this more cleanly
find ./tests/files -name "*.php" -exec sed -i "" -e "s|Illuminate\\\Support|/\*--- OLDNAMESPACE ---\*/\\\Support|g" {} \;
}
##
# Rename namespace on all files
#
function renameNamespace()
{
echo "-- Renaming namespace from $oldNamespace to $newNamespace..."
find ${newNamespaceDir} -name "*.php" -exec sed -i "" -e "s|${oldNamespace}|${newNamespace}|g" {} \;
find ${testsDir} -name "*.php" -exec sed -i "" -e "s|${oldNamespace}|${newNamespace}|g" {} \;
find ${testsDir} -name "*.php" -exec sed -i "" -e "s|/\*--- OLDNAMESPACE ---\*/|${oldNamespace}|g" {} \;
find ${newNamespaceDir} -name "*.php" -exec sed -i "" -e "s|/\*--- OLDNAMESPACE ---\*/|${oldNamespace}|g" {} \;
# rename the namespaces of Conditional
find ${newNamespaceDir} -name "*.php" -exec sed -i "" -e "s|Support\\\HigherOrderWhenProxy|Conditionable\\\HigherOrderWhenProxy|g" {} \;
find ${newNamespaceDir} -name "HigherOrderWhenProxy.php" -exec sed -i "" -e "s|Tightenco\\\Collect\\\Support|Tightenco\\\Collect\\\Conditionable|g" {} \;
echo "-- Expand the alias for Stringable to check for Illuminate, not Tightenco, Stringable"
find ${newNamespaceDir} -name "*.php" -exec sed -i "" -e "s|instanceof\ Stringable|instanceof\ \\\Illuminate\\\Support\\\Stringable|g" {} \;
echo "-- Reigning the renaming back in; bringing Carbon, HtmlString, Str back to Illuminate/Support"
# @todo: do this more cleanly
# Just in tests, fix namespaces for classes that are no longer provided in collections as of 8.0+ Illuminate\Support\Traits\Macroable, etc
find ${testsDir} -name "*.php" -exec sed -i "" -e "s|Tightenco\\\Collect\\\Support\\\Carbon|Illuminate\\\Support\\\Carbon|g" {} \;
find ${testsDir} -name "*.php" -exec sed -i "" -e "s|Tightenco\\\Collect\\\Support\\\HtmlString|Illuminate\\\Support\\\HtmlString|g" {} \;
find ${testsDir} -name "*.php" -exec sed -i "" -e "s|Tightenco\\\Collect\\\Support\\\Str|Illuminate\\\Support\\\Str|g" {} \;
find ${testsDir} -name "*.php" -exec sed -i "" -e "s|Illuminate\\\Support\\\Traits\\\Conditionable|Tightenco\\\Collect\\\Support\\\Traits\\\Conditionable|g" {} \;
find ${testsDir} -name "*.php" -exec sed -i "" -e "s|Illuminate\\\Support\\\Traits\\\Macroable|Tightenco\\\Collect\\\Support\\\Traits\\\Macroable|g" {} \;
find ${testsDir} -name "*.php" -exec sed -i "" -e "s|Illuminate\\\Support\\\Traits\\\Tappable|Tightenco\\\Collect\\\Support\\\Traits\\\Tappable|g" {} \;
find ${testSupportDirectory} -name "HigherOrderTapProxy.php" -exec sed -i "" -e "s|Illuminate\\\Support|Tightenco\\\Collect\\\Support|g" {} \;
find ${testSupportDirectory} -name "ItemNotFoundException.php" -exec sed -i "" -e "s|Illuminate\\\Support|Tightenco\\\Collect\\\Support|g" {} \;
find ${testSupportDirectory} -name "MultipleItemsFoundException.php" -exec sed -i "" -e "s|Illuminate\\\Support|Tightenco\\\Collect\\\Support|g" {} \;
}
##
# Clean up dir
#
function cleanupDir()
{
echo "-- Cleaning up ${repositoryDir}..."
rm -rf ${repositoryDir}
}
##
# Run tests
#
function runTests()
{
echo "-- Running tests..."
if [ -f ${rootDir}/composer.lock ]; then
rm ${rootDir}/composer.lock
fi
if [ -d ${rootDir}/vendor ]; then
rm -rf ${rootDir}/vendor
fi
composer install
vendor/bin/phpunit
}
##
# Handle command errors
#
function handleErrors()
{
if [[ $? -ne 0 ]]; then
echo "FATAL ERROR occurred during command execution:"
cat ${logFile}
exit 1
fi
}
##
# Run the app
#
main $@