-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
172 lines (153 loc) · 4.19 KB
/
index.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
<?php
require_once __DIR__ . '/bootstrap.php';
$urls = [
// local test pages
// 'http://scanner.loc/local_pages/testwppage.html?bigWAdminID=',
// 'http://scanner.loc/local_pages/dlepage.html',
// 'http://scanner.loc/local_pages/bitrixpage.html',
//
// // other urls
// 'http://www.php.net/manual/ru/gearman.examples-reverse-task.php',
// 'http://google.com',
// 'http://yandex.ru',
// 'http://joomla.org',
// 'http://wordpress.org',
// 'https://github.com',
//
// 'http://citehr.com',
// 'http://bls.gov/home.htm',
// 'http://salary.com',
// 'http://payscale.com',
// 'http://socialsecurity.gov',
// 'http://hewitt.com',
// 'http://dol.gov',
// 'http://humanresources.about.com',
// 'http://dalecarnegie.com',
// 'http://doleta.gov',
// 'http://mercer.com',
// 'http://astd.org',
// 'http://brightscope.com',
// 'http://tmp.com',
// 'http://trinet.com',
'http://www.sitepoint.com',
];
// немного URL с сайта alexa.com из категории Business/HR
//$urls = [
// 'citehr.com',
// 'bls.gov/home.htm',
// 'salary.com',
// 'payscale.com',
// 'socialsecurity.gov',
// 'hewitt.com',
// 'dol.gov',
// 'humanresources.about.com',
// 'shrm.org',
// 'diversityinc.com',
// 'stevepavlina.com/blog/',
// 'osha.gov',
// 'hr.com',
// 'ere.net',
// 'cisin.com',
// 'blr.com',
// 'peopleadmin.com',
// 'wageworks.com',
// 'dalecarnegie.com',
// 'doleta.gov',
// 'mercer.com',
// 'astd.org',
// 'brightscope.com',
// 'tmp.com',
// 'trinet.com',
//];
// DETECT CYCLE!
$loader = new FileLoader();
$scanner = new Scanner($loader, __DIR__ . '/apps.json');
$category = new Category($loader, __DIR__ . '/apps.json');
$db = new \PDO("pgsql:dbname=test;host=localhost", 'postgres', 'postgres');
?>
<html>
<head>
<style>
body {
font-family: monospace;
}
.url {
color: #006600;
width: 50%;
height: 15px;
overflow: hidden;
float: left;
}
.engine {
width: 50%;
overflow: hidden;
}
.separator {
border-bottom: #ccc 1px solid;
margin: 5px;
}
.icon img {
margin-left: 10px;
margin-right: 10px;
width: 15px;
height: 15px;
}
.appType {
color: #ccc;
}
.error {
color: red;
font-weight: bold;
}
</style>
</head>
<body>
<?php
foreach ($urls as $url) {
// проверим - есть ли у нас уже запись по этому сайту. Если есть - не нужно добавлять.
$isset = $db->query("SELECT * FROM site WHERE url = '{$url}'")->fetch(PDO::FETCH_ASSOC);
if (empty($isset)) {
$apps = [
['error' => 'Not parsed'],
];
} else {
$apps = $scanner->detect($url, $isset['headers'], $isset['html']);
// $apps = json_decode($isset['site_data'], true);
}
// AND DISPLAY RESULT
?>
<div>
<div class="url"><?= $url ?></div>
<div class="engine">
<?php
if (empty($apps)) {
echo ' ';
} else {
foreach ($apps as $app) {
if (isset($app['error'])) {
?>
<div class="icon error"><?= $app['error'] ?></div>
<?php
continue;
}
$categories = $app['categories'];
array_walk($categories, function(&$item) use($category) {
$item = $category->getCategoryById($item);
});
?>
<div class="icon">
<img src="http://scanner.loc/images/icons/<?= $app['name'] ?>.png" title="<?= $app['name'] ?>"><?= $app['name'] ?>
<span class="appType">(<?= implode(', ', $categories) ?>)</span>
</div>
<?php
}
}
?>
</div>
</div>
<div class="separator"></div>
<?php
}
?>
</body>
</html>