-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscaffold.sh
executable file
·123 lines (99 loc) · 5.25 KB
/
scaffold.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
#!/bin/bash
# Function to convert string to lowercase with hyphens
to_hyphenated() {
echo "$1" | tr '[:upper:]' '[:lower:]' | tr ' ' '-'
}
# Function to convert string to lowercase with underscores
to_underscored() {
echo "$1" | tr '[:upper:]' '[:lower:]' | tr ' ' '_'
}
# Prompt for project details
read -p "Enter project name (Project Name): " project_name
read -p "Enter project website (example.org): " project_website
read -p "Enter namespace (ProjectName): " namespace
read -p "Enter repository URL (https://github.com/happyprime/scaffold): " repository_url
read -p "Remove existing .git directory? (Y/n): " remove_git
# Handle git directory removal
case "${remove_git:0:1}" in
[Nn]*)
echo "Keeping .git directory"
;;
*)
if [ -d ".git" ]; then
echo "Removing .git directory"
rm -rf .git
fi
;;
esac
# Convert project name to various formats
project_name_hyphenated=$(to_hyphenated "$project_name")
project_name_underscored=$(to_underscored "$project_name")
# Rename directories
mv mu-plugins/scaffold mu-plugins/"$project_name_hyphenated"
mv themes/scaffold themes/"$project_name_hyphenated"
# Rename main plugin file
mv mu-plugins/"$project_name_hyphenated"/scaffold.php mu-plugins/"$project_name_hyphenated"/"$project_name_hyphenated".php
# Replace namespace in PHP files
find mu-plugins/"$project_name_hyphenated" -type f -name "*.php" -exec sed -i '' "s/namespace Scaffold/namespace $namespace/g" {} +
# Replace variable prefixes in PHP files
find mu-plugins/"$project_name_hyphenated" -type f -name "*.php" -exec sed -i '' "s/\$scaffold/\$$project_name_underscored/g" {} +
# Replace @package documentation
find mu-plugins/"$project_name_hyphenated" -type f -name "*.php" -exec sed -i '' "s/@package scaffold/@package $project_name_hyphenated/g" {} +
# Update theme style.css
sed -i '' "s/Theme Name: Scaffold/Theme Name: $project_name/g" themes/"$project_name_hyphenated"/css/style.css
sed -i '' "s/The WordPress theme for Scaffold/The WordPress theme for $project_name/g" themes/"$project_name_hyphenated"/css/style.css
sed -i '' "s/Text Domain: scaffold/Text Domain: $project_name_hyphenated/g" themes/"$project_name_hyphenated"/css/style.css
# Update package.json
sed -i '' "s/\"name\": \"scaffold\"/\"name\": \"$project_name_hyphenated\"/g" package.json
sed -i '' "s|https://github.com/happyprime/scaffold#readme|$project_website|g" package.json
sed -i '' "s|git+https://github.com/happyprime/scaffold.git|$repository_url|g" package.json
sed -i '' "s|https://github.com/happyprime/scaffold/issues|$repository_url/issues|g" package.json
sed -i '' "s/\"description\": \".*\"/\"description\": \"The $project_website website.\"/g" package.json
# Update composer.json
sed -i '' "s/\"name\": \"happyprime\/scaffold\"/\"name\": \"happyprime\/$project_name_hyphenated\"/g" composer.json
# Update .gitignore
sed -i '' "s!/themes/scaffold!/themes/$project_name_hyphenated!" .gitignore
sed -i '' "s!/mu-plugins/scaffold!/mu-plugins/$project_name_hyphenated!" .gitignore
# Update .deploy_include
sed -i '' "s!/themes/scaffold!/themes/$project_name_hyphenated!" .deploy_include
# Replace PHP constants
find . -type f -name "*.php" -exec sed -i '' "s/SCAFFOLD_MU_PLUGIN_DIR/${project_name_underscored}_MU_PLUGIN_DIR/g" {} +
find . -type f -name "*.php" -exec sed -i '' "s/SCAFFOLD_MU_PLUGIN_FILE/${project_name_underscored}_MU_PLUGIN_FILE/g" {} +
# Replace text domain strings (with single quotes)
find . -type f -name "*.php" -exec sed -i '' "s/'scaffold'/'$project_name_hyphenated'/g" {} +
# Replace text domain in theme template files
find themes/"$project_name_hyphenated" -type f -name "*.html" -exec sed -i '' "s/scaffold/$project_name_hyphenated/g" {} +
# Update package.json script paths
sed -i '' "s/mu-plugins\/scaffold/mu-plugins\/$project_name_hyphenated/g" package.json
sed -i '' "s/themes\/scaffold/themes\/$project_name_hyphenated/g" package.json
# Remove lines in .gitignore after the line that says "# Only ignore in the scaffold directory."
sed -i '' '/# Only ignore in the scaffold directory./,$d' .gitignore
# Replace scaffold with $project_name_hyphenated in phpcs.xml.dist
sed -i '' "s/scaffold/$project_name_hyphenated/g" phpcs.xml.dist
# Replace any remaining instances of scaffold/Scaffold, but only in specific file types
echo "Performing final replacements..."
for ext in php css js json md txt; do
LC_ALL=C find . -type f -name "*.$ext" \
-not -name "scaffold.sh" \
-not -path "*/\.*" \
-not -path "*/.*/*" \
-not -path "*/node_modules/*" \
-not -path "*/vendor/*" \
-exec sed -i '' "s/scaffold/$project_name_hyphenated/g" {} + 2>/dev/null
LC_ALL=C find . -type f -name "*.$ext" \
-not -name "scaffold.sh" \
-not -path "*/\.*" \
-not -path "*/.*/*" \
-not -path "*/node_modules/*" \
-not -path "*/vendor/*" \
-exec sed -i '' "s/Scaffold/$project_name/g" {} + 2>/dev/null
done
echo "Scaffolding complete! Project has been renamed to $project_name_hyphenated"
echo -e "\nChecking for remaining instances of 'scaffold' (case insensitive):"
find . -type f \
-not -name "scaffold.sh" \
-not -path "*/\.*" \
-not -path "*/.*/*" \
-not -path "*/node_modules/*" \
-not -path "*/vendor/*" \
-exec grep -l -i "scaffold" {} \;