-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.pl
executable file
·556 lines (407 loc) · 10.3 KB
/
setup.pl
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
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
#!/usr/bin/perl
#
######################################################################
# SQL-Ledger ERP Installer
# Copyright (c) 2007, DWS Systems Inc.
#
# Web: http://www.sql-ledger.com
#
#######################################################################
$| = 1;
if ($ENV{HTTP_USER_AGENT}) {
print "
This does not work yet!
use $0 from the command line";
exit;
}
$lynx = `lynx -version`; # if LWP is not installed use lynx
$wget = `wget --version 2>&1`;
$gzip = `gzip -V 2>&1`; # gz decompression utility
$tar = `tar --version 2>&1`; # tar archiver
$latex = `latex -version`;
%checkversion = ( www => 1, abacus => 2 );
%source = (
1 => { url => "http://www.sql-ledger.com/source", site => "www.sql-ledger.com", locale => us },
);
$userspath = "users"; # default for new installation
eval { require "sql-ledger.conf"; };
$filename = shift;
chomp $filename;
$newinstall = 1;
# is LWP installed
eval { require LWP::Simple; };
$lwp = !($@);
unless ($lwp || $wget || $lynx || $filename) {
die "You must have either lynx, wget or LWP installed or specify a filename.
perl $0 <filename>\n";
}
if ($filename) {
# extract version
die "Not a SQL-Ledger archive\n" if ($filename !~ /^sql-ledger/);
$version = $filename;
$version =~ s/sql-ledger-(\d+\.\d+\.\d+).*$/$1/;
}
if (-f "VERSION") {
# get installed version from VERSION file
open(FH, "VERSION");
@a = <FH>;
close(FH);
$version = $a[0];
chomp $version;
$newinstall = !$version;
if (! -f "sql-ledger.conf") {
$newinstall = 1;
}
}
$webowner = "somewww-data";
$webgroup = "somewww-data";
if ($httpd = `find /etc/apache2 -type f -name 'envvars'`) {
chomp $httpd;
$webowner = `grep "APACHE_RUN_USER" $httpd`;
$webgroup = `grep "APACHE_RUN_GROUP" $httpd`;
chomp $webowner;
chomp $webgroup;
(undef, $webowner) = split /=/, $webowner;
(undef, $webgroup) = split /=/, $webgroup;
}
# updated for Apache 2.4
if ($confd = `find /etc/apache* -type d -name sites-available`) {
chomp $confd;
}
system("tput clear");
if ($filename) {
$install = "\ninstall $version from (f)ile\n";
}
# check for latest version
&get_latest_version;
chomp $latest_version;
if (!$newinstall) {
$install .= "\n(r)einstall $version\n";
}
if ($version && $latest_version) {
if (calcversion($version) < calcversion($latest_version)) {
$install .= "\n(u)pgrade to $latest_version\n";
}
}
$install .= "\n(i)nstall $latest_version (from Internet)\n" if $latest_version;
$install .= "\n(d)ownload $latest_version (no installation)" unless $filename;
print qq|
SQL-Ledger ERP Installation
$install
Enter: |;
$a = <STDIN>;
chomp $a;
exit unless $a;
$a = lc $a;
if ($a !~ /d/) {
print qq|\nEnter httpd owner [$webowner] : |;
$web = <STDIN>;
chomp $web;
$webowner = $web if $web;
print qq|\nEnter httpd group [$webgroup] : |;
$web = <STDIN>;
chomp $web;
$webgroup = $web if $web;
}
if ($a eq 'd') {
&download;
}
if ($a =~ /(i|u)/) {
&install;
}
if ($a eq 'r') {
$latest_version = $version;
&install;
}
if ($a eq 'f') {
&install;
}
exit;
# end main
sub calcversion {
my $v = shift;
@v = split /\./, $v;
for (0 .. 2) {
$v[$_] = 1000 + $v[$_];
}
return join '', @v;
}
sub download {
&get_source_code;
}
sub get_latest_version {
print "Checking for latest version number ....\n";
if ($filename) {
print "skipping, filename supplied\n";
return;
}
if ($lwp) {
$found = 0;
foreach $source (qw(www)) {
$url = $source{$checkversion{$source}}{url};
print "$source{$checkversion{$source}}{site} ... ";
$latest_version = LWP::Simple::get("$url/latest_version");
if ($latest_version) {
$found = 1;
last;
} else {
print "not found\n";
}
}
if (! $found) {
$lwp = 0;
&get_latest_version;
}
} elsif ($wget) {
$found = 0;
foreach $source (qw(www)) {
$url = $source{$checkversion{$source}}{url};
print "$source{$checkversion{$source}}{site} ... ";
if ($latest_version = `wget -q -O - $url/latest_version`) {
$found = 1;
last;
} else {
print "not found\n";
}
}
if (! $found) {
$wget = 0;
&get_latest_version;
}
} else {
if (!$lynx) {
print "\nYou must have either wget, lynx or LWP installed";
exit 1;
}
foreach $source (qw(www)) {
$url = $source{$checkversion{$source}}{url};
print "$source{$checkversion{$source}}{site} ... ";
$ok = `lynx -dump -head $url/latest_version`;
if ($ok = ($ok =~ s/HTTP.*?200 //)) {
$latest_version = `lynx -dump $url/latest_version`;
last;
} else {
print "not found\n";
}
}
die unless $ok;
}
if ($latest_version) {
print "ok\n";
}
}
sub get_source_code {
$err = 0;
@order = ();
for (sort { $a <=> $b } keys %source) {
push @order, $_;
}
if ($latest_version) {
# download it
chomp $latest_version;
$latest_version = "sql-ledger-${latest_version}.tar.gz";
print "\nStatus\n";
print "Downloading $latest_version .... ";
foreach $key (@order) {
print "\n$source{$key}{site} .... ";
if ($lwp) {
$err = LWP::Simple::getstore("$source{$key}{url}/$latest_version", "$latest_version");
$err -= 200;
} elsif ($wget) {
$ok = `wget -Sqc $source{$key}{url}/$latest_version`;
if ($ok =~ /HTTP.*?(20|416)/) {
$err = 0;
}
} else {
$ok = `lynx -dump -head $source{$key}{url}/$latest_version`;
$err = !($ok =~ s/HTTP.*?200 //);
if (!$err) {
$err = system("lynx -dump $source{$key}{url}/$latest_version > $latest_version");
}
}
if ($err) {
print "failed!";
} else {
last;
}
}
} else {
$err = -1;
}
if ($err) {
die "Cannot get $latest_version";
} else {
print "ok\n";
}
$latest_version;
}
sub install {
if ($filename) {
$latest_version = $filename;
} else {
$latest_version = &get_source_code;
}
&decompress;
if ($newinstall) {
open(FH, "sql-ledger.conf.default");
@f = <FH>;
close(FH);
unless ($latex) {
grep { s/^\$latex.*/\$latex = 0;/ } @f;
}
open(FH, ">sql-ledger.conf");
print FH @f;
close(FH);
$alias = $absolutealias = $ENV{'PWD'};
$alias =~ s/.*\///g;
if ($httpd) {
$httpddir = `dirname $httpd`;
}
if ($confd) {
$httpddir = $confd;
}
chomp $httpddir;
$filename = "sql-ledger-httpd.conf";
# do we have write permission?
if (!open(FH, ">>$httpddir/$filename")) {
open(FH, ">$filename");
$norw = 1;
}
$directives = qq|
Alias /$alias $absolutealias/
AddHandler cgi-script .pl
<Directory $absolutealias>
Options ExecCGI Includes FollowSymlinks
Require all granted
Order Deny,Allow
Allow from All
</Directory>
<Directory $absolutealias/users>
Require all granted
Order Deny,Allow
Deny from All
</Directory>
|;
print FH $directives;
close(FH);
print qq|
This is a new installation.
|;
if ($norw) {
print qq|
Webserver directives were written to $filename
Copy $filename to $httpddir and create a symlink in /etc/sites-available
|;
if (!$confd) {
print qq| and add
# SQL-Ledger
Include $httpddir/$filename
to $httpd
|;
}
print qq| and restart your webserver!\n|;
if (!$permset) {
print qq|
WARNING: permissions for templates, users, css, images and spool directory
could not be set. Login as root and set permissions
# chown -hR :$webgroup users templates css images spool
# chmod 771 users templates css images spool
|;
}
} else {
print qq|
Webserver directives were written to
$httpddir/$filename
|;
if (!$confd) {
if (!(`grep "^# SQL-Ledger" $httpd`)) {
print qq|Please add
# SQL-Ledger
Include $httpddir/$filename
to your httpd configuration file and restart the web server.
|;
}
}
}
}
# if this is not root, check if user is part of $webgroup
if ($>) {
if ($permset = ($) =~ getgrnam $webgroup)) {
`chown -hR :$webgroup users templates css images spool`;
chmod 0771, 'users', 'templates', 'css', 'images', 'spool';
`chown :$webgroup sql-ledger.conf`;
}
} else {
# root
`chown -hR 0:0 *`;
`chown -hR $webowner:$webgroup users templates css images spool`;
chmod 0771, 'users', 'templates', 'css', 'images', 'spool';
`chown $webowner:$webgroup sql-ledger.conf`;
}
chmod 0644, 'sql-ledger.conf';
unlink "sql-ledger.conf.default";
&cleanup;
while ($a !~ /(Y|N)/) {
print qq|\nDisplay README (Y/n) : |;
$a = <STDIN>;
chomp $a;
$a = ($a) ? uc $a : 'Y';
if ($a eq 'Y') {
@args = ("more", "doc/README");
system(@args);
}
}
}
sub decompress {
die "Error: gzip not installed\n" unless ($gzip);
die "Error: tar not installed\n" unless ($tar);
&create_lockfile;
# ungzip and extract source code
print "Decompressing $latest_version ... ";
if (system("gzip -df $latest_version")) {
print "Error: Could not decompress $latest_version\n";
&remove_lockfile;
exit;
} else {
print "done\n";
}
# strip gz from latest_version
$latest_version =~ s/\.gz//;
# now untar it
print "Unpacking $latest_version ... ";
if (system("tar -xf $latest_version")) {
print "Error: Could not unpack $latest_version\n";
&remove_lockfile;
exit;
} else {
# now we have a copy in sql-ledger
if (system("tar -cf $latest_version -C sql-ledger .")) {
print "Error: Could not create archive for $latest_version\n";
&remove_lockfile;
exit;
} else {
if (system("tar -xf $latest_version")) {
print "Error: Could not unpack $latest_version\n";
&remove_lockfile;
exit;
} else {
print "done\n";
print "cleaning up ... ";
`rm -rf sql-ledger`;
print "done\n";
}
}
}
}
sub create_lockfile {
if (-d "$userspath") {
open(FH, ">$userspath/nologin.LCK");
close(FH);
}
}
sub cleanup {
unlink "$latest_version";
unlink "$userspath/members.default" if (-f "$userspath/members.default");
&remove_lockfile;
}
sub remove_lockfile { unlink "$userspath/nologin.LCK" if (-f "$userspath/nologin.LCK") };