-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.php
245 lines (243 loc) · 6.66 KB
/
manage.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
<html>
<head>
<META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Local metachan. Управление тредами.</title>
</head>
<body>
<?php
require 'webloc.inc';
$list_of_alias=loalias($file_alias);
$links = file($file_links,FILE_IGNORE_NEW_LINES);
///////////////////////////////////////////////
// Обработка загруженного файла.
$uploaddir = 'arch/';
if ($_FILES['userfile']['type'] == "application/x-gzip")
{
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploaddir . $_FILES['userfile']['name']))
{
exec($extract_cl."arch/".$_FILES['userfile']['name'],$output);
$mm="Файл успешно загружен.";
}
else
{
$mm="При загрузке файла произошла ошибка.";
};
}
else
{
$mm="Файл не является архивом tar.gz.";
};
if ($_FILES['userfile']['name'] == "") $mm="";
///////////////////////////////////////////////
// Добавление треда.
if (isset($_POST['add_thread']))
{
if ($_POST['thread'] != "")
{
if (file_exists($file_lock))
{
$mm = "Файл ссылок занят другим процессом, попробуйте позже.";
}
else
{
if (! in_array($_POST['thread'],$links))
{
$fd0 = fopen($file_links,"a+");
fwrite($fd0,"\n".$_POST['thread']);
fclose($fd0);
$mm="Тред отправлен в обработку.";
$_POST['thread']="";
}
else
{
$mm="Тред уже добавлен ранее.";
};
};
};
};
///////////////////////////////////////////////
//Удаление треда.
if (isset($_POST['del_thread']))
{
$mm="";
if (! empty($_POST['threadlist']))
{
$asd=array_keys($_POST['threadlist']);
$_POST['threadlist']="";
if (! file_exists($file_lock))
{
foreach ($asd as $sk)
{
$cc="python grab.py del threads/".$sk;
exec($cc,$output);
$mm=$mm."<br>".$output[0]." ".$sk.". ";
$df = explode("_",$sk);
$df_len = sizeof($df);
switch ($df[0])
{
case "tirech" : $s1="2-ch.ru"; break;
case "0chan" : $s1="www.0chan.ru"; break;
case "iichan" : $s1="iichan.ru"; break;
case "uchan" : $s1="uchan.org.ua"; break;
case "longtirech" : $s1="2--ch.ru"; break;
case "pirach" : $s1="2ch.so";break;
};
if ($df_len == 3)
{
$del_thr[] = "http://".$s1."/".$df[1]."/res/".$df[2];
}
else
{
$del_thr[] = "http://".$s1."/_".$df[2]."/res/".$df[3];
};
};
$dt = array_diff($links,$del_thr);
$fd = fopen($file_links,"w+");
foreach ($dt as $tt)
{
fwrite($fd,$tt."\n");
};
fclose($fd);
}
else
{
$mm="Файл ссылок занят другим процессом, попробуйте позже.";
};
};
};
///////////////////////////////////////////////
// Архивация тредов.
if (isset($_POST['archive_thread']))
{
if (! empty($_POST['threadlist']))
{
$asd=array_keys($_POST['threadlist']);
$_POST['threadlist']="";
foreach ($asd as $sk)
{
$cc="python grab.py e threads/".$sk;
exec($cc,$output);
};
};
};
///////////////////////////////////////////////
// Изменение алиасов.
if (isset($_POST['apply_alias']))
{
$fg=$_POST['aliaslist'];
$asd=array_keys($_POST['aliaslist']);
$fd1=fopen($file_alias,"w+");
foreach ($asd as $sk)
{
if (($fg[$sk] !== "") && ($fg[$sk] !== $list_of_alias[$sk]))
{
$list_of_alias[$sk] = $fg[$sk]."\n";
};
if (!empty($list_of_alias[$sk]))
{
fwrite($fd1,$sk." ".$list_of_alias[$sk]);
};
};
fclose($fd1);
$_POST['aliaslist']="";
};
///////////////////////////////////////////////
//Удаление архива
if (isset($_POST['del_arch']))
{
if (! empty($_POST['archlist']))
{
$asd=array_keys($_POST['archlist']);
foreach ($asd as $sk)
{
exec("rm arch/".$sk,$output);
};
};
};
///////////////////////////////////////////////
//Развертывание архива
if (isset($_POST['extract_arch']))
{
if (! empty($_POST['archlist']))
{
$asd=array_keys($_POST['archlist']);
foreach ($asd as $sk)
{
exec($extract_cl."arch/".$sk,$output);
print_r($output);
};
};
};
///////////////////////////////////////////////
//Вывод собщений
echo("<p class=\"stat\">".$mm."</p>");
?>
<p>Введите Url треда:</p>
<form action="manage.php" method="post">
<input type="text" size=35 name="thread"><br>
<input type="submit" name="add_thread" value="Добавить">
</form>
<hr>
<form action="manage.php" method="post">
<?
$files=lfdir('threads','html');
/////////////////////////////////////////////////
//Вывод списка тредов для изменения алиасов и списка для удаления.
foreach ($files as $as)
{
if (! empty($list_of_alias[$as]))
{
$name = $list_of_alias[$as];
}
else
{
$name = $as;
};
if (isset($_POST['alias_thread']))
{
echo $name." <input type=text size=35 name=\"aliaslist[".$as."]\"><br>";
}
else
{
echo "<input type=checkbox name=threadlist[".$as."] value=\"1\">".$name."<br>";
};
};
if (isset($_POST['alias_thread']))
{
echo "<input type=\"submit\" name=\"apply_alias\" value=\"Применить\">";
}
else
{
echo "<input type=\"submit\" name=\"del_thread\" value=\"Удалить\">
<input type=\"submit\" name=\"alias_thread\" value=\"Управление именами\">
<input type=\"submit\" name=\"archive_thread\" value=\"Архивировать\">";
};
/////////////////////////////////////////////////
?>
</form>
<?
$arch_files=lfdir('arch','tar.gz');
if ( $arch_files[0] != "")
{
echo("<hr>
Доступные архивы:
<form action=\"manage.php\" method=\"post\">");
foreach ($arch_files as $as)
{
echo("<input type=checkbox name=archlist[".$as."] value=1><a href=\"arch/".$as." \">".$as."</a><br>");
};
echo("<input type=\"submit\" name=\"del_arch\" value=\"Удалить Архив\">
<input type=\"submit\" name=\"extract_arch\" value=\"Развернуть Архив\">
</form>");
};
?>
<hr>
<form enctype="multipart/form-data" action="manage.php" method="post">
Загрузить архив: <input name="userfile" type="file">
<input type="submit" value="Загрузить">
</form>
<hr>
<a href="./">Вернуться к списку тредов.</a>
</body>
</html>