-
Notifications
You must be signed in to change notification settings - Fork 1
/
CcLinkConverter.php
259 lines (240 loc) · 5.9 KB
/
CcLinkConverter.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
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
<?php
/**
* @copyright Andreas Dirmeier (C) 2018
*
* This file is part of CcGitServer.
*
* CcGitServer is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* CcGitServer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with CcGitServer. If not, see <http://www.gnu.org/licenses/>.
**/
/**
* @file CcLinkConverter.php
* @author Andreas Dirmeier
* @par Language: PHP
*
* Description for class CcLinkConverter
*/
namespace NGitServer;
require_once 'ILinkConverter.php';
require_once 'CcStringUtil.php';
/**
* Default link converter implementation.
* This implementation will setup directies and links to work
* direct match url path and local path without redirection.
*/
class CcLinkConverter implements ILinkConverter
{
private $sRootLink = false;
private $sRootPath = false;
private $sCurrentPath = false;
private $sCurrentLink = false;
/**
* Overwrite or set current stored root link
* @param string $sLink
*/
function setRootLink($sLink)
{
$this->sRootLink = $sLink;
}
/**
* Overwrite or set current stored root path
* @param string $sPath
*/
function setRootPath($sPath)
{
$this->sRootPath = CcStringUtil::cleanPath($sPath);
}
/**
* Overwrite or set current stored active path
* @param string $sPath
*/
function setCurrentPath($sPath)
{
$this->sCurrentPath = CcStringUtil::cleanPath($sPath);
}
/**
* Overwrite or set current stored active link
* @param string $sLink
*/
function setCurrentLink($sLink)
{
$this->sCurrentLink = $sLink;
}
/**
* {@inheritDoc}
* @see ILinkConverter::getRootLink()
*/
function getRootLink()
{
return $this->sRootLink;
}
/**
* {@inheritDoc}
* @see ILinkConverter::getRootPath()
*/
function getRootPath()
{
return $this->sRootPath;
}
/**
* {@inheritDoc}
* @see ILinkConverter::getCurrentPath()
*/
function getCurrentPath()
{
return $this->sCurrentPath;
}
/**
* {@inheritDoc}
* @see ILinkConverter::getCurrentLink()
*/
function getCurrentLink()
{
return $this->sCurrentLink;
}
/**
* @brief This will setup values wich are currently not set
*/
function setupDefault()
{
if($this->getRootPath() == false)
{
if(isset($_SERVER["DOCUMENT_ROOT"])
&& $_SERVER["DOCUMENT_ROOT"] != "")
{
$sRootPath = $_SERVER["DOCUMENT_ROOT"];
$this->setRootPath($sRootPath);
}
else
{
// fallback
$this->setRootPath(dirname(__FILE__));
}
}
if($this->getRootLink() == false)
{
if(isset($_SERVER['HTTP_HOST']))
{
$sRootLink = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http");
$sRootLink .= "://".$_SERVER['HTTP_HOST'];
$this->setRootLink($sRootLink);
}
else
{
$this->setRootLink("http://localhost");
}
}
if($this->getCurrentPath() == false)
{
if(isset($_SERVER['REQUEST_URI']))
{
$this->setCurrentPath($this->convertLinkToPath($_SERVER["REQUEST_URI"]));
}
else
{
$this->setCurrentPath($this->sRootPath);
}
}
if($this->getCurrentLink() == false)
{
if(isset($_SERVER['REQUEST_URI']))
{
$this->setCurrentLink($this->convertPathToLink($_SERVER["REQUEST_URI"]));
}
else
{
$this->setCurrentLink($this->sRootLink);
}
}
return $this->isValid();
}
/**
* {@inheritDoc}
* @see ILinkConverter::isValid()
*/
public function isValid()
{
$bRet = false;
if($this->sCurrentLink &&
$this->sCurrentPath &&
$this->sRootLink &&
$this->sRootPath)
{
$bRet = true;
}
return $bRet;
}
/**
* This method will generate a path to server stored file from http link
* Example:
* https://adirmeier.de/index.php -> /var/www/html/index.php
* @param string $sLink
* @return string|bool Path or false if invalid
*/
public function convertLinkToPath($sLink)
{
$oParsed = parse_url($sLink);
if(isset($oParsed['path']))
{
$sPath = $this->getRootPath()."/".$oParsed['path'];
$sPath = CcStringUtil::cleanPath($sPath);
if($this->isPathValid($sPath))
{
return $sPath;
}
else
{
return false;
}
}
return false;
}
/**
* This method will generate a http link to file from stored server like
* Example:
* /var/www/html/index.php -> https://adirmeier.de/index.php
* @param string $sPath
* @return string|bool Path or false if invalid
*/
public function convertPathToLink($sPath)
{
$oParsed = parse_url($sPath);
if(isset($oParsed['path']))
{
$sPath = CcStringUtil::cleanPath($oParsed['path']);
if(CcStringUtil::startsWith($sPath, $this->getRootPath()))
{
$sPath = substr($sPath, strlen($this->getRootPath()));
}
$sPath = CcStringUtil::removeAllLeading($sPath, "/");
return $this->getRootLink()."/".$sPath;
}
return false;
}
/**
* Check if a path is valid and do not point to an not allowed
* path
* @param string $sPath: string to check
*/
public function isPathValid($sPath)
{
$bRet = false;
$sPath = CcStringUtil::cleanPath($sPath);
$sValidRegEx = "/^".preg_quote($this->getRootPath(),"/")."\/*.*\.git[\/]*/";
if(preg_match($sValidRegEx, $sPath))
{
$bRet = true;
}
return $bRet;
}
}