-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwp_update_server.sh
executable file
·188 lines (127 loc) · 4.23 KB
/
wp_update_server.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
#!/bin/bash
# ============================
# Script to update a staging site after working on it locally.
# You can select which part of the site to update depending on what you worked on.
#
# 1. Run ‘wpupdateserver’ command within site folder.
# 2. Select which component of the site you want to update. Options include: Update just the theme, update just the database or update the complete site including uploads and plugins folders.
# 3. If you want to update the complete site then you’ll need to have the themes github repository URL ready to paste into the command prompt.
# ============================
# ============================
# Variables
# ============================
sitename=${PWD##*/}
# Pull variables from Config File
root=$(cd $(dirname $0)/ && pwd)
config_path=${root}/config.cfg
. $config_path
# ============================
# User Prompt
# ============================
PS3='Please enter your choice 👉 '
options=("Update Theme" "Update Database" "Update Theme, DB and WP-Content's folder")
select opt in "${options[@]}"
do
case $opt in
"Update Theme")
# ============================
# Login to server
# ============================
ssh $ssh_userhost -p$ssh_port bash -c "'
# Update theme
# =======================
cd public_html/$sitename/wp-content/themes/$sitename
git pull origin master
'"
clear
echo 'Theme updated 🤘'
break
;;
"Update Database")
# ============================
# Prepare Local Files
# ============================
# Download DB
echo "Downloading local DB 👇"
wp db export $sitename.sql
clear
# ============================
# Send DB to server
# ============================
echo "Sending $sitename database to the server 🖥"
# Copy it to the public_html folder on the server
scp -P $ssh_port $sitename.sql $ssh_userhost:$server_path/$sitename
clear
# ============================
# Login to server
# ============================
ssh $ssh_userhost -p$ssh_port bash -c "'
# Update the Database
# =======================
cd public_html/$sitename
wp db reset --yes
wp db import $sitename.sql
wp search-replace 'http://$sitename.localhost' '$server_url/$sitename'
'"
# ============================
# Clean Up local environment
# ============================
clear
# Remove original wp-content zip and database files
rm $sitename.sql
clear
echo 'Staging database updated 🤘'
break
;;
"Update Theme, DB and WP-Content's folder")
read -p "Bitbucket or Github Repo URL: " repositoryURL
# ============================
# Prepare Local Files
# ============================
# Download DB
echo "Downloading local DB 👇"
wp db export $sitename.sql
# Zip the wp-content Folder
echo "Zipping $sitename files 💾"
tar --exclude="./wp-content/themes" -zcvf wp-content.tar.gz wp-content
clear
# ============================
# Send DB and wp-content to server
# ============================
echo "Sending $sitename database and wp-content to the server 🖥"
# Copy it to the public_html folder on the server
scp -P $ssh_port $sitename.sql wp-content.tar.gz $ssh_userhost:$server_path/$sitename
clear
# ============================
# Login to server
# ============================
ssh $ssh_userhost -p$ssh_port bash -c "'
# Update the Database
# =======================
cd public_html/$sitename
wp db reset --yes
wp db import $sitename.sql
wp search-replace 'http://$sitename.localhost' '$server_url/$sitename'
# Update wp-content
# =======================
rm -rf wp-content
tar -zxvf wp-content.tar.gz
rm wp-content.tar.gz
# Update theme
# =======================
mkdir -p wp-content/themes/$sitename
cd wp-content/themes/$sitename
git clone $repositoryURL .
'"
# ============================
# Clean Up local environment
# ============================
clear
# Remove original wp-content zip and database files
rm wp-content.tar.gz $sitename.sql
echo 'Staging site updated 🤘'
break
;;
*) echo invalid option;;
esac
done