Архивация папки и резервное копирование в Облако@Mail.Ru на PHP

| 01.10.2016 | 1 Comment

Архивация папки и резервное копирование в Облако@Mail.Ru на PHP Для резервного копирования целой папки с файлами я использую скрипт на PHP, который можно запускать по крону.

Принцип простой — из указанной папки создается ZIP-архив, а затем этот архив загружается в Облако@Mail.Ru.

PS. Папка со скриптом должна быть доступна для записи.

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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
<?php
 
set_time_limit(60); // максимальное время работы скрипта в секундах
 
$source_folder = '/path/to/folder'; // путь к папке, которую архивируем
//$exclude = array('folder', 'file.txt'); // исключить из архивирования указанные файлы и/или папки
$zip_name = 'backup_'.date('Y-m-d_H-i').'.zip'; // название архива
$mail_user = 'login'; // логин на mail.ru (без "@mail.ru")
$mail_pass = 'password'; // пароль  на mail.ru
$cloud_folder = 'my_backups'; // папка в Облаке, в которую будем загружать архив
 
 
// создание архива
recursiveZip::zipDir($source_folder, $zip_name, (is_array($exclude)?$exclude:array()));
 
$cloud = new CloudMailRu($mail_user, $mail_pass);
 
// авторизация
if (!$cloud->login())
	die('Error: login failed!');
 
// загрузка архива
if ($cloud->loadFile(__DIR__ ."/$zip_name", "/$cloud_folder/$zip_name") == 'error')
	echo 'Error: loading the cloud fails!';
else echo "File uploaded to the <a href='https://cloud.mail.ru/home/$cloud_folder/' target='_blank'>https://cloud.mail.ru/home/$cloud_folder/</a>";
 
// удаление локального арива
unlink($zip_name);
 
 
/* recursive zip */
class recursiveZip {
	static function folderToZip($folder, &$zipFile, $exclusiveLength, $excludeFiles) {
		$handle = opendir($folder);
		while (false !== $f = readdir($handle)) {
			if ($f != '.' && $f != '..') {
				if (!empty($excludeFiles)){
					$continue = 0;
					foreach($excludeFiles as $file)
						if (strpos($f, $file)!==false)
							$continue = 1;
					if ($continue) continue;
				}
				$filePath = "$folder/$f";
				$localPath = substr($filePath, $exclusiveLength);
				if (is_file($filePath))
					$zipFile->addFile($filePath, $localPath);
				elseif (is_dir($filePath)) 
					self::folderToZip($filePath, $zipFile, $exclusiveLength, $excludeFiles);
			}
		}
		closedir($handle);
	}
	static function zipDir($sourcePath, $outZipPath, $excludeFiles=array()) {
		$pathInfo = pathInfo($sourcePath);
		$parentPath = $pathInfo['dirname'];
		$dirName = $pathInfo['basename'];
		$z = new ZipArchive();
		if ($z->open($outZipPath, ZIPARCHIVE::CREATE)!==TRUE) 
			die ("Unable to open <$outZipPath>\n");
		self::folderToZip($sourcePath, $z, strlen("$parentPath/"), $excludeFiles);
		$z->close();
	}
}
 
/* https://github.com/SerjPopov/cloud-mail-ru-php */
class CloudMailRu {
    function __construct($user, $pass)
    {
        $this->user = $user;
        $this->pass = $pass;
        $this->dir = dirname(__FILE__);
        $this->token = '';
        $this->x_page_id = '';
        $this->build = '';
        $this->upload_url = '';
        $this->ch = '';
    }
 
    function __destruct()
    {
        unlink($this->dir . '/cookies.txt');
    }    
 
    function login()
    {
        $url = 'http://auth.mail.ru/cgi-bin/auth?lang=ru_RU&from=authpopup';
 
        $post_data = array(
            "page" => "https://cloud.mail.ru/?from=promo",
            "FailPage" => "",
            "Domain" => "mail.ru",
            "Login" => $this->user,
            "Password" => $this->pass,
            "new_auth_form" => "1"
        );
 
        $this->_curl_init($url);
        $this->_curl_post($post_data);
        if ($this->_curl_exec() !== 'error') {
            if ($this->getToken()) {
                return true;
            } else {
                return false;
            }
        } else {
            return false;
        }
    }
 
    private function getToken()
    {
        $url = 'https://cloud.mail.ru/?from=promo&from=authpopup';
 
        $this->_curl_init($url);
        $result = $this->_curl_exec();
        if ($result !== 'error') {
            $token = self::getTokenFromText($result);
            if ($token == '') {
                return false;
            } else {
                $this->token = $token;
                $this->x_page_id = self::get_x_page_id_FromText($result);
                $this->build = self::get_build_FromText($result);
                $this->upload_url = self::get_upload_url_FromText($result);
                return true;
            }
        } else {
            return false;
        }
    }
 
    function getDir($dir)
    {
        $dir = str_replace('/', '%2F', $dir);
 
        $url = 'https://cloud.mail.ru/api/v2/folder?home=%2F'
                . '&sort={%22type%22%3A%22name%22%2C%22order%22%3A%22asc%22}'
                . '&offset=0'
                . '&limit=500'
                . '&home=' . $dir
                . '&api=2'
                . '&build=' . $this->build
                . '&x-page-id=' . $this->x_page_id
                . '&email=' . $this->user . '%40mail.ru'
                . '&x-email=' . $this->user . '%40mail.ru'
                . '&token=' . $this->token . '&_=1433249148810';
 
        $this->_curl_init($url);
        $result = $this->_curl_exec();
        if ($result !== 'error') {
            return json_decode($result);
        } else {
            return "error";
        }
    }
 
    function addDir($dir)
    {
        $url = 'https://cloud.mail.ru/api/v2/folder/add';
        $dir = str_replace('/', '%2F', $dir);
 
        $post_data = ''
                . 'api=2'
                . '&build=' . $this->build
                . '&conflict=rename'
                . '&email=' . $this->user . '%40mail.ru'
                . '&home=' . $dir
                . '&token=' . $this->token
                . '&x-email=' . $this->user . '%40mail.ru'
                . '&x-page-id=' . $this->x_page_id;
 
        $this->_curl_init($url);
        $this->_curl_post($post_data);
        $result = $this->_curl_exec();
        if ($result !== 'error') {
            return json_decode($result);
        } else {
            return "error";
        }
    }
 
    function loadFileAhdPublish($file_name, $dir_cloud)
    {
        $result_load = $this->loadFile($file_name, $dir_cloud);
        if ($result_load !== "error") {
 
            $result_publish = $this->publishFile($result_load->body);
            if ($result_publish !== "error") {
                if ($result_publish->status == '200') {
                    return 'https://cloud.mail.ru/public/' . $result_publish->body;
                } else {
                    return "error";
                }
            } else {
                return "error";
            }
        } else {
            return "error";
        }
    }
 
    function loadFile($file_name, $dir_cloud)
    {
        $arr = $this->loadFile_to_cloud($file_name);
        if ($arr !== "error") {
 
            $result_ = $this->addFile_to_cloud($arr, $dir_cloud);
            if ($result_ !== "error") {
                return json_decode($result_);
            } else {
                return "error";
            }
        } else {
            return "error";
        }
    }
 
    private function loadFile_to_cloud($file_name)
    {
        $_time = time() . '0246';
 
        $url = $this->upload_url
                . '?cloud_domain=1'
                . '&x-email=' . $this->user . '%40mail.ru'
                . '&fileapi' . $_time;
 
        $post_data = array("file" => "@" . $file_name);
 
        $this->_curl_init($url);
        $this->_curl_post($post_data);
        $result = $this->_curl_exec();
        if ($result !== 'error') {
            $arr = explode(';', $result);
            if (strlen($arr[0]) == 40) {
                $arr[1] = intval($arr[1]);
                return $arr;
            } else {
                return "error";
            }
        } else {
            return "error";
        }
    }
 
    private function addFile_to_cloud($arr, $dir_cloud)
    {
        $url = 'https://cloud.mail.ru/api/v2/file/add';
 
        $post_data = ''
                . 'api=2'
                . '&build=' . $this->build
                . '&conflict=rename'
                . '&email=' . $this->user . '%40mail.ru'
                . '&home=' . $dir_cloud
                . '&hash=' . $arr[0]
                . '&size=' . $arr[1]
                . '&token=' . $this->token
                . '&x-email=' . $this->user . '%40mail.ru'
                . '&x-page-id=' . $this->x_page_id;
 
        $this->_curl_init($url);
        $this->_curl_post($post_data);
        $result_ = $this->_curl_exec();
        if ($result_ !== 'error') {
            return $result_;
        } else {
            return false;
        }
    }
 
    function removeFile_from_cloud($dir_cloud)
    {
        $url = 'https://cloud.mail.ru/api/v2/file/remove';
 
        $post_data = ''
                . 'api=2'
                . '&build=' . $this->build
                . '&email=' . $this->user . '%40mail.ru'
                . '&home=' . $dir_cloud
                . '&token=' . $this->token
                . '&x-email=' . $this->user . '%40mail.ru'
                . '&x-page-id=' . $this->x_page_id;
 
        $this->_curl_init($url);
        $this->_curl_post($post_data);
        $result_ = $this->_curl_exec();
        if ($result_ !== 'error') {
            return $result_;
        } else {
            return false;
        }
    }
 
    function publishFile($file_path)
    {
        $url = 'https://cloud.mail.ru/api/v2/file/publish';
 
        $post_data = ''
                . 'api=2'
                . '&build=' . $this->build
                . '&email=' . $this->user . '%40mail.ru'
                . '&home=' . $file_path
                . '&token=' . $this->token
                . '&x-email=' . $this->user . '%40mail.ru'
                . '&x-page-id=' . $this->x_page_id;
 
        $this->_curl_init($url);
        $this->_curl_post($post_data);
        $result_ = $this->_curl_exec();
        if ($result_ !== 'error') {
            return json_decode($result_);
        } else {
            return false;
        }
    }
 
    //------------------------------
 
    private function _curl_init($url)
    {
        $this->ch = curl_init();
        curl_setopt($this->ch, CURLOPT_URL, $url);
        curl_setopt($this->ch, CURLOPT_REFERER, $url);
        curl_setopt($this->ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17');
        curl_setopt($this->ch, CURLOPT_FOLLOWLOCATION, false);
        curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($this->ch, CURLOPT_COOKIEFILE, $this->dir . '/cookies.txt');
        curl_setopt($this->ch, CURLOPT_COOKIEJAR, $this->dir . '/cookies.txt');  
    }
 
    private function _curl_post($post_data)
    {
        curl_setopt($this->ch, CURLOPT_POST, true);
        curl_setopt($this->ch, CURLOPT_POSTFIELDS, $post_data);
    }
 
    private function _curl_exec()
    {
        $result_ = curl_exec($this->ch);
        $status = curl_errno($this->ch);
        curl_close($this->ch);
        if ($status == 0 && !empty($result_)) {
            return $result_;
        } else {
            return "error";
        }
    }
 
    //-----------------------------
 
    private static function getTokenFromText($str)
    {
        $start = strpos($str, '"csrf"');
        if ($start > 0) {
            $start = $start + 8;
            $str_out = substr($str, $start, 32);
            return $str_out;
        } else {
            return '';
        }
    }
 
    private static function get_x_page_id_FromText($str)
    {
        $start = strpos($str, '"x-page-id": "');
        if ($start > 0) {
            $start = $start + 14;
            $str_out = substr($str, $start, 11);
            return $str_out;
        } else {
            return '';
        }
    }
 
    private static function get_build_FromText($str)
    {
        $start = strpos($str, '"BUILD": "');
        if ($start > 0) {
            $start = $start + 10;
 
            $str_temp = substr($str, $start, 100);
 
            $end = strpos($str, '"');
 
            $str_out = substr($str_temp, 0, $end - 1);
            return $str_out;
        } else {
            return '';
        }
    }
 
    private static function get_upload_url_FromText($str)
    {
        $start = strpos($str, 'mail.ru/upload/"');
        if ($start > 0) {
            $start1 = $start - 50;
            $end1 = $start + 15;
            $lehgth = $end1 - $start1;
            $str_temp = substr($str, $start1, $lehgth);
 
            $start2 = strpos($str_temp, 'https://');
            $str_out = substr($str_temp, $start2, strlen($str_temp) - $start2);
            return $str_out;
        } else {
            return '';
        }
    }
}

Категория: Инструменты / Софт, Программирование

Комментари (1)

Trackback URL | Comments RSS Feed

  1. Здравствуйте
    Знаю что многих интересует вопрос резервного копирования в облако (cloud.mail.ru)
    Для тех, кто хотел бэкапить сайты в облако cloud.mail.ru, создали простой и удобный скрипт с веб панелью, который постоянно обновляется. Также, если у вас есть пожелания, с удовольствием выслушаем и добавим нужный функционал.
    Ссылка на проект https://upxbot.com
    Здесь можно посмотреть скриншоты https://upxbot.com/pages/1-o-produkte
    Для того чтоб бесплатно потестировать скрипт у себя на хостинге/сервере , напишите свою почту,домен, версию пхп на [email protected] ( на 7 дней)

Оставить комментарий