forked from inspire-software/yes-cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyc.sh
executable file
·298 lines (234 loc) · 9.01 KB
/
yc.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
#!/bin/sh
#
# YesCart development script
#
# @author Denys Pavlov
RUNDIR=`pwd`
YC_HOME="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
MVN="$M2_HOME/bin/mvn"
show_env() {
echo "================================================";
echo " Environment variables ";
echo "================================================";
echo " user.name : $HOME";
echo " user.home : $HOME";
echo " YC_HOME : $YC_HOME";
echo " RUNNIG_HOME : $RUNDIR";
echo " ANT_HOME : $ANT_HOME";
echo " FLEX_HOME : $FLEX_HOME";
echo " JAVA_HOME : $JAVA_HOME";
echo " M2_HOME : $M2_HOME";
echo "================================================";
}
show_help() {
echo "================================================";
echo " YesCart environment script ";
echo "================================================";
echo " commands: ";
echo " env - show environment variables ";
echo " ";
echo " i3rd - setup necessary artifacts 3rd ";
echo " party artifacts for maven ";
echo " ";
echo " cpres - copy extra resources to webapps ";
echo " ";
echo " luke - start luke ";
echo " ";
echo " nullsmtp - start DevNullSmtp ";
echo " ";
echo " dbimysql - initialise db for mysql ";
echo " ";
echo " dbiderby - initialise db for derby ";
echo " derbygo - start derby server ";
echo " derbygob - start derby server (in back mode) ";
echo " derbyend - stop derby server ";
echo " derbycon - connect to derby with ij ";
echo "================================================";
}
add_mvn_extra_dep() {
echo "================================================";
echo " Setup environment ";
echo "================================================";
echo " Adding extra dependencies...";
# cd "$YC_HOME/env/setup/lib3rdparty"
# cd "$YC_HOME"
echo " All dependencies are setup"
echo "================================================";
}
cp_resources_to_webapp() {
echo "================================================";
echo " Copy resources to webapps ";
echo "================================================";
echo " copying resources... manager/server";
cd "$YC_HOME/manager/server"
"$MVN" validate -Ptemplates
echo " copying resources... web/store";
cd "$YC_HOME/web/store"
"$MVN" validate -Ptemplates
echo " copying resources... web/api";
cd "$YC_HOME/web/api"
"$MVN" validate -Ptemplates
}
init_db_mysql() {
echo "================================================";
echo " Initialise MySQL database ";
echo "================================================";
DBINITSCRIPT="$YC_HOME/env/setup/dbi/mysql/dbinit.sql"
echo "Running init script as root user $DBINITSCRIPT"
mysql -uroot -p < "$DBINITSCRIPT"
echo "Initialisation complete."
}
db_derby_go() {
echo "================================================";
echo " Starting Derby database ";
echo "================================================";
export DERBY_INSTALL="$YC_HOME/env/derby"
export CLASSPATH="$DERBY_INSTALL/lib/derby.jar:$DERBY_INSTALL/lib/derbytools.jar:$DERBY_INSTALL/lib/derbyclient.jar:$DERBY_INSTALL/lib/derbynet.jar:."
cd "$DERBY_INSTALL/lib"
java -jar derbyrun.jar server start
}
db_derby_gob() {
echo "================================================";
echo " Starting Derby database (background mode) ";
echo "================================================";
export DERBY_INSTALL="$YC_HOME/env/derby"
export CLASSPATH="$DERBY_INSTALL/lib/derby.jar:$DERBY_INSTALL/lib/derbytools.jar:$DERBY_INSTALL/lib/derbyclient.jar:$DERBY_INSTALL/lib/derbynet.jar:."
cd "$DERBY_INSTALL/lib"
java -jar derbyrun.jar server start &
echo " Derby server started on port 1527... ";
echo " ";
echo " Tips: ";
echo " * if you see 'started and ready to accept connections on port 1527' but no prompt, just hit ENTER";
echo " * if you encounter problems check http://www.inspire-software.com/confluence/display/YC3EN/Derby+quick+start";
echo " ";
}
db_derby_end() {
echo "================================================";
echo " Stopping Derby database ";
echo "================================================";
export DERBY_INSTALL="$YC_HOME/env/derby"
export CLASSPATH="$DERBY_INSTALL/lib/derby.jar:$DERBY_INSTALL/lib/derbytools.jar:$DERBY_INSTALL/lib/derbyclient.jar:$DERBY_INSTALL/lib/derbynet.jar:."
cd "$DERBY_INSTALL/lib"
java -jar derbyrun.jar server shutdown
echo " Derby server stopped... ";
}
init_db_derby() {
echo "================================================";
echo " Initialise Derby database ";
echo "================================================";
echo "Setting Derby environment variables";
export DERBY_INSTALL="$YC_HOME/env/derby"
export CLASSPATH="$DERBY_INSTALL/lib/derby.jar:$DERBY_INSTALL/lib/derbytools.jar:$DERBY_INSTALL/lib/derbyclient.jar:$DERBY_INSTALL/lib/derbynet.jar:."
cd "$DERBY_INSTALL/lib"
#java org.apache.derby.tools.sysinfo
DBINITSCRIPT="$YC_HOME/env/setup/dbi/derby/dbinit.sql"
echo "Running init script $DBINITSCRIPT"
java -Dderby.system.home="$YC_HOME" -Dij.outfile="$YC_HOME/derbyinit.log" -Dderby.ui.codeset=UTF8 org.apache.derby.tools.ij "$DBINITSCRIPT"
# java -Dderby.system.home=$YC_HOME org.apache.derby.tools.ij $DBINITSCRIPT
cd "$YC_HOME";
echo "Initialisation complete. See log: $YC_HOME/derbyinit.log"
}
db_derby_connect() {
echo "================================================";
echo " Starting Derby client ";
echo "================================================";
export DERBY_INSTALL="$YC_HOME/env/derby"
export CLASSPATH="$DERBY_INSTALL/lib/derby.jar:$DERBY_INSTALL/lib/derbytools.jar:$DERBY_INSTALL/lib/derbyclient.jar:$DERBY_INSTALL/lib/derbynet.jar:."
cd "$DERBY_INSTALL/lib"
echo "Working directory is"
pwd
echo "Use:"
echo " connect 'jdbc:derby://localhost:1527/yes'; - to connect to main db";
echo " connect 'jdbc:derby://localhost:1527/yespay'; - to connect to payment gateway db";
echo " disconnect; - to quit";
java -Dderby.ui.codeset=UTF8 org.apache.derby.tools.ij
}
start_luke() {
echo "================================================";
echo " Starting Luke (lucene index browser) ";
echo "================================================";
java -jar "$YC_HOME/env/luke/lukeall-3.5.0.jar" &
}
start_nullsmtp() {
echo "================================================";
echo " Starting DevNullSmtp (dummy SMTP server) ";
echo "================================================";
java -jar "$YC_HOME/env/devnullsmtp/DevNullSmtp.jar" &
}
if [ $1 ];
then
if [ $1 = "help" ];
then
show_help;
exit 0;
elif [ $1 = "i3rd" ];
then
cd "$YC_HOME"
add_mvn_extra_dep;
cd "$RUNDIR"
exit 0;
elif [ $1 = "cpres" ];
then
cd "$YC_HOME"
cp_resources_to_webapp;
cd "$RUNDIR"
exit 0;
elif [ $1 = "dbimysql" ];
then
cd "$YC_HOME"
init_db_mysql;
cd "$RUNDIR"
exit 0;
elif [ $1 = "dbiderby" ];
then
cd "$YC_HOME"
init_db_derby;
cd "$RUNDIR"
exit 0;
elif [ $1 = "derbygo" ];
then
cd "$YC_HOME"
db_derby_go;
cd "$RUNDIR"
exit 0;
elif [ $1 = "derbygob" ];
then
cd "$YC_HOME"
db_derby_gob;
cd "$RUNDIR"
exit 0;
elif [ $1 = "derbyend" ];
then
cd "$YC_HOME"
db_derby_end;
cd "$RUNDIR"
exit 0;
elif [ $1 = "derbycon" ];
then
cd "$YC_HOME"
db_derby_connect;
cd "$RUNDIR"
exit 0;
elif [ $1 = "env" ];
then
cd "$YC_HOME"
show_env;
cd "$RUNDIR"
exit 0;
elif [ $1 = "luke" ];
then
cd "$YC_HOME"
start_luke;
cd "$RUNDIR"
exit 0;
elif [ $1 = "nullsmtp" ];
then
cd "$YC_HOME"
start_nullsmtp;
cd "$RUNDIR"
exit 0;
else
echo "Provide a command..."; show_help; exit 100;
fi
else echo "Provide a command..."; show_help; exit 100;
fi