-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit_api.php
130 lines (100 loc) · 3.27 KB
/
edit_api.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
<?php
define('ACCESS', true);
require '.init.php';
$data = [
'status' => false,
'message' => 'error'
];
if (!isset($_POST['requestApi'])) {
goto end_request;
}
if ($dir == null || $name == null || !is_file(processDirectory($dir . '/' . $name))) {
$data['message'] = 'Đường dẫn không tồn tại';
goto end_request;
}
if (!isFormatText($name) && !isFormatUnknown($name)) {
$data['message'] = 'Tập tin này không phải dạng văn bản';
goto end_request;
}
// thông tin file
$dir = processDirectory($dir);
$path = $dir . '/' . $name;
$content = isset($_POST['content']) ? $_POST['content'] : '';
if (isset($_POST['format'])) {
$formatType = trim($_POST['format']);
switch ($formatType) {
case 'php':
$configFile = __DIR__ . '/.php-cs-fixer.dist.php';
$tempFile = __DIR__ . '/tmp/fixer.txt';
$data = [
'format' => '',
'error' => 'Không thành công! Yêu cầu chạy "composer install"!'
];
if (!empty($content)) {
file_put_contents($tempFile, $content);
@chmod('vendor/bin/php-cs-fixer', 0775);
$result = exec("vendor/bin/php-cs-fixer fix {$tempFile} --config {$configFile}");
if ($result) {
$data['format'] = file_get_contents($tempFile);
$data['error'] = '';
@unlink($tempFile);
}
}
break;
case 'js':
case 'html':
case 'ts':
case 'css':
case 'scss':
case 'json':
case 'yaml':
$opt = [
//'--print-width=1000000',
'--quote-props=preserve'
];
$res = runCommand('prettier ' . implode(' ', $opt) . ' ' . $path);
$data['format'] = $res['out'] ?: $content;
$data['error'] = $res['err'];
break;
default:
$data['format'] = $content;
$data['error'] = '';
}
goto end_request;
}
// luu file
if (!isset($_POST['content'])) {
$data['message'] = 'Chưa nhập nội dung';
goto end_request;
}
$content = $_POST['content'];
$currentOwner = fileowner($path);
if (file_put_contents($path, $content) !== false) {
// fix owner
@chown($path, $currentOwner);
$data['status'] = true;
$data['message'] = 'Lưu lại thành công';
$checkPHP = isset($_POST['check']) ? (bool) $_POST['check'] : false;
if ($checkPHP) {
$error_syntax = 'Lưu thành công! Không thể kiểm tra lỗi';
$isExecute = isFunctionExecEnable();
if ($isExecute) {
@exec(getPathPHP() . ' -c -f -l ' . $path, $output, $value);
if ($value == -1) {
} elseif ($value == 255 || count($output) == 3) {
$error_syntax = 'Lưu thành công! Có lỗi!';
$data['error'] = $output[1];
} else {
$error_syntax = 'Lưu thành công! Không có lỗi';
}
}
$data['message'] = $error_syntax;
}
} else {
$data['message'] = 'Lưu lại thất bại';
}
// response
end_request:
@ob_end_clean();
header('Content-Type: application/json; charset=utf-8');
echo json_encode($data);