-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinstall.php
More file actions
128 lines (113 loc) · 4.56 KB
/
install.php
File metadata and controls
128 lines (113 loc) · 4.56 KB
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
<?php
if (!defined('FREEPBX_IS_AUTH')) { die('No direct script access allowed'); }
// License for all code of this FreePBX module can be found in the license file inside the module directory
// Copyright 2013 Schmooze Com Inc.
//
// HELPER FUNCTIONS:
function fw_ari_print_errors($src, $dst, $errors) {
out("error copying files:");
out(sprintf(_("'cp -rf' from src: '%s' to dst: '%s'...details follow"), $src, $dst));
freepbx_log(FPBX_LOG_ERROR, sprintf(_("fw_ari couldn't copy file to %s"),$dst));
foreach ($errors as $error) {
out("$error");
freepbx_log(FPBX_LOG_ERROR, _("cp error output: $error"));
}
}
global $amp_conf;
global $asterisk_conf;
$debug = false;
$dryrun = false;
/** verison_compare that works with freePBX version numbers
* included here because there are some older versions of functions.inc.php that do not have
* it included as it was added during 2.3.0beta1
*/
if (!function_exists('version_compare_freepbx')) {
function version_compare_freepbx($version1, $version2, $op = null) {
$version1 = str_replace("rc","RC", strtolower($version1));
$version2 = str_replace("rc","RC", strtolower($version2));
if (!is_null($op)) {
return version_compare($version1, $version2, $op);
} else {
return version_compare($version1, $version2);
}
}
}
/*
* fw_ari install script
*/
$htdocs_ari_source = $amp_conf['AMPWEBROOT']."/admin/modules/fw_ari/htdocs_ari/*";
$htdocs_ari_dest = $amp_conf['AMPWEBROOT']."/recordings";
if (!file_exists(dirname($htdocs_ari_source))) {
out(sprintf(_("No directory %s, install script not needed"),dirname($htdocs_ari_source)));
return true;
}
$msg = _("installing files to %s..");
// TODO: for some reason the .htaccess is not being copied with the rest????
$src_file[] = $htdocs_ari_source;
$src_file[] = dirname($htdocs_ari_source) . "/.htaccess";
foreach ($src_file as $src) {
outn(sprintf($msg, $htdocs_ari_dest));
$out = array();
exec("cp -rf $src $htdocs_ari_dest 2>&1",$out,$ret);
if ($ret != 0) {
fw_ari_print_errors($src, $htdocs_ari_dest, $out);
out(_("done, see errors below"));
} else {
out(_("done"));
}
}
// Make sure that libfreepbx.javascripts.js is available to ARI
$libfreepbx = $amp_conf['AMPWEBROOT'].'/admin/common/libfreepbx.javascripts.js';
$dest_libfreepbx = $htdocs_ari_dest.'/theme/js/libfreepbx.javascripts.js';
if (file_exists($libfreepbx) && !file_exists($dest_libfreepbx)) {
outn(_("linking libfreepbx.javascripts.js to theme/js.."));
if (link($libfreepbx, $dest_libfreepbx)) {
out(_("ok"));
} else {
out(_("possible error - check warning message"));
}
}
// We now delete the files, this makes sure that if someone had an unprotected system where they have not enabled
// the .htaccess files or otherwise allowed direct access, that these files are not around to possibly cause problems
//
out(_("fw_ari file install done, removing packages from module"));
unset($out);
exec("rm -rf $htdocs_ari_source 2>&1",$out,$ret);
if ($ret != 0) {
out(_("an error occured removing the packaged files"));
} else {
out(_("files removed successfully"));
}
//remove userpaneltab as fw_ari is a module now
$installed_status = array(MODULE_STATUS_ENABLED, MODULE_STATUS_DISABLED);
$module_name = 'userpaneltab';
$userpaneltab_module = module_getinfo($module_name, $installed_status);
if (isset($userpaneltab_module[$module_name])) {
module_delete($module_name,true);
out(sprintf(_("Uninstalling outdated %s module..."), $module_name));
}
$freepbx_conf =& freepbx_conf::create();
$set['category'] = 'System Setup';
$set['module'] = 'fw_ari';
// ARI_ADMIN_USERNAME
$set['value'] = base64_encode(openssl_random_pseudo_bytes(30));;
$set['defaultval'] =& $set['value'];
$set['options'] = '';
$set['name'] = 'User Portal Admin Username';
$set['description'] = 'This is the default admin name used to allow an administrator to login to ARI bypassing all security. Change this to whatever you want, do not forget to change the User Portal Admin Password as well.';
$set['emptyok'] = 1;
$set['readonly'] = 0;
$set['sortorder'] = -120;
$set['type'] = CONF_TYPE_TEXT;
$freepbx_conf->define_conf_setting('ARI_ADMIN_USERNAME',$set,true);
// ARI_ADMIN_PASSWORD
$set['value'] = base64_encode(openssl_random_pseudo_bytes(30));;
$set['defaultval'] =& $set['value'];
$set['options'] = '';
$set['name'] = 'User Portal Admin Password';
$set['description'] = 'This is the default admin password to allow an administrator to login to ARI bypassing all security. Change this to a secure password.';
$set['emptyok'] = 0;
$set['readonly'] = 0;
$set['sortorder'] = -110;
$set['type'] = CONF_TYPE_TEXT;
$freepbx_conf->define_conf_setting('ARI_ADMIN_PASSWORD',$set,true);