forked from h6ah4i/Google-Search-Console-Archive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcron.php
More file actions
289 lines (256 loc) · 10.4 KB
/
Copy pathcron.php
File metadata and controls
289 lines (256 loc) · 10.4 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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<?php
/**
* Google Search Console Archive
*
* Copyright (C) 2016 : Cyrille Mahieux (c.mahieux@of2m.fr)
* & Vincent Robert (v.robert@of2m.fr) @ Ouest France Multimedia
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
# Bootstrap
require 'bootstrap.php';
echo <<<EOT
Google Search Console Archive
Usage: php cron.php [(integer)days of data history]
Database: {$configuration['database']['username']}@{$configuration['database']['host']}:{$configuration['database']['port']}/{$configuration['database']['database']}
EOT;
# Parameters
$date['from'] = (isset($_GET['start'])) ? $_GET['start'] : date('Y-m-d', (isset($argv[1]) ? strtotime('-' . (int)$argv[1] . ' days') : strtotime('-7 days')));
$date['to'] = (isset($_GET['end'])) ? $_GET['end'] : date('Y-m-d', strtotime('-1 days'));
# Making Credential for API
$credentials = new Google_Auth_AssertionCredentials(
$configuration['api']['login'],
$configuration['api']['scope'],
$configuration['api']['key']
);
# Creating Client & Applying Credentials
$client = new Google_Client();
$client->setAssertionCredentials($credentials);
if ($client->getAuth()->isAccessTokenExpired()) {
$client->getAuth()->refreshTokenWithAssertion();
}
# Variables
$sql = array();
$pages = array();
$queries = array();
$commands = array();
# Starting Webmaster Tools Service
$service = new Google_Service_Webmasters($client);
# Database Object
$database = new Database($configuration);
# Trace
echo PHP_EOL
. 'Calling Search Console API for dates: '
. $date['from']
. ' to '
. $date['to'];
# Iterating each Website
foreach ($configuration['websites'] as $website) {
# Iterating each Device
foreach ($configuration['device'] as $device) {
# Iterating each Days
for ($time = $date['from']; strtotime($time) <= strtotime($date['to']); $time = date('Y-m-d', strtotime($time . ' +1 day'))) {
# WebmasterTools Request Object
$query = new SearchConsole_Query($service);
# Top Countries
if (($data = $query->countries(
$website, $device, array('from' => $time, 'to' => $time)
)) != false) {
# Using Results
foreach ($data->getRows() as $data) {
# SQL Statistics Query
$sql[] = 'INSERT INTO `'
. str_replace(
array('{%device%}', '{%website%}'),
array($device, $website['table']),
$configuration['database']['table']['countries']
)
. '` '
. '(`country`, `impressions`, '
. '`clicks`, `position`, `date`) '
. 'VALUES (\''
. $data->keys[0]
. '\', '
. (integer)$data->impressions . ', '
. (integer)$data->clicks . ', '
. (float)round($data->position, 1) . ', \''
. $data->keys[1] . '\') '
. 'ON DUPLICATE KEY UPDATE impressions = '
. (integer)$data->impressions
. ', clicks = '
. (integer)$data->clicks
. ', position = '
. (float)round($data->position, 1)
. ';';
}
# Trace
echo '.';
} else {
# Trace
echo PHP_EOL
. 'Error with SearchConsole_Query::countries('
. ''
. $website['url']
. ','
. $device
. ','
. $time
. ')';
}
# Everything
if (($data = $query->everything(
$website, $device, array('from' => $time, 'to' => $time)
)) != false) {
# Using Results
foreach ($data->getRows() as $data) {
# SQL Statistics Query
$sql[] = 'INSERT INTO `'
. str_replace('{%website%}', $website['table'],
$configuration['database']['table']['everything']
)
. '` (`query`, `page`, `country`, `device`, '
. ' `impressions`,`clicks`,`position`,`date`) '
. 'VALUES (\''
. $database->_handle()->real_escape_string(
$data->keys[1]
)
. "', '"
. substr(
$database->_handle()->real_escape_string(
str_replace($website['url'], '', $data->keys[0])
), 0, 250
)
. "', '"
. $data->keys[2]
. "', '"
. $data->keys[4]
. '\', '
. (integer)$data->impressions . ', '
. (integer)$data->clicks . ', '
. (float)round($data->position, 1) . ', \''
. $data->keys[3] . '\') '
. 'ON DUPLICATE KEY UPDATE impressions = '
. (integer)$data->impressions
. ', clicks = '
. (integer)$data->clicks
. ', position = '
. (float)round($data->position, 1)
. ';';
}
# Trace
echo '.';
} else {
# Trace
echo PHP_EOL . 'Error with SearchConsole_Query::everything('
. $website['url']
. ','
. $device
. ','
. $time
. ')';
}
# Top Page
if (($data = $query->pages(
$website, $device, array('from' => $time, 'to' => $time)
)) != false) {
# Using Results
foreach ($data->getRows() as $data) {
# SQL Statistics Query
$sql[] = 'INSERT INTO `'
. str_replace(
array('{%device%}', '{%website%}'),
array($device, $website['table']),
$configuration['database']['table']['pages']
)
. '` (`page`,`impressions`,`clicks`,`position`,`date`) '
. 'VALUES (\''
. substr(
$database->_handle()->real_escape_string(
str_replace($website['url'], '', $data->keys[0])
), 0, 250
)
. '\', '
. (integer)$data->impressions . ', '
. (integer)$data->clicks . ', '
. (float)round($data->position, 1) . ', \''
. $data->keys[1] . '\') '
. 'ON DUPLICATE KEY UPDATE impressions = '
. (integer)$data->impressions
. ', clicks = '
. (integer)$data->clicks
. ', position = '
. (float)round($data->position, 1)
. ';';
}
# Trace
echo '.';
} else {
# Trace
echo PHP_EOL
. 'Error with SearchConsole_Query::pages('
. $website['url']
. ','
. $device
. ','
. $time
. ')';
}
# Top Query
if (($data = $query->queries(
$website, $device, array('from' => $time, 'to' => $time)
)) != false) {
foreach ($data->getRows() as $data) {
# SQL Statistics Query
$sql[] = 'INSERT INTO `'
. str_replace(
array('{%device%}', '{%website%}'),
array($device, $website['table']),
$configuration['database']['table']['queries']
)
. '` (`query`,`impressions`,`clicks`,`position`,`date`) '
. ' VALUES (\''
. $database->_handle()->real_escape_string(
$data->keys[0]
)
. '\', '
. (integer)$data->impressions . ', '
. (integer)$data->clicks . ', \''
. (float)round($data->position, 1) . '\', \''
. $data->keys[1] . '\') '
. ' ON DUPLICATE KEY UPDATE impressions = '
. (integer)$data->impressions . ', clicks = '
. (integer)$data->clicks . ', position = '
. (float)round($data->position, 1) . ';';
}
# Trace
echo '.';
} else {
# Trace
echo PHP_EOL
. 'Error with SearchConsole_Query::queries('
. $website['url']
. ','
. $device
. ','
. $time
. ')';
}
}
}
}
# Trace
echo PHP_EOL . 'Inserting into Database ';
# Executing Queries
$database->execute($sql);
echo PHP_EOL . 'End of Script' . PHP_EOL;