This repository was archived by the owner on Apr 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller.php
More file actions
executable file
·60 lines (54 loc) · 1.89 KB
/
controller.php
File metadata and controls
executable file
·60 lines (54 loc) · 1.89 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
<?php
/*
* Copyright (c) Codiad & Andr3as, distributed
* as-is and without warranty under the MIT License.
* See http://opensource.org/licenses/MIT for more information.
* This information must remain intact.
*/
error_reporting(0);
require_once('../../common.php');
checkSession();
switch($_GET['action']) {
case 'getConfig':
if (isset($_GET['project']) && isset($_GET['path'])) {
$project = getWorkspacePath($_GET['project']);
$path = getWorkspacePath($_GET['path']);
while ($project !== $path) {
$path = dirname($path);
if (file_exists($path . '/.csslintrc')) {
$content = json_decode(file_get_contents($path . '/.csslintrc'), true);
$content = array("status" => "success", "data" => $content);
echo json_encode($content);
break 2;
}
}
$content = array("status" => "success", "data" => array());
echo json_encode($content);
} else {
echo '{"status":"error","message":"Missing parameter"}';
}
break;
default:
echo '{"status":"error","message":"No Type"}';
break;
}
function getWorkspacePath($path) {
//Security check
if (!Common::checkPath($path)) {
die('{"status":"error","message":"Invalid path"}');
}
if (strpos($path, "/") === 0) {
//Unix absolute path
return $path;
}
if (strpos($path, ":/") !== false) {
//Windows absolute path
return $path;
}
if (strpos($path, ":\\") !== false) {
//Windows absolute path
return $path;
}
return WORKSPACE . "/" . $path;
}
?>