-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathocmodw.php
124 lines (96 loc) · 3.12 KB
/
ocmodw.php
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
<?php
require_once 'ocmodw.ini.php';
require_once 'ocmodw.inc/ocmodw.fun.php';
require_once 'ocmodw.inc/ocmodw.req.php';
require_once 'ocmodw.inc/ocmodw.opt.php';
define('FCLDIR', '_fcl');
define('FCLIGNORE', '.fclignore'); // fcl ignorelist
define('SRCDIR', 'src');
define('ZIPDIR', 'zip');
define('ZIPEXT', '.ocmod.zip');
define('MDIR', 'module'); // module dir
define('ADIR', 'addons'); // addons dir
/*
set_error_handler(function ($errno, $errstr, $errfile, $errline) {
// error was suppressed with the @-operator
if (@error_reporting() === 0) {
return false;
}
throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
});
*/
$clo = get_clo();
$basename = strtolower(basename(getcwd()));
if (isset($clo[MAKEZIP]) && $clo[MAKEZIP] !== false) {
$workdir = getWd($clo[MAKEZIP]);
if ($workdir) {
$subdir = $clo[WORKDIR] ?: '';
$srcdir = getConcatPath($workdir, SRCDIR, $subdir);
if (!is_dir($srcdir)) {
output('There is no such source directory "' . $srcdir . '"', true);
}
$zipdir = getConcatPath($workdir, ZIPDIR, $subdir);
if (strpos($workdir, ADIR) === 0) {
$part = explode(DIRECTORY_SEPARATOR, $workdir);
$basename .= '--' . end($part);
unset($part);
}
define('XMLCODE', $basename);
$general_name = str_replace('--', ' | ', $basename);
$general_name = str_replace('-', ' ', $general_name);
$general_name = str_replace('_', ' ', $general_name);
$general_name = ucwords($general_name);
$general_name = str_replace(' | ', '|', $general_name);
define('GENERAL_NAME', $general_name);
$short_name = str_replace('--', '/', $basename);
$short_name = str_replace('-', '_', $short_name);
define('SHORT_NAME', $short_name);
$full_name = '/ocmod.space/' . str_replace('--', '/', $basename);
$full_name = str_replace('-', '_', $full_name);
define('FULL_NAME', $full_name);
$zipfile = getConcatPath($zipdir, str_replace('-', '_', $basename) . ZIPEXT);
if (chkdir($srcdir) && chkdir($zipdir)) {
if (is_file($zipfile)) {
unlink($zipfile);
}
mkzip($srcdir, $zipfile, true);
} else {
output('Can not create dir: ' . $zipdir, true);
}
} else {
output('There is no directory corresponding to number ' . $clo[MAKEZIP], true);
}
} elseif (isset($clo[MAKEFCL]) || isset($clo[EXTRFCL]) || isset($clo[LISTFCL])) {
$fclfile = getConcatPath(FCLDIR, $basename . '.fcl');
if (isset($clo[MAKEFCL])) {
chkdir(FCLDIR);
output(fcl('make', $fclfile, '-f' . fclignore(FCLIGNORE)));
output(hideg($fclfile));
} elseif (isset($clo[EXTRFCL]) || isset($clo[LISTFCL])) {
if (is_file($fclfile . '.g')) {
output(hideg($fclfile . '.g'));
if (is_file($fclfile)) {
if (isset($clo[EXTRFCL])) {
output(fcl('extr', $fclfile, '-f'));
}
if (isset($clo[LISTFCL])) {
output(fcl('list', $fclfile));
}
} else {
output('file "' . $fclfile . '" is missing!', true);
}
} else {
output('file "' . $fclfile . '.g' . '" is missing!', true);
}
}
if (is_file($fclfile)) {
unlink($fclfile);
}
} else {
require_once 'ocmodw.inc/ocmodw.hlp.php';
output('Numbers:');
foreach (numbered() as $idx => $name) {
output('[' . $idx . '] - ' . $name);
}
}
exit(0);