forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDokuWikiSetup.php
More file actions
110 lines (94 loc) · 3.45 KB
/
DokuWikiSetup.php
File metadata and controls
110 lines (94 loc) · 3.45 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
<?php
namespace Hestia\WebApp\Installers\DokuWiki;
use Hestia\System\Util;
use \Hestia\WebApp\Installers\BaseSetup as BaseSetup;
class DokuWikiSetup extends BaseSetup {
protected $appInfo = [
'name' => 'DokuWiki',
'group' => 'wiki',
'enabled' => true,
'version' => 'stable_2020-07-29',
'thumbnail' => 'dokuwiki-logo.svg'
];
protected $appname = 'dokuwiki';
protected $extractsubdir = "/tmp-dokuwiki";
protected $config = [
'form' => [
'wiki_name' => 'text',
'superuser' => 'text',
'real_name' => 'text',
'email' => 'text',
'password' => 'password',
'initial_ACL_policy' => [
'type' => 'select',
'options' => [
'0: Open Wiki (read, write, upload for everyone)', // 0
'1: Public Wiki (read for everyone, write and upload for registered users)', // 1
'2: Closed Wiki (read, write, upload for registered users only)' // 3
],
],
'content_license' => [
'type' => 'select',
'options' => [
'cc-zero: CC0 1.0 Universal',
'publicdomain: Public Domain',
'cc-by: CC Attribution 4.0 International',
'cc-by-sa: CC Attribution-Share Alike 4.0 International',
'gnufdl: GNU Free Documentation License 1.3',
'cc-by-nc: CC Attribution-Noncommercial 4.0 International',
'cc-by-nc-sa: CC Attribution-Noncommercial-Share Alike 4.0 International',
'0: Do not show any license information',
]
],
],
'resources' => [
'archive' => [ 'src' => 'https://github.com/splitbrain/dokuwiki/archive/refs/tags/release_stable_2020-07-29.zip' ],
],
'server' => [
'nginx' => [
'template' => 'default'
],
'php' => [
'supported' => [ '7.3','7.4' ],
]
],
];
public function install(array $options = null, &$status=null)
{
parent::install($options);
parent::setup($options);
//check if ssl is enabled
$this->appcontext->run('v-list-web-domain', [$this->appcontext->user(), $this->domain, 'json'], $status);
$sslEnabled = ($status->json[$this->domain]['SSL'] == 'no' ? 0 : 1);
$webDomain = ($sslEnabled ? "https://" : "http://") . $this->domain . "/";
$this->appcontext->runUser('v-copy-fs-directory',[
$this->getDocRoot($this->extractsubdir . "/dokuwiki-release_stable_2020-07-29/."),
$this->getDocRoot()], $status);
// enable htaccess
$this->appcontext->runUser('v-move-fs-file', [$this->getDocRoot(".htaccess.dist"), $this->getDocRoot(".htaccess")], $status);
$installUrl = $webDomain . "install.php";
$cmd = "curl --request POST "
. ($sslEnabled ? "" : "--insecure " )
. "--url $installUrl "
. "--header 'Content-Type: application/x-www-form-urlencoded' "
. "--data l=en "
. "--data 'd[title]=" . $options['wiki_name'] . "' "
. "--data 'd[acl]=on' "
. "--data 'd[superuser]=" . $options['superuser'] . "' "
. "--data 'd[fullname]=" . $options['real_name'] . "' "
. "--data 'd[email]=" . $options['email'] . "' "
. "--data 'd[password]=" . $options['password'] . "' "
. "--data 'd[confirm]=" . $options['password'] . "' "
. "--data 'd[policy]=" . substr($options['initial_ACL_policy'], 0, 1) . "' "
. "--data 'd[license]=" . explode(":", $options['content_license'])[0] . "' "
. "--data submit=";
exec($cmd, $output, $return_var);
if($return_var > 0){
throw new \Exception(implode( PHP_EOL, $output));
}
// remove temp folder
$this->appcontext->runUser('v-delete-fs-file', [$this->getDocRoot("install.php")], $status);
$this->cleanup();
return ($status->code === 0);
}
}