Version Description
Download this release
Release Info
| Developer | freediver |
| Plugin | |
| Version | 3.9.10 |
| Comparing to | |
| See all releases | |
Code changes from version 3.9.9 to 3.9.10
- api.php +40 -40
- backup.class.php +1615 -1456
- comment.class.php +42 -42
- core.class.php +606 -440
- helper.class.php +499 -437
- init.php +751 -719
- installer.class.php +751 -744
- lib/dropbox.php +144 -144
- lib/s3.php +1922 -1922
- link.class.php +60 -38
- plugins/cleanup/cleanup.php +176 -175
- plugins/extra_html_example/extra_html_example.php +17 -17
- plugins/search/search.php +129 -129
- post.class.php +344 -344
- readme.txt +3 -16
- stats.class.php +634 -487
- user.class.php +212 -205
- version +1 -1
api.php
CHANGED
|
@@ -1,41 +1,41 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
* api.php
|
| 5 |
-
*
|
| 6 |
-
* ManageWP addons api
|
| 7 |
-
*
|
| 8 |
-
* Copyright (c) 2011 Prelovac Media
|
| 9 |
-
* www.prelovac.com
|
| 10 |
-
**************************************************************/
|
| 11 |
-
if( !function_exists('mmb_add_action')) :
|
| 12 |
-
function mmb_add_action($action = false, $callback = false)
|
| 13 |
-
{
|
| 14 |
-
if (!$action || !$callback)
|
| 15 |
-
return false;
|
| 16 |
-
|
| 17 |
-
global $mmb_actions;
|
| 18 |
-
mmb_function_exists($callback);
|
| 19 |
-
|
| 20 |
-
if (isset($mmb_actions[$action]))
|
| 21 |
-
wp_die('Cannot redeclare ManageWP action "' . $action . '".');
|
| 22 |
-
|
| 23 |
-
$mmb_actions[$action] = $callback;
|
| 24 |
-
}
|
| 25 |
-
endif;
|
| 26 |
-
|
| 27 |
-
if( !function_exists('mmb_function_exists') ) :
|
| 28 |
-
function mmb_function_exists($callback)
|
| 29 |
-
{
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
}
|
| 39 |
-
endif;
|
| 40 |
-
|
| 41 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
* api.php
|
| 5 |
+
*
|
| 6 |
+
* ManageWP addons api
|
| 7 |
+
*
|
| 8 |
+
* Copyright (c) 2011 Prelovac Media
|
| 9 |
+
* www.prelovac.com
|
| 10 |
+
**************************************************************/
|
| 11 |
+
if( !function_exists('mmb_add_action')) :
|
| 12 |
+
function mmb_add_action($action = false, $callback = false)
|
| 13 |
+
{
|
| 14 |
+
if (!$action || !$callback)
|
| 15 |
+
return false;
|
| 16 |
+
|
| 17 |
+
global $mmb_actions;
|
| 18 |
+
mmb_function_exists($callback);
|
| 19 |
+
|
| 20 |
+
if (isset($mmb_actions[$action]))
|
| 21 |
+
wp_die('Cannot redeclare ManageWP action "' . $action . '".');
|
| 22 |
+
|
| 23 |
+
$mmb_actions[$action] = $callback;
|
| 24 |
+
}
|
| 25 |
+
endif;
|
| 26 |
+
|
| 27 |
+
if( !function_exists('mmb_function_exists') ) :
|
| 28 |
+
function mmb_function_exists($callback)
|
| 29 |
+
{
|
| 30 |
+
global $mwp_core;
|
| 31 |
+
if (count($callback) === 2) {
|
| 32 |
+
if (!method_exists($callback[0], $callback[1]))
|
| 33 |
+
wp_die($mwp_core->mwp_dashboard_widget('Information', '', '<p>Class ' . get_class($callback[0]) . ' does not contain <b>"' . $callback[1] . '"</b> function</p>', '', '50%'));
|
| 34 |
+
} else {
|
| 35 |
+
if (!function_exists($callback))
|
| 36 |
+
wp_die($mwp_core->mwp_dashboard_widget('Information', '', '<p>Function <b>"' . $callback . '"</b> does not exists.</p>', '', '50%'));
|
| 37 |
+
}
|
| 38 |
+
}
|
| 39 |
+
endif;
|
| 40 |
+
|
| 41 |
?>
|
backup.class.php
CHANGED
|
@@ -1,1457 +1,1616 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
* backup.class.php
|
| 5 |
-
*
|
| 6 |
-
* Manage Backups
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
* Copyright (c) 2011 Prelovac Media
|
| 10 |
-
* www.prelovac.com
|
| 11 |
-
**************************************************************/
|
| 12 |
-
|
| 13 |
-
class MMB_Backup extends MMB_Core
|
| 14 |
-
{
|
| 15 |
-
var $site_name;
|
| 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 |
-
$before
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
$return =
|
| 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 |
-
if (isset($
|
| 290 |
-
$
|
| 291 |
-
|
| 292 |
-
|
| 293 |
-
|
| 294 |
-
|
| 295 |
-
}
|
| 296 |
-
|
| 297 |
-
if (
|
| 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 |
-
|
| 411 |
-
|
| 412 |
-
|
| 413 |
-
|
| 414 |
-
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
|
| 418 |
-
|
| 419 |
-
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
|
| 423 |
-
|
| 424 |
-
|
| 425 |
-
|
| 426 |
-
|
| 427 |
-
|
| 428 |
-
|
| 429 |
-
|
| 430 |
-
|
| 431 |
-
|
| 432 |
-
|
| 433 |
-
)
|
| 434 |
-
|
| 435 |
-
|
| 436 |
-
|
| 437 |
-
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
|
| 441 |
-
|
| 442 |
-
|
| 443 |
-
|
| 444 |
-
|
| 445 |
-
|
| 446 |
-
|
| 447 |
-
|
| 448 |
-
|
| 449 |
-
|
| 450 |
-
|
| 451 |
-
|
| 452 |
-
|
| 453 |
-
|
| 454 |
-
|
| 455 |
-
|
| 456 |
-
|
| 457 |
-
|
| 458 |
-
|
| 459 |
-
|
| 460 |
-
|
| 461 |
-
|
| 462 |
-
|
| 463 |
-
|
| 464 |
-
|
| 465 |
-
|
| 466 |
-
|
| 467 |
-
|
| 468 |
-
|
| 469 |
-
|
| 470 |
-
|
| 471 |
-
|
| 472 |
-
|
| 473 |
-
|
| 474 |
-
|
| 475 |
-
$
|
| 476 |
-
|
| 477 |
-
|
| 478 |
-
|
| 479 |
-
|
| 480 |
-
|
| 481 |
-
|
| 482 |
-
|
| 483 |
-
|
| 484 |
-
|
| 485 |
-
|
| 486 |
-
|
| 487 |
-
|
| 488 |
-
|
| 489 |
-
|
| 490 |
-
|
| 491 |
-
|
| 492 |
-
|
| 493 |
-
|
| 494 |
-
|
| 495 |
-
|
| 496 |
-
|
| 497 |
-
|
| 498 |
-
|
| 499 |
-
|
| 500 |
-
|
| 501 |
-
|
| 502 |
-
|
| 503 |
-
|
| 504 |
-
}
|
| 505 |
-
}
|
| 506 |
-
|
| 507 |
-
|
| 508 |
-
|
| 509 |
-
|
| 510 |
-
|
| 511 |
-
|
| 512 |
-
|
| 513 |
-
if (
|
| 514 |
-
|
| 515 |
-
|
| 516 |
-
|
| 517 |
-
|
| 518 |
-
|
| 519 |
-
|
| 520 |
-
|
| 521 |
-
|
| 522 |
-
|
| 523 |
-
|
| 524 |
-
|
| 525 |
-
|
| 526 |
-
|
| 527 |
-
}
|
| 528 |
-
|
| 529 |
-
|
| 530 |
-
|
| 531 |
-
|
| 532 |
-
|
| 533 |
-
$
|
| 534 |
-
|
| 535 |
-
|
| 536 |
-
|
| 537 |
-
|
| 538 |
-
|
| 539 |
-
|
| 540 |
-
|
| 541 |
-
|
| 542 |
-
|
| 543 |
-
|
| 544 |
-
|
| 545 |
-
|
| 546 |
-
|
| 547 |
-
|
| 548 |
-
|
| 549 |
-
|
| 550 |
-
|
| 551 |
-
|
| 552 |
-
|
| 553 |
-
|
| 554 |
-
|
| 555 |
-
|
| 556 |
-
|
| 557 |
-
|
| 558 |
-
|
| 559 |
-
|
| 560 |
-
|
| 561 |
-
|
| 562 |
-
|
| 563 |
-
|
| 564 |
-
|
| 565 |
-
|
| 566 |
-
$
|
| 567 |
-
|
| 568 |
-
|
| 569 |
-
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
|
| 573 |
-
|
| 574 |
-
|
| 575 |
-
|
| 576 |
-
|
| 577 |
-
|
| 578 |
-
|
| 579 |
-
|
| 580 |
-
|
| 581 |
-
|
| 582 |
-
|
| 583 |
-
|
| 584 |
-
|
| 585 |
-
|
| 586 |
-
|
| 587 |
-
|
| 588 |
-
|
| 589 |
-
|
| 590 |
-
|
| 591 |
-
|
| 592 |
-
|
| 593 |
-
|
| 594 |
-
|
| 595 |
-
|
| 596 |
-
|
| 597 |
-
|
| 598 |
-
|
| 599 |
-
|
| 600 |
-
|
| 601 |
-
|
| 602 |
-
|
| 603 |
-
|
| 604 |
-
|
| 605 |
-
|
| 606 |
-
|
| 607 |
-
|
| 608 |
-
|
| 609 |
-
|
| 610 |
-
|
| 611 |
-
|
| 612 |
-
|
| 613 |
-
|
| 614 |
-
|
| 615 |
-
|
| 616 |
-
|
| 617 |
-
|
| 618 |
-
|
| 619 |
-
|
| 620 |
-
|
| 621 |
-
|
| 622 |
-
|
| 623 |
-
|
| 624 |
-
|
| 625 |
-
|
| 626 |
-
|
| 627 |
-
|
| 628 |
-
|
| 629 |
-
|
| 630 |
-
}
|
| 631 |
-
|
| 632 |
-
|
| 633 |
-
|
| 634 |
-
|
| 635 |
-
|
| 636 |
-
|
| 637 |
-
|
| 638 |
-
|
| 639 |
-
|
| 640 |
-
|
| 641 |
-
|
| 642 |
-
|
| 643 |
-
|
| 644 |
-
|
| 645 |
-
}
|
| 646 |
-
|
| 647 |
-
|
| 648 |
-
|
| 649 |
-
|
| 650 |
-
|
| 651 |
-
|
| 652 |
-
|
| 653 |
-
|
| 654 |
-
|
| 655 |
-
|
| 656 |
-
|
| 657 |
-
|
| 658 |
-
$
|
| 659 |
-
|
| 660 |
-
|
| 661 |
-
|
| 662 |
-
|
| 663 |
-
|
| 664 |
-
|
| 665 |
-
|
| 666 |
-
|
| 667 |
-
|
| 668 |
-
|
| 669 |
-
|
| 670 |
-
|
| 671 |
-
|
| 672 |
-
|
| 673 |
-
|
| 674 |
-
|
| 675 |
-
|
| 676 |
-
|
| 677 |
-
|
| 678 |
-
|
| 679 |
-
|
| 680 |
-
|
| 681 |
-
|
| 682 |
-
|
| 683 |
-
|
| 684 |
-
|
| 685 |
-
}
|
| 686 |
-
|
| 687 |
-
|
| 688 |
-
|
| 689 |
-
|
| 690 |
-
|
| 691 |
-
|
| 692 |
-
|
| 693 |
-
|
| 694 |
-
|
| 695 |
-
|
| 696 |
-
|
| 697 |
-
|
| 698 |
-
|
| 699 |
-
|
| 700 |
-
|
| 701 |
-
|
| 702 |
-
|
| 703 |
-
if (
|
| 704 |
-
|
| 705 |
-
|
| 706 |
-
|
| 707 |
-
|
| 708 |
-
|
| 709 |
-
|
| 710 |
-
|
| 711 |
-
|
| 712 |
-
|
| 713 |
-
|
| 714 |
-
|
| 715 |
-
|
| 716 |
-
|
| 717 |
-
|
| 718 |
-
|
| 719 |
-
|
| 720 |
-
|
| 721 |
-
|
| 722 |
-
|
| 723 |
-
|
| 724 |
-
|
| 725 |
-
|
| 726 |
-
|
| 727 |
-
|
| 728 |
-
|
| 729 |
-
|
| 730 |
-
|
| 731 |
-
|
| 732 |
-
|
| 733 |
-
|
| 734 |
-
|
| 735 |
-
|
| 736 |
-
|
| 737 |
-
|
| 738 |
-
|
| 739 |
-
|
| 740 |
-
|
| 741 |
-
|
| 742 |
-
|
| 743 |
-
|
| 744 |
-
|
| 745 |
-
|
| 746 |
-
|
| 747 |
-
|
| 748 |
-
|
| 749 |
-
|
| 750 |
-
|
| 751 |
-
|
| 752 |
-
|
| 753 |
-
|
| 754 |
-
|
| 755 |
-
|
| 756 |
-
|
| 757 |
-
$
|
| 758 |
-
|
| 759 |
-
|
| 760 |
-
|
| 761 |
-
|
| 762 |
-
|
| 763 |
-
|
| 764 |
-
|
| 765 |
-
|
| 766 |
-
|
| 767 |
-
|
| 768 |
-
|
| 769 |
-
|
| 770 |
-
|
| 771 |
-
|
| 772 |
-
$
|
| 773 |
-
|
| 774 |
-
|
| 775 |
-
|
| 776 |
-
|
| 777 |
-
|
| 778 |
-
|
| 779 |
-
|
| 780 |
-
|
| 781 |
-
|
| 782 |
-
|
| 783 |
-
|
| 784 |
-
|
| 785 |
-
|
| 786 |
-
|
| 787 |
-
|
| 788 |
-
|
| 789 |
-
|
| 790 |
-
|
| 791 |
-
|
| 792 |
-
|
| 793 |
-
|
| 794 |
-
|
| 795 |
-
|
| 796 |
-
|
| 797 |
-
|
| 798 |
-
|
| 799 |
-
|
| 800 |
-
|
| 801 |
-
|
| 802 |
-
|
| 803 |
-
|
| 804 |
-
|
| 805 |
-
|
| 806 |
-
|
| 807 |
-
|
| 808 |
-
|
| 809 |
-
|
| 810 |
-
|
| 811 |
-
|
| 812 |
-
|
| 813 |
-
|
| 814 |
-
|
| 815 |
-
|
| 816 |
-
|
| 817 |
-
|
| 818 |
-
|
| 819 |
-
|
| 820 |
-
|
| 821 |
-
|
| 822 |
-
|
| 823 |
-
|
| 824 |
-
|
| 825 |
-
|
| 826 |
-
|
| 827 |
-
|
| 828 |
-
|
| 829 |
-
|
| 830 |
-
|
| 831 |
-
|
| 832 |
-
|
| 833 |
-
|
| 834 |
-
|
| 835 |
-
|
| 836 |
-
|
| 837 |
-
|
| 838 |
-
|
| 839 |
-
|
| 840 |
-
|
| 841 |
-
|
| 842 |
-
|
| 843 |
-
|
| 844 |
-
|
| 845 |
-
|
| 846 |
-
|
| 847 |
-
|
| 848 |
-
|
| 849 |
-
|
| 850 |
-
|
| 851 |
-
|
| 852 |
-
|
| 853 |
-
|
| 854 |
-
|
| 855 |
-
if ((
|
| 856 |
-
$
|
| 857 |
-
|
| 858 |
-
|
| 859 |
-
|
| 860 |
-
|
| 861 |
-
|
| 862 |
-
|
| 863 |
-
|
| 864 |
-
|
| 865 |
-
|
| 866 |
-
|
| 867 |
-
|
| 868 |
-
|
| 869 |
-
|
| 870 |
-
|
| 871 |
-
|
| 872 |
-
|
| 873 |
-
|
| 874 |
-
|
| 875 |
-
|
| 876 |
-
|
| 877 |
-
|
| 878 |
-
|
| 879 |
-
|
| 880 |
-
|
| 881 |
-
|
| 882 |
-
|
| 883 |
-
|
| 884 |
-
|
| 885 |
-
|
| 886 |
-
|
| 887 |
-
|
| 888 |
-
|
| 889 |
-
|
| 890 |
-
|
| 891 |
-
|
| 892 |
-
|
| 893 |
-
|
| 894 |
-
if ($this->
|
| 895 |
-
|
| 896 |
-
|
| 897 |
-
|
| 898 |
-
|
| 899 |
-
|
| 900 |
-
|
| 901 |
-
|
| 902 |
-
|
| 903 |
-
|
| 904 |
-
|
| 905 |
-
|
| 906 |
-
|
| 907 |
-
$
|
| 908 |
-
|
| 909 |
-
|
| 910 |
-
|
| 911 |
-
|
| 912 |
-
|
| 913 |
-
|
| 914 |
-
|
| 915 |
-
|
| 916 |
-
|
| 917 |
-
|
| 918 |
-
|
| 919 |
-
|
| 920 |
-
|
| 921 |
-
|
| 922 |
-
|
| 923 |
-
|
| 924 |
-
|
| 925 |
-
|
| 926 |
-
|
| 927 |
-
|
| 928 |
-
|
| 929 |
-
|
| 930 |
-
|
| 931 |
-
|
| 932 |
-
|
| 933 |
-
|
| 934 |
-
|
| 935 |
-
|
| 936 |
-
|
| 937 |
-
|
| 938 |
-
|
| 939 |
-
|
| 940 |
-
|
| 941 |
-
|
| 942 |
-
|
| 943 |
-
|
| 944 |
-
|
| 945 |
-
|
| 946 |
-
|
| 947 |
-
|
| 948 |
-
$
|
| 949 |
-
|
| 950 |
-
|
| 951 |
-
|
| 952 |
-
|
| 953 |
-
|
| 954 |
-
|
| 955 |
-
|
| 956 |
-
|
| 957 |
-
|
| 958 |
-
|
| 959 |
-
|
| 960 |
-
|
| 961 |
-
|
| 962 |
-
|
| 963 |
-
|
| 964 |
-
|
| 965 |
-
|
| 966 |
-
|
| 967 |
-
|
| 968 |
-
|
| 969 |
-
|
| 970 |
-
|
| 971 |
-
|
| 972 |
-
|
| 973 |
-
|
| 974 |
-
|
| 975 |
-
|
| 976 |
-
|
| 977 |
-
|
| 978 |
-
|
| 979 |
-
|
| 980 |
-
|
| 981 |
-
|
| 982 |
-
|
| 983 |
-
|
| 984 |
-
|
| 985 |
-
|
| 986 |
-
|
| 987 |
-
|
| 988 |
-
|
| 989 |
-
|
| 990 |
-
|
| 991 |
-
$
|
| 992 |
-
|
| 993 |
-
|
| 994 |
-
|
| 995 |
-
|
| 996 |
-
|
| 997 |
-
|
| 998 |
-
|
| 999 |
-
$
|
| 1000 |
-
|
| 1001 |
-
|
| 1002 |
-
|
| 1003 |
-
|
| 1004 |
-
|
| 1005 |
-
|
| 1006 |
-
|
| 1007 |
-
|
| 1008 |
-
|
| 1009 |
-
|
| 1010 |
-
|
| 1011 |
-
|
| 1012 |
-
|
| 1013 |
-
|
| 1014 |
-
|
| 1015 |
-
|
| 1016 |
-
|
| 1017 |
-
|
| 1018 |
-
|
| 1019 |
-
|
| 1020 |
-
|
| 1021 |
-
|
| 1022 |
-
|
| 1023 |
-
|
| 1024 |
-
|
| 1025 |
-
|
| 1026 |
-
|
| 1027 |
-
|
| 1028 |
-
|
| 1029 |
-
|
| 1030 |
-
|
| 1031 |
-
|
| 1032 |
-
|
| 1033 |
-
|
| 1034 |
-
|
| 1035 |
-
|
| 1036 |
-
|
| 1037 |
-
|
| 1038 |
-
|
| 1039 |
-
|
| 1040 |
-
|
| 1041 |
-
return
|
| 1042 |
-
|
| 1043 |
-
|
| 1044 |
-
|
| 1045 |
-
|
| 1046 |
-
|
| 1047 |
-
|
| 1048 |
-
|
| 1049 |
-
|
| 1050 |
-
|
| 1051 |
-
|
| 1052 |
-
|
| 1053 |
-
|
| 1054 |
-
|
| 1055 |
-
|
| 1056 |
-
|
| 1057 |
-
|
| 1058 |
-
|
| 1059 |
-
|
| 1060 |
-
|
| 1061 |
-
|
| 1062 |
-
|
| 1063 |
-
|
| 1064 |
-
|
| 1065 |
-
|
| 1066 |
-
|
| 1067 |
-
|
| 1068 |
-
|
| 1069 |
-
|
| 1070 |
-
|
| 1071 |
-
|
| 1072 |
-
|
| 1073 |
-
|
| 1074 |
-
|
| 1075 |
-
|
| 1076 |
-
|
| 1077 |
-
|
| 1078 |
-
|
| 1079 |
-
|
| 1080 |
-
|
| 1081 |
-
|
| 1082 |
-
|
| 1083 |
-
|
| 1084 |
-
|
| 1085 |
-
|
| 1086 |
-
|
| 1087 |
-
|
| 1088 |
-
|
| 1089 |
-
|
| 1090 |
-
|
| 1091 |
-
|
| 1092 |
-
|
| 1093 |
-
|
| 1094 |
-
|
| 1095 |
-
|
| 1096 |
-
|
| 1097 |
-
|
| 1098 |
-
|
| 1099 |
-
|
| 1100 |
-
|
| 1101 |
-
|
| 1102 |
-
|
| 1103 |
-
|
| 1104 |
-
|
| 1105 |
-
|
| 1106 |
-
|
| 1107 |
-
|
| 1108 |
-
|
| 1109 |
-
|
| 1110 |
-
|
| 1111 |
-
|
| 1112 |
-
|
| 1113 |
-
|
| 1114 |
-
|
| 1115 |
-
|
| 1116 |
-
|
| 1117 |
-
|
| 1118 |
-
|
| 1119 |
-
|
| 1120 |
-
|
| 1121 |
-
|
| 1122 |
-
|
| 1123 |
-
$
|
| 1124 |
-
|
| 1125 |
-
|
| 1126 |
-
|
| 1127 |
-
|
| 1128 |
-
|
| 1129 |
-
|
| 1130 |
-
|
| 1131 |
-
|
| 1132 |
-
|
| 1133 |
-
|
| 1134 |
-
|
| 1135 |
-
|
| 1136 |
-
|
| 1137 |
-
|
| 1138 |
-
|
| 1139 |
-
|
| 1140 |
-
|
| 1141 |
-
|
| 1142 |
-
|
| 1143 |
-
|
| 1144 |
-
|
| 1145 |
-
|
| 1146 |
-
|
| 1147 |
-
|
| 1148 |
-
|
| 1149 |
-
|
| 1150 |
-
|
| 1151 |
-
|
| 1152 |
-
|
| 1153 |
-
|
| 1154 |
-
|
| 1155 |
-
|
| 1156 |
-
|
| 1157 |
-
|
| 1158 |
-
|
| 1159 |
-
|
| 1160 |
-
|
| 1161 |
-
|
| 1162 |
-
|
| 1163 |
-
|
| 1164 |
-
|
| 1165 |
-
|
| 1166 |
-
|
| 1167 |
-
|
| 1168 |
-
|
| 1169 |
-
|
| 1170 |
-
|
| 1171 |
-
|
| 1172 |
-
|
| 1173 |
-
|
| 1174 |
-
|
| 1175 |
-
|
| 1176 |
-
|
| 1177 |
-
|
| 1178 |
-
|
| 1179 |
-
|
| 1180 |
-
|
| 1181 |
-
|
| 1182 |
-
|
| 1183 |
-
|
| 1184 |
-
|
| 1185 |
-
|
| 1186 |
-
|
| 1187 |
-
|
| 1188 |
-
|
| 1189 |
-
|
| 1190 |
-
|
| 1191 |
-
|
| 1192 |
-
|
| 1193 |
-
|
| 1194 |
-
|
| 1195 |
-
if
|
| 1196 |
-
|
| 1197 |
-
|
| 1198 |
-
|
| 1199 |
-
|
| 1200 |
-
|
| 1201 |
-
|
| 1202 |
-
|
| 1203 |
-
|
| 1204 |
-
|
| 1205 |
-
|
| 1206 |
-
|
| 1207 |
-
|
| 1208 |
-
|
| 1209 |
-
|
| 1210 |
-
|
| 1211 |
-
|
| 1212 |
-
|
| 1213 |
-
|
| 1214 |
-
|
| 1215 |
-
|
| 1216 |
-
|
| 1217 |
-
|
| 1218 |
-
|
| 1219 |
-
|
| 1220 |
-
|
| 1221 |
-
|
| 1222 |
-
|
| 1223 |
-
|
| 1224 |
-
|
| 1225 |
-
|
| 1226 |
-
|
| 1227 |
-
|
| 1228 |
-
|
| 1229 |
-
|
| 1230 |
-
|
| 1231 |
-
|
| 1232 |
-
|
| 1233 |
-
|
| 1234 |
-
|
| 1235 |
-
|
| 1236 |
-
|
| 1237 |
-
|
| 1238 |
-
|
| 1239 |
-
|
| 1240 |
-
|
| 1241 |
-
|
| 1242 |
-
|
| 1243 |
-
|
| 1244 |
-
|
| 1245 |
-
|
| 1246 |
-
|
| 1247 |
-
|
| 1248 |
-
|
| 1249 |
-
|
| 1250 |
-
|
| 1251 |
-
|
| 1252 |
-
|
| 1253 |
-
|
| 1254 |
-
|
| 1255 |
-
|
| 1256 |
-
|
| 1257 |
-
|
| 1258 |
-
|
| 1259 |
-
|
| 1260 |
-
|
| 1261 |
-
|
| 1262 |
-
|
| 1263 |
-
|
| 1264 |
-
|
| 1265 |
-
|
| 1266 |
-
|
| 1267 |
-
|
| 1268 |
-
|
| 1269 |
-
|
| 1270 |
-
|
| 1271 |
-
|
| 1272 |
-
|
| 1273 |
-
|
| 1274 |
-
|
| 1275 |
-
|
| 1276 |
-
|
| 1277 |
-
|
| 1278 |
-
|
| 1279 |
-
|
| 1280 |
-
|
| 1281 |
-
|
| 1282 |
-
|
| 1283 |
-
|
| 1284 |
-
|
| 1285 |
-
|
| 1286 |
-
|
| 1287 |
-
|
| 1288 |
-
|
| 1289 |
-
if (
|
| 1290 |
-
|
| 1291 |
-
|
| 1292 |
-
|
| 1293 |
-
|
| 1294 |
-
|
| 1295 |
-
|
| 1296 |
-
|
| 1297 |
-
|
| 1298 |
-
|
| 1299 |
-
|
| 1300 |
-
|
| 1301 |
-
|
| 1302 |
-
|
| 1303 |
-
if (
|
| 1304 |
-
$
|
| 1305 |
-
|
| 1306 |
-
|
| 1307 |
-
|
| 1308 |
-
|
| 1309 |
-
|
| 1310 |
-
|
| 1311 |
-
|
| 1312 |
-
|
| 1313 |
-
|
| 1314 |
-
|
| 1315 |
-
|
| 1316 |
-
|
| 1317 |
-
|
| 1318 |
-
|
| 1319 |
-
|
| 1320 |
-
|
| 1321 |
-
|
| 1322 |
-
|
| 1323 |
-
|
| 1324 |
-
|
| 1325 |
-
|
| 1326 |
-
|
| 1327 |
-
|
| 1328 |
-
|
| 1329 |
-
|
| 1330 |
-
|
| 1331 |
-
|
| 1332 |
-
|
| 1333 |
-
|
| 1334 |
-
|
| 1335 |
-
|
| 1336 |
-
|
| 1337 |
-
|
| 1338 |
-
$
|
| 1339 |
-
|
| 1340 |
-
if(
|
| 1341 |
-
$
|
| 1342 |
-
}
|
| 1343 |
-
|
| 1344 |
-
|
| 1345 |
-
|
| 1346 |
-
|
| 1347 |
-
|
| 1348 |
-
|
| 1349 |
-
|
| 1350 |
-
|
| 1351 |
-
|
| 1352 |
-
|
| 1353 |
-
|
| 1354 |
-
}
|
| 1355 |
-
|
| 1356 |
-
|
| 1357 |
-
|
| 1358 |
-
|
| 1359 |
-
|
| 1360 |
-
|
| 1361 |
-
|
| 1362 |
-
|
| 1363 |
-
|
| 1364 |
-
|
| 1365 |
-
|
| 1366 |
-
|
| 1367 |
-
|
| 1368 |
-
|
| 1369 |
-
|
| 1370 |
-
|
| 1371 |
-
|
| 1372 |
-
|
| 1373 |
-
|
| 1374 |
-
|
| 1375 |
-
|
| 1376 |
-
|
| 1377 |
-
|
| 1378 |
-
|
| 1379 |
-
|
| 1380 |
-
|
| 1381 |
-
|
| 1382 |
-
|
| 1383 |
-
|
| 1384 |
-
|
| 1385 |
-
|
| 1386 |
-
|
| 1387 |
-
|
| 1388 |
-
|
| 1389 |
-
|
| 1390 |
-
|
| 1391 |
-
|
| 1392 |
-
|
| 1393 |
-
|
| 1394 |
-
|
| 1395 |
-
|
| 1396 |
-
|
| 1397 |
-
|
| 1398 |
-
|
| 1399 |
-
|
| 1400 |
-
|
| 1401 |
-
|
| 1402 |
-
|
| 1403 |
-
|
| 1404 |
-
|
| 1405 |
-
|
| 1406 |
-
|
| 1407 |
-
|
| 1408 |
-
|
| 1409 |
-
|
| 1410 |
-
|
| 1411 |
-
|
| 1412 |
-
|
| 1413 |
-
|
| 1414 |
-
|
| 1415 |
-
|
| 1416 |
-
|
| 1417 |
-
|
| 1418 |
-
|
| 1419 |
-
|
| 1420 |
-
|
| 1421 |
-
|
| 1422 |
-
|
| 1423 |
-
|
| 1424 |
-
|
| 1425 |
-
|
| 1426 |
-
|
| 1427 |
-
|
| 1428 |
-
|
| 1429 |
-
|
| 1430 |
-
|
| 1431 |
-
|
| 1432 |
-
|
| 1433 |
-
|
| 1434 |
-
|
| 1435 |
-
|
| 1436 |
-
|
| 1437 |
-
|
| 1438 |
-
|
| 1439 |
-
|
| 1440 |
-
|
| 1441 |
-
|
| 1442 |
-
|
| 1443 |
-
|
| 1444 |
-
|
| 1445 |
-
|
| 1446 |
-
|
| 1447 |
-
|
| 1448 |
-
|
| 1449 |
-
|
| 1450 |
-
|
| 1451 |
-
|
| 1452 |
-
|
| 1453 |
-
|
| 1454 |
-
|
| 1455 |
-
|
| 1456 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1457 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
* backup.class.php
|
| 5 |
+
*
|
| 6 |
+
* Manage Backups
|
| 7 |
+
*
|
| 8 |
+
*
|
| 9 |
+
* Copyright (c) 2011 Prelovac Media
|
| 10 |
+
* www.prelovac.com
|
| 11 |
+
**************************************************************/
|
| 12 |
+
|
| 13 |
+
class MMB_Backup extends MMB_Core
|
| 14 |
+
{
|
| 15 |
+
var $site_name;
|
| 16 |
+
var $statuses;
|
| 17 |
+
|
| 18 |
+
function __construct()
|
| 19 |
+
{
|
| 20 |
+
parent::__construct();
|
| 21 |
+
$this->site_name = str_replace("/","-",rtrim($this->remove_http(get_bloginfo('url')),"/"));
|
| 22 |
+
$this->statuses = array(
|
| 23 |
+
'db_dump' => 1,
|
| 24 |
+
'db_zip' => 2,
|
| 25 |
+
'files_zip' => 3,
|
| 26 |
+
's3' => 4,
|
| 27 |
+
'dropbox' => 5,
|
| 28 |
+
'ftp' => 6,
|
| 29 |
+
'email' => 7,
|
| 30 |
+
'finished' => 100
|
| 31 |
+
);
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
function get_backup_settings()
|
| 35 |
+
{
|
| 36 |
+
$backup_settings = get_option('mwp_backup_tasks');
|
| 37 |
+
if (!empty($backup_settings))
|
| 38 |
+
return $backup_settings;
|
| 39 |
+
else
|
| 40 |
+
return false;
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
function set_backup_task($params)
|
| 44 |
+
{
|
| 45 |
+
//$params => [$task_name, $args, $error]
|
| 46 |
+
if (!empty($params)) {
|
| 47 |
+
extract($params);
|
| 48 |
+
|
| 49 |
+
$before = $this->get_backup_settings();
|
| 50 |
+
if (!$before || empty($before))
|
| 51 |
+
$before = array();
|
| 52 |
+
|
| 53 |
+
if (isset($args['remove'])) {
|
| 54 |
+
unset($before[$task_name]);
|
| 55 |
+
$return = array(
|
| 56 |
+
'removed' => true
|
| 57 |
+
);
|
| 58 |
+
} else {
|
| 59 |
+
if(is_array($params['account_info'])){ //only if sends from master first time(secure data)
|
| 60 |
+
$args['account_info'] = $account_info;
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
$before[$task_name]['task_args'] = $args;
|
| 64 |
+
if (strlen($args['schedule']))
|
| 65 |
+
$before[$task_name]['task_args']['next'] = $this->schedule_next($args['type'], $args['schedule']);
|
| 66 |
+
|
| 67 |
+
$return = $before[$task_name];
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
//Update with error
|
| 71 |
+
if ($error) {
|
| 72 |
+
if(is_array($error)){
|
| 73 |
+
$before[$task_name]['task_results'][count($before[$task_name]['task_results'])-1]['error'] = $error['error'];
|
| 74 |
+
} else {
|
| 75 |
+
$before[$task_name]['task_results'][count($before[$task_name]['task_results'])]['error'] = $error;
|
| 76 |
+
}
|
| 77 |
+
}
|
| 78 |
+
|
| 79 |
+
if($time){ //set next result time before backup
|
| 80 |
+
if(is_array($before[$task_name]['task_results'])){
|
| 81 |
+
$before[$task_name]['task_results'] = array_values($before[$task_name]['task_results']);
|
| 82 |
+
}
|
| 83 |
+
$before[$task_name]['task_results'][count($before[$task_name]['task_results'])]['time'] = $time;
|
| 84 |
+
}
|
| 85 |
+
|
| 86 |
+
update_option('mwp_backup_tasks', $before);
|
| 87 |
+
|
| 88 |
+
if ($task_name == 'Backup Now') {
|
| 89 |
+
$result = $this->backup($args, $task_name);
|
| 90 |
+
$backup_settings = $this->get_backup_settings();
|
| 91 |
+
if (is_array($result) && array_key_exists('error', $result)) {
|
| 92 |
+
$return = $result;
|
| 93 |
+
} else {
|
| 94 |
+
$return = $backup_settings[$task_name];
|
| 95 |
+
}
|
| 96 |
+
}
|
| 97 |
+
return $return;
|
| 98 |
+
}
|
| 99 |
+
return false;
|
| 100 |
+
}
|
| 101 |
+
|
| 102 |
+
//Cron check
|
| 103 |
+
function check_backup_tasks()
|
| 104 |
+
{
|
| 105 |
+
$settings = $this->get_backup_settings();
|
| 106 |
+
if (is_array($settings) && !empty($settings)) {
|
| 107 |
+
foreach ($settings as $task_name => $setting) {
|
| 108 |
+
if ($setting['task_args']['next'] && $setting['task_args']['next'] < time()) {
|
| 109 |
+
//if ($setting['task_args']['next'] && $_GET['force_backup']) {
|
| 110 |
+
if($setting['task_args']['url'] && $setting['task_args']['task_id'] && $setting['task_args']['site_key']){
|
| 111 |
+
//Check orphan task
|
| 112 |
+
$check_data = array(
|
| 113 |
+
'task_name' => $task_name,
|
| 114 |
+
'task_id' => $setting['task_args']['task_id'],
|
| 115 |
+
'url' => $setting['task_args']['url'],
|
| 116 |
+
'site_key' => $setting['task_args']['site_key'],
|
| 117 |
+
);
|
| 118 |
+
|
| 119 |
+
$this->validate_task($check_data);
|
| 120 |
+
}
|
| 121 |
+
|
| 122 |
+
//Update task with next schedule
|
| 123 |
+
$this->set_backup_task(array(
|
| 124 |
+
'task_name' => $task_name,
|
| 125 |
+
'args' => $settings[$task_name]['task_args'],
|
| 126 |
+
'time' => time()
|
| 127 |
+
));
|
| 128 |
+
|
| 129 |
+
$result = $this->backup($setting['task_args'], $task_name);
|
| 130 |
+
$error = '';
|
| 131 |
+
if (is_array($result) && array_key_exists('error', $result)) {
|
| 132 |
+
$error = $result;
|
| 133 |
+
$this->set_backup_task(array(
|
| 134 |
+
'task_name' => $task_name,
|
| 135 |
+
'args' => $settings[$task_name]['task_args'],
|
| 136 |
+
'error' => $error
|
| 137 |
+
));
|
| 138 |
+
} else {
|
| 139 |
+
$error = '';
|
| 140 |
+
}
|
| 141 |
+
break; //Only one backup per cron
|
| 142 |
+
}
|
| 143 |
+
}
|
| 144 |
+
}
|
| 145 |
+
|
| 146 |
+
}
|
| 147 |
+
|
| 148 |
+
|
| 149 |
+
|
| 150 |
+
/*
|
| 151 |
+
* If Task Name not set then it's manual backup
|
| 152 |
+
* Backup args:
|
| 153 |
+
* type -> db, full
|
| 154 |
+
* what -> daily, weekly, monthly
|
| 155 |
+
* account_info -> ftp, amazons3, dropbox
|
| 156 |
+
* exclude-> array of paths to exclude from backup
|
| 157 |
+
*/
|
| 158 |
+
|
| 159 |
+
function backup($args, $task_name = false)
|
| 160 |
+
{
|
| 161 |
+
|
| 162 |
+
if (!$args || empty($args))
|
| 163 |
+
return false;
|
| 164 |
+
|
| 165 |
+
extract($args); //extract settings
|
| 166 |
+
|
| 167 |
+
//try increase memory limit
|
| 168 |
+
@ini_set('memory_limit', '1000M');
|
| 169 |
+
@set_time_limit(600); //ten minutes
|
| 170 |
+
|
| 171 |
+
//Remove old backup(s)
|
| 172 |
+
$this->remove_old_backups($task_name);
|
| 173 |
+
|
| 174 |
+
$new_file_path = WP_CONTENT_DIR . "/managewp/backups";
|
| 175 |
+
|
| 176 |
+
if (!file_exists($new_file_path)) {
|
| 177 |
+
if (!mkdir($new_file_path, 0755, true))
|
| 178 |
+
return array(
|
| 179 |
+
'error' => 'Permission denied, make sure you have write permission to wp-content folder.'
|
| 180 |
+
);
|
| 181 |
+
}
|
| 182 |
+
|
| 183 |
+
@file_put_contents($new_file_path . '/index.php', ''); //safe
|
| 184 |
+
|
| 185 |
+
//Delete possible breaked previous backups - don't need it anymore (works only for previous wrokers)
|
| 186 |
+
foreach (glob($new_file_path . "/*.zip") as $filename) {
|
| 187 |
+
$short = basename($filename);
|
| 188 |
+
preg_match('/^wp\-content(.*)/Ui', $short, $matches);
|
| 189 |
+
if ($matches)
|
| 190 |
+
@unlink($filename);
|
| 191 |
+
}
|
| 192 |
+
|
| 193 |
+
//Prepare .zip file name
|
| 194 |
+
$site_name = $this->remove_http(get_bloginfo('url'));
|
| 195 |
+
$site_name = str_replace(array(
|
| 196 |
+
"_",
|
| 197 |
+
"/"
|
| 198 |
+
), array(
|
| 199 |
+
"",
|
| 200 |
+
"-"
|
| 201 |
+
), $site_name);
|
| 202 |
+
|
| 203 |
+
$hash = md5(time());
|
| 204 |
+
$label = $type ? $type : 'manual';
|
| 205 |
+
$backup_file = $new_file_path . '/' . $site_name . '_' . $label . '_' . $what . '_' . date('Y-m-d') . '_' . $hash . '.zip';
|
| 206 |
+
$backup_url = WP_CONTENT_URL . '/managewp/backups/' . $site_name . '_' . $label . '_' . $what . '_' . date('Y-m-d') . '_' . $hash . '.zip';
|
| 207 |
+
|
| 208 |
+
//What to backup - db or full
|
| 209 |
+
if (trim($what) == 'db') {
|
| 210 |
+
//take database backup
|
| 211 |
+
$this->update_status($task_name,$this->statuses['db_dump']);
|
| 212 |
+
$db_result = $this->backup_db();
|
| 213 |
+
if ($db_result == false) {
|
| 214 |
+
return array(
|
| 215 |
+
'error' => 'Failed to backup database.'
|
| 216 |
+
);
|
| 217 |
+
} else if (is_array($db_result) && isset($db_result['error'])) {
|
| 218 |
+
return array(
|
| 219 |
+
'error' => $db_result['error']
|
| 220 |
+
);
|
| 221 |
+
|
| 222 |
+
} else {
|
| 223 |
+
|
| 224 |
+
$this->update_status($task_name,$this->statuses['db_dump'],true);
|
| 225 |
+
|
| 226 |
+
$this->update_status($task_name,$this->statuses['db_zip']);
|
| 227 |
+
|
| 228 |
+
if ($this->mmb_exec('which zip')) {
|
| 229 |
+
chdir(WP_CONTENT_DIR);
|
| 230 |
+
$command = "zip -r $backup_file 'mwp_db'";
|
| 231 |
+
|
| 232 |
+
ob_start();
|
| 233 |
+
$result = $this->mmb_exec($command);
|
| 234 |
+
ob_get_clean();
|
| 235 |
+
} else {
|
| 236 |
+
require_once ABSPATH . '/wp-admin/includes/class-pclzip.php';
|
| 237 |
+
$archive = new PclZip($backup_file);
|
| 238 |
+
$result = $archive->add($db_result, PCLZIP_OPT_REMOVE_PATH, WP_CONTENT_DIR);
|
| 239 |
+
}
|
| 240 |
+
|
| 241 |
+
@unlink($db_result);
|
| 242 |
+
@rmdir(WP_CONTENT_DIR.'/mwp_db');
|
| 243 |
+
if (!$result)
|
| 244 |
+
return array(
|
| 245 |
+
'error' => 'Failed to zip database.'
|
| 246 |
+
);
|
| 247 |
+
$this->update_status($task_name,$this->statuses['db_zip'],true);
|
| 248 |
+
}
|
| 249 |
+
} elseif (trim($what) == 'full') {
|
| 250 |
+
$content_backup = $this->backup_full($task_name,$backup_file, $exclude);
|
| 251 |
+
if (is_array($content_backup) && array_key_exists('error', $content_backup)) {
|
| 252 |
+
return array(
|
| 253 |
+
'error' => $content_backup['error']
|
| 254 |
+
);
|
| 255 |
+
}
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
//Update backup info
|
| 259 |
+
if ($task_name) {
|
| 260 |
+
//backup task (scheduled)
|
| 261 |
+
$backup_settings = $this->get_backup_settings();
|
| 262 |
+
$paths = array();
|
| 263 |
+
$size = ceil(filesize($backup_file) / 1024);
|
| 264 |
+
|
| 265 |
+
if ($size > 1000) {
|
| 266 |
+
$paths['size'] = ceil($size / 1024)."Mb";
|
| 267 |
+
} else {
|
| 268 |
+
$paths['size'] = $size . 'kb';
|
| 269 |
+
}
|
| 270 |
+
|
| 271 |
+
if ($task_name != 'Backup Now') {
|
| 272 |
+
if (!$backup_settings[$task_name]['task_args']['del_host_file']) {
|
| 273 |
+
$paths['server'] = array(
|
| 274 |
+
'file_path' => $backup_file,
|
| 275 |
+
'file_url' => $backup_url
|
| 276 |
+
);
|
| 277 |
+
}
|
| 278 |
+
} else {
|
| 279 |
+
$paths['server'] = array(
|
| 280 |
+
'file_path' => $backup_file,
|
| 281 |
+
'file_url' => $backup_url
|
| 282 |
+
);
|
| 283 |
+
}
|
| 284 |
+
|
| 285 |
+
if (isset($backup_settings[$task_name]['task_args']['account_info']['mwp_ftp'])) {
|
| 286 |
+
$paths['ftp'] = basename($backup_url);
|
| 287 |
+
}
|
| 288 |
+
|
| 289 |
+
if (isset($backup_settings[$task_name]['task_args']['account_info']['mwp_amazon_s3'])) {
|
| 290 |
+
$paths['amazons3'] = basename($backup_url);
|
| 291 |
+
}
|
| 292 |
+
|
| 293 |
+
if (isset($backup_settings[$task_name]['task_args']['account_info']['mwp_dropbox'])) {
|
| 294 |
+
$paths['dropbox'] = basename($backup_url);
|
| 295 |
+
}
|
| 296 |
+
|
| 297 |
+
if ($backup_settings[$task_name]['task_args']['email_backup']) {
|
| 298 |
+
//$paths['email'] = $backup_settings[$task_name]['task_args']['email_backup'];
|
| 299 |
+
$paths['email'] = basename($backup_url);
|
| 300 |
+
}
|
| 301 |
+
|
| 302 |
+
$temp = $backup_settings[$task_name]['task_results'];
|
| 303 |
+
$temp = array_values($temp);
|
| 304 |
+
$paths['time'] = time();
|
| 305 |
+
|
| 306 |
+
if($task_name != 'Backup Now'){
|
| 307 |
+
$paths['status'] = $temp[count($temp)-1]['status'];
|
| 308 |
+
$temp[count($temp)-1] = $paths;
|
| 309 |
+
|
| 310 |
+
} else {
|
| 311 |
+
$temp[count($temp)] = $paths;
|
| 312 |
+
}
|
| 313 |
+
$backup_settings[$task_name]['task_results'] = $temp;
|
| 314 |
+
update_option('mwp_backup_tasks', $backup_settings);
|
| 315 |
+
}
|
| 316 |
+
|
| 317 |
+
|
| 318 |
+
//Additional: Email, ftp, amazon_s3, dropbox...
|
| 319 |
+
if (isset($optimize_tables) && !empty($optimize_tables)) {
|
| 320 |
+
$this->optimize_tables();
|
| 321 |
+
}
|
| 322 |
+
|
| 323 |
+
if ($task_name != 'Backup Now') {
|
| 324 |
+
if (isset($account_info['mwp_ftp']) && !empty($account_info['mwp_ftp'])) {
|
| 325 |
+
$this->update_status($task_name,$this->statuses['ftp']);
|
| 326 |
+
$account_info['mwp_ftp']['backup_file'] = $backup_file;
|
| 327 |
+
$ftp_result = $this->ftp_backup($account_info['mwp_ftp']);
|
| 328 |
+
|
| 329 |
+
if($ftp_result !== true && $del_host_file){
|
| 330 |
+
@unlink($backup_file);
|
| 331 |
+
}
|
| 332 |
+
|
| 333 |
+
if(is_array($ftp_result) && isset($ftp_result['error'])){
|
| 334 |
+
return $ftp_result;
|
| 335 |
+
}
|
| 336 |
+
$this->update_status($task_name,$this->statuses['ftp'],true);
|
| 337 |
+
}
|
| 338 |
+
|
| 339 |
+
if (isset($account_info['mwp_amazon_s3']) && !empty($account_info['mwp_amazon_s3'])) {
|
| 340 |
+
$this->update_status($task_name,$this->statuses['s3']);
|
| 341 |
+
$account_info['mwp_amazon_s3']['backup_file'] = $backup_file;
|
| 342 |
+
$amazons3_result = $this->amazons3_backup($account_info['mwp_amazon_s3']);
|
| 343 |
+
if($amazons3_result !== true && $del_host_file){
|
| 344 |
+
@unlink($backup_file);
|
| 345 |
+
}
|
| 346 |
+
if(is_array($amazons3_result) && isset($amazons3_result['error'])){
|
| 347 |
+
return $amazons3_result;
|
| 348 |
+
}
|
| 349 |
+
$this->update_status($task_name,$this->statuses['s3'],true);
|
| 350 |
+
}
|
| 351 |
+
|
| 352 |
+
if (isset($account_info['mwp_dropbox']) && !empty($account_info['mwp_dropbox'])) {
|
| 353 |
+
$this->update_status($task_name,$this->statuses['dropbox']);
|
| 354 |
+
$account_info['mwp_dropbox']['backup_file'] = $backup_file;
|
| 355 |
+
$dropbox_result = $this->dropbox_backup($account_info['mwp_dropbox']);
|
| 356 |
+
if($dropbox_result !== true && $del_host_file){
|
| 357 |
+
@unlink($backup_file);
|
| 358 |
+
}
|
| 359 |
+
|
| 360 |
+
if(is_array($dropbox_result) && isset($dropbox_result['error'])){
|
| 361 |
+
return $dropbox_result;
|
| 362 |
+
}
|
| 363 |
+
|
| 364 |
+
$this->update_status($task_name,$this->statuses['dropbox'],true);
|
| 365 |
+
}
|
| 366 |
+
|
| 367 |
+
if (isset($email_backup) && is_email($email_backup)) {
|
| 368 |
+
$this->update_status($task_name,$this->statuses['email']);
|
| 369 |
+
$mail_args = array(
|
| 370 |
+
'email' => $email_backup,
|
| 371 |
+
'task_name' => $task_name,
|
| 372 |
+
'file_path' => $backup_file
|
| 373 |
+
);
|
| 374 |
+
$this->email_backup($mail_args);
|
| 375 |
+
$this->update_status($task_name,$this->statuses['email'],true);
|
| 376 |
+
}
|
| 377 |
+
|
| 378 |
+
if ($del_host_file) {
|
| 379 |
+
@unlink($backup_file);
|
| 380 |
+
}
|
| 381 |
+
|
| 382 |
+
} //end additional
|
| 383 |
+
|
| 384 |
+
//$this->update_status($task_name,$this->statuses['finished'],true);
|
| 385 |
+
return $backup_url; //Return url to backup file
|
| 386 |
+
}
|
| 387 |
+
|
| 388 |
+
function backup_full($task_name,$backup_file, $exclude = array())
|
| 389 |
+
{
|
| 390 |
+
$this->update_status($task_name,$this->statuses['db_dump']);
|
| 391 |
+
$db_result = $this->backup_db();
|
| 392 |
+
|
| 393 |
+
if ($db_result == false) {
|
| 394 |
+
return array(
|
| 395 |
+
'error' => 'Failed to backup database.'
|
| 396 |
+
);
|
| 397 |
+
} else if (is_array($db_result) && isset($db_result['error'])) {
|
| 398 |
+
return array(
|
| 399 |
+
'error' => $db_result['error']
|
| 400 |
+
);
|
| 401 |
+
}
|
| 402 |
+
|
| 403 |
+
$this->update_status($task_name,$this->statuses['db_dump'],true);
|
| 404 |
+
|
| 405 |
+
$remove = array(
|
| 406 |
+
"wp-content/managewp/backups",
|
| 407 |
+
"wp-content/".md5('mmb-worker')."/mwp_backups"
|
| 408 |
+
);
|
| 409 |
+
|
| 410 |
+
if ($this->mmb_exec('which zip')) {
|
| 411 |
+
$this->update_status($task_name,$this->statuses['db_zip']);
|
| 412 |
+
//Add database file
|
| 413 |
+
chdir(WP_CONTENT_DIR);
|
| 414 |
+
$command = "zip -r $backup_file 'mwp_db'";
|
| 415 |
+
ob_start();
|
| 416 |
+
$result = $this->mmb_exec($command);
|
| 417 |
+
ob_get_clean();
|
| 418 |
+
@unlink($db_result);
|
| 419 |
+
@rmdir(WP_CONTENT_DIR.'/mwp_db');
|
| 420 |
+
|
| 421 |
+
if (!$result) {
|
| 422 |
+
return array(
|
| 423 |
+
'error' => 'Failed to zip database.'
|
| 424 |
+
);
|
| 425 |
+
}
|
| 426 |
+
|
| 427 |
+
$this->update_status($task_name,$this->statuses['db_zip'],true);
|
| 428 |
+
|
| 429 |
+
chdir(ABSPATH);
|
| 430 |
+
//exclude paths
|
| 431 |
+
$exclude_data = "-x";
|
| 432 |
+
if (!empty($exclude)) {
|
| 433 |
+
foreach ($exclude as $data) {
|
| 434 |
+
if ($data)
|
| 435 |
+
$exclude_data .= " '$data/*'";
|
| 436 |
+
}
|
| 437 |
+
}
|
| 438 |
+
|
| 439 |
+
foreach ($remove as $data) {
|
| 440 |
+
$exclude_data .= " '$data/*'";
|
| 441 |
+
}
|
| 442 |
+
|
| 443 |
+
$this->update_status($task_name,$this->statuses['files_zip']);
|
| 444 |
+
$command = "zip -r $backup_file './' $exclude_data";
|
| 445 |
+
ob_start();
|
| 446 |
+
$result = $this->mmb_exec($command);
|
| 447 |
+
ob_get_clean();
|
| 448 |
+
|
| 449 |
+
if ($result) {
|
| 450 |
+
$this->update_status($task_name,$this->statuses['files_zip'],true);
|
| 451 |
+
return true;
|
| 452 |
+
} else {
|
| 453 |
+
return array(
|
| 454 |
+
'error' => 'Failed to backup files.'
|
| 455 |
+
);
|
| 456 |
+
}
|
| 457 |
+
|
| 458 |
+
} else { //php zip
|
| 459 |
+
define('PCLZIP_TEMPORARY_DIR', WP_CONTENT_DIR.'/managewp/backups/');
|
| 460 |
+
require_once ABSPATH . '/wp-admin/includes/class-pclzip.php';
|
| 461 |
+
$archive = new PclZip($backup_file);
|
| 462 |
+
$this->update_status($task_name,$this->statuses['db_zip']);
|
| 463 |
+
$result_db = $archive->add($db_result, PCLZIP_OPT_REMOVE_PATH, WP_CONTENT_DIR);
|
| 464 |
+
|
| 465 |
+
@unlink($db_result);
|
| 466 |
+
@rmdir(WP_CONTENT_DIR.'/mwp_db');
|
| 467 |
+
|
| 468 |
+
if(!$result_db){
|
| 469 |
+
return array(
|
| 470 |
+
'error' => 'Failed to backup site. Try to enable Zip on your server.'
|
| 471 |
+
);
|
| 472 |
+
}
|
| 473 |
+
$this->update_status($task_name,$this->statuses['db_zip'],true);
|
| 474 |
+
$this->update_status($task_name,$this->statuses['files_zip']);
|
| 475 |
+
$result = $archive->add(ABSPATH, PCLZIP_OPT_REMOVE_PATH, ABSPATH);
|
| 476 |
+
$exclude_data = array();
|
| 477 |
+
if (!empty($exclude) && $result) {
|
| 478 |
+
$exclude_data = array();
|
| 479 |
+
foreach ($exclude as $data) {
|
| 480 |
+
if ($data)
|
| 481 |
+
$exclude_data[] = $data . '/';
|
| 482 |
+
}
|
| 483 |
+
}
|
| 484 |
+
foreach ($remove as $rem) {
|
| 485 |
+
$exclude_data[] = $rem . '/';
|
| 486 |
+
}
|
| 487 |
+
|
| 488 |
+
$result_excl = $archive->delete(PCLZIP_OPT_BY_NAME, $exclude_data);
|
| 489 |
+
|
| 490 |
+
|
| 491 |
+
|
| 492 |
+
if ($result && $result_excl) {
|
| 493 |
+
$this->update_status($task_name,$this->statuses['files_zip'],true);
|
| 494 |
+
return true;
|
| 495 |
+
} else {
|
| 496 |
+
if ($archive->error_code == '-10') {
|
| 497 |
+
return array(
|
| 498 |
+
'error' => 'Failed to backup site. Try increasing memory limit and/or free space on your server.'
|
| 499 |
+
);
|
| 500 |
+
} else {
|
| 501 |
+
return array(
|
| 502 |
+
'error' => 'Failed to backup site. Try to enable Zip on your server.'
|
| 503 |
+
);
|
| 504 |
+
}
|
| 505 |
+
}
|
| 506 |
+
}
|
| 507 |
+
}
|
| 508 |
+
|
| 509 |
+
|
| 510 |
+
function backup_db()
|
| 511 |
+
{
|
| 512 |
+
$db_folder = WP_CONTENT_DIR.'/mwp_db/';
|
| 513 |
+
if (!file_exists($db_folder)) {
|
| 514 |
+
if (!mkdir($db_folder, 0755, true))
|
| 515 |
+
return array(
|
| 516 |
+
'error' => 'Error creating database backup folder. Make sure you have write permissions to your site root folder.'
|
| 517 |
+
);
|
| 518 |
+
}
|
| 519 |
+
|
| 520 |
+
$file = $db_folder . DB_NAME . '.sql';
|
| 521 |
+
$mysqldump = $this->check_mysqldump();
|
| 522 |
+
if (is_array($mysqldump)) {
|
| 523 |
+
$result = $this->backup_db_dump($file, $mysqldump);
|
| 524 |
+
|
| 525 |
+
} else {
|
| 526 |
+
$result = $this->backup_db_php($file);
|
| 527 |
+
}
|
| 528 |
+
return $result;
|
| 529 |
+
}
|
| 530 |
+
|
| 531 |
+
function backup_db_dump($file, $mysqldump)
|
| 532 |
+
{
|
| 533 |
+
global $wpdb;
|
| 534 |
+
$brace = (substr(PHP_OS, 0, 3) == 'WIN') ? '"' : '';
|
| 535 |
+
$command = $brace . $mysqldump['mysqldump'] . $brace . ' --host="' . DB_HOST . '" --user="' . DB_USER . '" --password="' . DB_PASSWORD . '" --add-drop-table --skip-lock-tables "' . DB_NAME . '" > ' . $brace . $file . $brace;
|
| 536 |
+
|
| 537 |
+
ob_start();
|
| 538 |
+
$result = $this->mmb_exec($command);
|
| 539 |
+
ob_get_clean();
|
| 540 |
+
if (!$result) {
|
| 541 |
+
$result = $this->backup_db_php($file);
|
| 542 |
+
return $result;
|
| 543 |
+
}
|
| 544 |
+
|
| 545 |
+
if (filesize($file) == 0 || !is_file($file) || !$result) {
|
| 546 |
+
@unlink($file);
|
| 547 |
+
return false;
|
| 548 |
+
} else {
|
| 549 |
+
return $file;
|
| 550 |
+
}
|
| 551 |
+
}
|
| 552 |
+
|
| 553 |
+
function backup_db_php($file)
|
| 554 |
+
{
|
| 555 |
+
global $wpdb;
|
| 556 |
+
$tables = $wpdb->get_results('SHOW TABLES', ARRAY_N);
|
| 557 |
+
foreach ($tables as $table) {
|
| 558 |
+
//drop existing table
|
| 559 |
+
$dump_data = "DROP TABLE IF EXISTS $table[0];";
|
| 560 |
+
//create table
|
| 561 |
+
$create_table = $wpdb->get_row("SHOW CREATE TABLE $table[0]", ARRAY_N);
|
| 562 |
+
$dump_data .= "\n\n" . $create_table[1] . ";\n\n";
|
| 563 |
+
|
| 564 |
+
$count = $wpdb->get_var("SELECT count(*) FROM $table[0]");
|
| 565 |
+
if ($count > 100)
|
| 566 |
+
$count = ceil($count / 100) - 1;
|
| 567 |
+
else
|
| 568 |
+
$count = 1;
|
| 569 |
+
for ($i = 0; $i < $count; $i++) {
|
| 570 |
+
$low_limit = $i * 100;
|
| 571 |
+
$qry = "SELECT * FROM $table[0] LIMIT $low_limit, 100";
|
| 572 |
+
$rows = $wpdb->get_results($qry, ARRAY_A);
|
| 573 |
+
if (is_array($rows)) {
|
| 574 |
+
foreach ($rows as $row) {
|
| 575 |
+
//insert single row
|
| 576 |
+
$dump_data .= "INSERT INTO $table[0] VALUES(";
|
| 577 |
+
$num_values = count($row);
|
| 578 |
+
$j = 1;
|
| 579 |
+
foreach ($row as $value) {
|
| 580 |
+
$value = addslashes($value);
|
| 581 |
+
$value = preg_replace("/\n/Ui", "\\n", $value);
|
| 582 |
+
$num_values == $j ? $dump_data .= "'" . $value . "'" : $dump_data .= "'" . $value . "', ";
|
| 583 |
+
$j++;
|
| 584 |
+
unset($value);
|
| 585 |
+
}
|
| 586 |
+
$dump_data .= ");\n";
|
| 587 |
+
}
|
| 588 |
+
}
|
| 589 |
+
}
|
| 590 |
+
$dump_data .= "\n\n\n";
|
| 591 |
+
|
| 592 |
+
unset($rows);
|
| 593 |
+
file_put_contents($file, $dump_data, FILE_APPEND);
|
| 594 |
+
unset($dump_data);
|
| 595 |
+
}
|
| 596 |
+
|
| 597 |
+
if (filesize($file) == 0 || !is_file($file)) {
|
| 598 |
+
@unlink($file);
|
| 599 |
+
return false;
|
| 600 |
+
}
|
| 601 |
+
|
| 602 |
+
return $file;
|
| 603 |
+
|
| 604 |
+
}
|
| 605 |
+
|
| 606 |
+
function restore($args)
|
| 607 |
+
{
|
| 608 |
+
global $wpdb;
|
| 609 |
+
if (empty($args)) {
|
| 610 |
+
return false;
|
| 611 |
+
}
|
| 612 |
+
|
| 613 |
+
extract($args);
|
| 614 |
+
@ini_set('memory_limit', '300M');
|
| 615 |
+
@set_time_limit(300);
|
| 616 |
+
|
| 617 |
+
$unlink_file = true; //Delete file after restore
|
| 618 |
+
|
| 619 |
+
//Detect source
|
| 620 |
+
if ($backup_url) {
|
| 621 |
+
//This is for clone (overwrite)
|
| 622 |
+
include_once ABSPATH . 'wp-admin/includes/file.php';
|
| 623 |
+
$backup_file = download_url($backup_url);
|
| 624 |
+
if (is_wp_error($backup_file)) {
|
| 625 |
+
return array(
|
| 626 |
+
'error' => $backup_file->get_error_message()
|
| 627 |
+
);
|
| 628 |
+
}
|
| 629 |
+
$what = 'full';
|
| 630 |
+
} else {
|
| 631 |
+
$tasks = $this->get_backup_settings();
|
| 632 |
+
$task = $tasks[$task_name];
|
| 633 |
+
if (isset($task['task_results'][$result_id]['server'])) {
|
| 634 |
+
$backup_file = $task['task_results'][$result_id]['server']['file_path'];
|
| 635 |
+
$unlink_file = false; //Don't delete file if stored on server
|
| 636 |
+
} elseif (isset($task['task_results'][$result_id]['ftp'])) {
|
| 637 |
+
$ftp_file = $task['task_results'][$result_id]['ftp'];
|
| 638 |
+
$args = $task['task_args']['account_info']['mwp_ftp'];
|
| 639 |
+
$args['backup_file'] = $ftp_file;
|
| 640 |
+
$backup_file = $this->get_ftp_backup($args);
|
| 641 |
+
if ($backup_file == false) {
|
| 642 |
+
return array(
|
| 643 |
+
'error' => 'Failed to download file from FTP'
|
| 644 |
+
);
|
| 645 |
+
}
|
| 646 |
+
} elseif (isset($task['task_results'][$result_id]['amazons3'])) {
|
| 647 |
+
$amazons3_file = $task['task_results'][$result_id]['amazons3'];
|
| 648 |
+
$args = $task['task_args']['account_info']['mwp_amazon_s3'];
|
| 649 |
+
$args['backup_file'] = $ftp_file;
|
| 650 |
+
$backup_file = $this->get_amazons3_backup($args);
|
| 651 |
+
if ($backup_file == false) {
|
| 652 |
+
return array(
|
| 653 |
+
'error' => 'Failed to download file from Amazon S3'
|
| 654 |
+
);
|
| 655 |
+
}
|
| 656 |
+
}
|
| 657 |
+
|
| 658 |
+
$what = $tasks[$task_name]['task_args']['what'];
|
| 659 |
+
}
|
| 660 |
+
|
| 661 |
+
if ($backup_file && file_exists($backup_file)) {
|
| 662 |
+
if ($overwrite) {
|
| 663 |
+
//Keep old db credentials before overwrite
|
| 664 |
+
if (!copy(ABSPATH . 'wp-config.php', ABSPATH . 'mwp-temp-wp-config.php')) {
|
| 665 |
+
@unlink($backup_file);
|
| 666 |
+
return array(
|
| 667 |
+
'error' => 'Error creating wp-config. Please check your write permissions.'
|
| 668 |
+
);
|
| 669 |
+
}
|
| 670 |
+
|
| 671 |
+
$db_host = DB_HOST;
|
| 672 |
+
$db_user = DB_USER;
|
| 673 |
+
$db_password = DB_PASSWORD;
|
| 674 |
+
$home = rtrim(get_option('home'),"/");
|
| 675 |
+
$site_url = get_option('site_url');
|
| 676 |
+
}
|
| 677 |
+
|
| 678 |
+
if ($this->mmb_exec('which unzip')) {
|
| 679 |
+
chdir(ABSPATH);
|
| 680 |
+
$command = "unzip -o $backup_file";
|
| 681 |
+
ob_start();
|
| 682 |
+
$result = $this->mmb_exec($command);
|
| 683 |
+
ob_get_clean();
|
| 684 |
+
|
| 685 |
+
} else {
|
| 686 |
+
require_once ABSPATH . '/wp-admin/includes/class-pclzip.php';
|
| 687 |
+
$archive = new PclZip($backup_file);
|
| 688 |
+
$result = $archive->extract(PCLZIP_OPT_PATH, ABSPATH);
|
| 689 |
+
}
|
| 690 |
+
|
| 691 |
+
if ($unlink_file) {
|
| 692 |
+
@unlink($backup_file);
|
| 693 |
+
}
|
| 694 |
+
|
| 695 |
+
if (!$result) {
|
| 696 |
+
return array(
|
| 697 |
+
'error' => 'Error extracting backup file.'
|
| 698 |
+
);
|
| 699 |
+
}
|
| 700 |
+
|
| 701 |
+
$db_result = $this->restore_db();
|
| 702 |
+
|
| 703 |
+
if (!$db_result) {
|
| 704 |
+
return array(
|
| 705 |
+
'error' => 'Error restoring database.'
|
| 706 |
+
);
|
| 707 |
+
}
|
| 708 |
+
|
| 709 |
+
} else {
|
| 710 |
+
return array(
|
| 711 |
+
'error' => 'Error restoring. Cannot find backup file.'
|
| 712 |
+
);
|
| 713 |
+
}
|
| 714 |
+
|
| 715 |
+
//Replace options and content urls
|
| 716 |
+
if ($overwrite) {
|
| 717 |
+
|
| 718 |
+
//Get New Table prefix
|
| 719 |
+
$new_table_prefix = trim($this->get_table_prefix());
|
| 720 |
+
|
| 721 |
+
//Retrieve old wp_config
|
| 722 |
+
@unlink(ABSPATH . 'wp-config.php');
|
| 723 |
+
|
| 724 |
+
//Replace table prefix
|
| 725 |
+
$lines = file(ABSPATH . 'mwp-temp-wp-config.php');
|
| 726 |
+
foreach ($lines as $line) {
|
| 727 |
+
if (strstr($line, '$table_prefix')) {
|
| 728 |
+
$line = '$table_prefix = "' . $new_table_prefix . '";' . PHP_EOL;
|
| 729 |
+
}
|
| 730 |
+
file_put_contents(ABSPATH . 'wp-config.php', $line, FILE_APPEND);
|
| 731 |
+
}
|
| 732 |
+
|
| 733 |
+
@unlink(ABSPATH . 'mwp-temp-wp-config.php');
|
| 734 |
+
|
| 735 |
+
//Replace options
|
| 736 |
+
$query = "SELECT option_value FROM " . $new_table_prefix . "options WHERE option_name = 'home'";
|
| 737 |
+
$old = $wpdb->get_var($wpdb->prepare($query));
|
| 738 |
+
$old = rtrim($old,"/");
|
| 739 |
+
$query = "UPDATE " . $new_table_prefix . "options SET option_value = '$home' WHERE option_name = 'home'";
|
| 740 |
+
$wpdb->query($wpdb->prepare($query));
|
| 741 |
+
$query = "UPDATE " . $new_table_prefix . "options SET option_value = '$home' WHERE option_name = 'siteurl'";
|
| 742 |
+
$wpdb->query($wpdb->prepare($query));
|
| 743 |
+
//Replace content urls
|
| 744 |
+
$query = "UPDATE " . $new_table_prefix . "posts SET post_content = REPLACE (post_content, '$old','$home') WHERE post_content REGEXP 'src=\"(.*)$old(.*)\"' OR post_content REGEXP 'href=\"(.*)$old(.*)\"'";
|
| 745 |
+
$wpdb->query($wpdb->prepare($query));
|
| 746 |
+
}
|
| 747 |
+
|
| 748 |
+
return true;
|
| 749 |
+
}
|
| 750 |
+
|
| 751 |
+
function restore_db()
|
| 752 |
+
{
|
| 753 |
+
global $wpdb;
|
| 754 |
+
$mysqldump = $this->check_mysqldump();
|
| 755 |
+
$file_path = ABSPATH . 'mwp_db';
|
| 756 |
+
$file_name = glob($file_path . '/*.sql');
|
| 757 |
+
$file_name = $file_name[0];
|
| 758 |
+
|
| 759 |
+
if (is_array($mysqldump)) {
|
| 760 |
+
$brace = (substr(PHP_OS, 0, 3) == 'WIN') ? '"' : '';
|
| 761 |
+
$command = $brace . $mysqldump['mysql'] . $brace . ' --host="' . DB_HOST . '" --user="' . DB_USER . '" --password="' . DB_PASSWORD . '" ' . DB_NAME . ' < ' . $brace . $file_name . $brace;
|
| 762 |
+
|
| 763 |
+
ob_start();
|
| 764 |
+
$result = $this->mmb_exec($command);
|
| 765 |
+
ob_get_clean();
|
| 766 |
+
if (!$result) {
|
| 767 |
+
//try php
|
| 768 |
+
$this->restore_db_php($file_name);
|
| 769 |
+
}
|
| 770 |
+
|
| 771 |
+
} else {
|
| 772 |
+
$this->restore_db_php($file_name);
|
| 773 |
+
}
|
| 774 |
+
|
| 775 |
+
@unlink($file_name);
|
| 776 |
+
return true;
|
| 777 |
+
}
|
| 778 |
+
|
| 779 |
+
function restore_db_php($file_name)
|
| 780 |
+
{
|
| 781 |
+
$current_query = '';
|
| 782 |
+
// Read in entire file
|
| 783 |
+
$lines = file($file_name);
|
| 784 |
+
// Loop through each line
|
| 785 |
+
foreach ($lines as $line) {
|
| 786 |
+
// Skip it if it's a comment
|
| 787 |
+
if (substr($line, 0, 2) == '--' || $line == '')
|
| 788 |
+
continue;
|
| 789 |
+
|
| 790 |
+
// Add this line to the current query
|
| 791 |
+
$current_query .= $line;
|
| 792 |
+
// If it has a semicolon at the end, it's the end of the query
|
| 793 |
+
if (substr(trim($line), -1, 1) == ';') {
|
| 794 |
+
// Perform the query
|
| 795 |
+
$result = $wpdb->query($current_query);
|
| 796 |
+
if ($result === false)
|
| 797 |
+
return FALSE;
|
| 798 |
+
// Reset temp variable to empty
|
| 799 |
+
$current_query = '';
|
| 800 |
+
}
|
| 801 |
+
}
|
| 802 |
+
|
| 803 |
+
@unlink($file_name);
|
| 804 |
+
return true;
|
| 805 |
+
}
|
| 806 |
+
|
| 807 |
+
function get_table_prefix()
|
| 808 |
+
{
|
| 809 |
+
$lines = file(ABSPATH . 'wp-config.php');
|
| 810 |
+
foreach ($lines as $line) {
|
| 811 |
+
if (strstr($line, '$table_prefix')) {
|
| 812 |
+
$pattern = "/(\'|\")[^(\'|\")]*/";
|
| 813 |
+
preg_match($pattern, $line, $matches);
|
| 814 |
+
$prefix = substr($matches[0], 1);
|
| 815 |
+
return $prefix;
|
| 816 |
+
break;
|
| 817 |
+
}
|
| 818 |
+
}
|
| 819 |
+
return 'wp_'; //default
|
| 820 |
+
}
|
| 821 |
+
|
| 822 |
+
function optimize_tables()
|
| 823 |
+
{
|
| 824 |
+
global $wpdb;
|
| 825 |
+
$query = 'SHOW TABLE STATUS FROM ' . DB_NAME;
|
| 826 |
+
$tables = $wpdb->get_results($wpdb->prepare($query), ARRAY_A);
|
| 827 |
+
foreach ($tables as $table) {
|
| 828 |
+
if (in_array($table['Engine'], array(
|
| 829 |
+
'MyISAM',
|
| 830 |
+
'ISAM',
|
| 831 |
+
'HEAP',
|
| 832 |
+
'MEMORY',
|
| 833 |
+
'ARCHIVE'
|
| 834 |
+
)))
|
| 835 |
+
$table_string .= $table['Name'] . ",";
|
| 836 |
+
elseif ($table['Engine'] == 'InnoDB') {
|
| 837 |
+
$optimize = $wpdb->query("ALTER TABLE {$table['Name']} ENGINE=InnoDB");
|
| 838 |
+
}
|
| 839 |
+
}
|
| 840 |
+
|
| 841 |
+
$table_string = rtrim($table_string);
|
| 842 |
+
$optimize = $wpdb->query("OPTIMIZE TABLE $table_string");
|
| 843 |
+
|
| 844 |
+
return $optimize ? true : false;
|
| 845 |
+
}
|
| 846 |
+
|
| 847 |
+
### Function: Auto Detect MYSQL and MYSQL Dump Paths
|
| 848 |
+
function check_mysqldump()
|
| 849 |
+
{
|
| 850 |
+
global $wpdb;
|
| 851 |
+
$paths = array(
|
| 852 |
+
'mysq' => '',
|
| 853 |
+
'mysqldump' => ''
|
| 854 |
+
);
|
| 855 |
+
if (substr(PHP_OS, 0, 3) == 'WIN') {
|
| 856 |
+
$mysql_install = $wpdb->get_row("SHOW VARIABLES LIKE 'basedir'");
|
| 857 |
+
if ($mysql_install) {
|
| 858 |
+
$install_path = str_replace('\\', '/', $mysql_install->Value);
|
| 859 |
+
$paths['mysql'] = $install_path . 'bin/mysql.exe';
|
| 860 |
+
$paths['mysqldump'] = $install_path . 'bin/mysqldump.exe';
|
| 861 |
+
} else {
|
| 862 |
+
$paths['mysql'] = 'mysql.exe';
|
| 863 |
+
$paths['mysqldump'] = 'mysqldump.exe';
|
| 864 |
+
}
|
| 865 |
+
} else {
|
| 866 |
+
if ($this->check_sys()) {
|
| 867 |
+
$paths['mysql'] = $this->mmb_exec('which mysql', true);
|
| 868 |
+
$paths['mysqldump'] = $this->mmb_exec('which mysqldump', true);
|
| 869 |
+
} else {
|
| 870 |
+
$paths['mysql'] = 'mysql';
|
| 871 |
+
$paths['mysqldump'] = 'mysqldump';
|
| 872 |
+
}
|
| 873 |
+
}
|
| 874 |
+
|
| 875 |
+
if (!@file_exists(stripslashes($paths['mysqldump']))) {
|
| 876 |
+
return false;
|
| 877 |
+
}
|
| 878 |
+
if (!@file_exists(stripslashes($paths['mysql']))) {
|
| 879 |
+
return false;
|
| 880 |
+
}
|
| 881 |
+
|
| 882 |
+
return $paths;
|
| 883 |
+
}
|
| 884 |
+
|
| 885 |
+
//Check if exec, system, passthru functions exist
|
| 886 |
+
function check_sys()
|
| 887 |
+
{
|
| 888 |
+
if ($this->mmb_function_exists('exec'))
|
| 889 |
+
return 'exec';
|
| 890 |
+
|
| 891 |
+
if ($this->mmb_function_exists('system'))
|
| 892 |
+
return 'system';
|
| 893 |
+
|
| 894 |
+
if ($this->mmb_function_exists('passhtru'))
|
| 895 |
+
return 'passthru';
|
| 896 |
+
|
| 897 |
+
return false;
|
| 898 |
+
|
| 899 |
+
}
|
| 900 |
+
|
| 901 |
+
function mmb_exec($command, $string = false)
|
| 902 |
+
{
|
| 903 |
+
if ($command == '')
|
| 904 |
+
return false;
|
| 905 |
+
|
| 906 |
+
if ($this->mmb_function_exists('exec')) {
|
| 907 |
+
$log = @exec($command, $output, $return);
|
| 908 |
+
|
| 909 |
+
if ($string)
|
| 910 |
+
return $log;
|
| 911 |
+
return $return ? false : true;
|
| 912 |
+
} elseif ($this->mmb_function_exists('system')) {
|
| 913 |
+
$log = @system($command, $return);
|
| 914 |
+
|
| 915 |
+
if ($string)
|
| 916 |
+
return $log;
|
| 917 |
+
return $return ? false : true;
|
| 918 |
+
} elseif ($this->mmb_function_exists('passthru')) {
|
| 919 |
+
$log = passthru($command, $return);
|
| 920 |
+
|
| 921 |
+
return $return ? false : true;
|
| 922 |
+
} else {
|
| 923 |
+
return false;
|
| 924 |
+
}
|
| 925 |
+
}
|
| 926 |
+
|
| 927 |
+
function check_backup_compat()
|
| 928 |
+
{
|
| 929 |
+
$reqs = array();
|
| 930 |
+
if (strpos($_SERVER['DOCUMENT_ROOT'], '/') === 0) {
|
| 931 |
+
$reqs['Server OS']['status'] = 'Linux (or compatible)';
|
| 932 |
+
$reqs['Server OS']['pass'] = true;
|
| 933 |
+
} else {
|
| 934 |
+
$reqs['Server OS']['status'] = 'Windows';
|
| 935 |
+
$reqs['Server OS']['pass'] = false;
|
| 936 |
+
$pass = false;
|
| 937 |
+
}
|
| 938 |
+
$reqs['PHP Version']['status'] = phpversion();
|
| 939 |
+
if ((float) phpversion() >= 5.1) {
|
| 940 |
+
$reqs['PHP Version']['pass'] = true;
|
| 941 |
+
} else {
|
| 942 |
+
$reqs['PHP Version']['pass'] = false;
|
| 943 |
+
$pass = false;
|
| 944 |
+
}
|
| 945 |
+
|
| 946 |
+
|
| 947 |
+
if (is_writable(WP_CONTENT_DIR)) {
|
| 948 |
+
$reqs['Backup Folder']['status'] = "writable";
|
| 949 |
+
$reqs['Backup Folder']['pass'] = true;
|
| 950 |
+
} else {
|
| 951 |
+
$reqs['Backup Folder']['status'] = "not writable";
|
| 952 |
+
$reqs['Backup Folder']['pass'] = false;
|
| 953 |
+
}
|
| 954 |
+
|
| 955 |
+
|
| 956 |
+
$file_path = WP_CONTENT_DIR . "managewp/backups";
|
| 957 |
+
$reqs['Backup Folder']['status'] .= ' (' . $file_path . ')';
|
| 958 |
+
|
| 959 |
+
if ($func = $this->check_sys()) {
|
| 960 |
+
$reqs['Execute Function']['status'] = $func;
|
| 961 |
+
$reqs['Execute Function']['pass'] = true;
|
| 962 |
+
} else {
|
| 963 |
+
$reqs['Execute Function']['status'] = "not found";
|
| 964 |
+
$reqs['Execute Function']['info'] = "(will try with PHP)";
|
| 965 |
+
$reqs['Execute Function']['pass'] = false;
|
| 966 |
+
}
|
| 967 |
+
|
| 968 |
+
if ($this->mmb_exec('which zip')) {
|
| 969 |
+
$reqs['Zip']['status'] = "enabled";
|
| 970 |
+
$reqs['Zip']['pass'] = true;
|
| 971 |
+
} else {
|
| 972 |
+
$reqs['Zip']['status'] = "not found";
|
| 973 |
+
$reqs['Zip']['info'] = "(will try with PHP pclZip class)";
|
| 974 |
+
$reqs['Zip']['pass'] = false;
|
| 975 |
+
}
|
| 976 |
+
|
| 977 |
+
if ($this->mmb_exec('which unzip')) {
|
| 978 |
+
$reqs['Unzip']['status'] = "enabled";
|
| 979 |
+
$reqs['Unzip']['pass'] = true;
|
| 980 |
+
} else {
|
| 981 |
+
$reqs['Unzip']['status'] = "not found";
|
| 982 |
+
$reqs['Unzip']['info'] = "(will try with PHP pclZip class)";
|
| 983 |
+
$reqs['Unzip']['pass'] = false;
|
| 984 |
+
}
|
| 985 |
+
if (is_array($this->check_mysqldump())) {
|
| 986 |
+
$reqs['MySQL Dump']['status'] = "enabled";
|
| 987 |
+
$reqs['MySQL Dump']['pass'] = true;
|
| 988 |
+
} else {
|
| 989 |
+
$reqs['MySQL Dump']['status'] = "not found";
|
| 990 |
+
$reqs['MySQL Dump']['info'] = "(will try PHP)";
|
| 991 |
+
$reqs['MySQL Dump']['pass'] = false;
|
| 992 |
+
}
|
| 993 |
+
|
| 994 |
+
return $reqs;
|
| 995 |
+
}
|
| 996 |
+
|
| 997 |
+
function email_backup($args)
|
| 998 |
+
{
|
| 999 |
+
$email = $args['email'];
|
| 1000 |
+
$backup_file = $args['file_path'];
|
| 1001 |
+
$task_name = isset($args['task_name']) ? $args['task_name'] . ' on ' : '';
|
| 1002 |
+
if (file_exists($backup_file) && $email) {
|
| 1003 |
+
$attachments = array(
|
| 1004 |
+
$backup_file
|
| 1005 |
+
);
|
| 1006 |
+
$headers = 'From: ManageWP <no-reply@managewp.com>' . "\r\n";
|
| 1007 |
+
$subject = "ManageWP - " . $task_name . " - ".$this->site_name;
|
| 1008 |
+
ob_start();
|
| 1009 |
+
wp_mail($email, $subject, $subject, $headers, $attachments);
|
| 1010 |
+
ob_end_clean();
|
| 1011 |
+
|
| 1012 |
+
}
|
| 1013 |
+
|
| 1014 |
+
return true;
|
| 1015 |
+
|
| 1016 |
+
}
|
| 1017 |
+
|
| 1018 |
+
function ftp_backup($args)
|
| 1019 |
+
{
|
| 1020 |
+
extract($args);
|
| 1021 |
+
//Args: $ftp_username, $ftp_password, $ftp_hostname, $backup_file, $ftp_remote_folder, $ftp_site_folder
|
| 1022 |
+
if($ftp_ssl ){
|
| 1023 |
+
if (function_exists('ftp_ssl_connect')) {
|
| 1024 |
+
$conn_id = ftp_ssl_connect($ftp_hostname);
|
| 1025 |
+
} else {
|
| 1026 |
+
return array(
|
| 1027 |
+
'error' => 'Your server doesn\'t support SFTP',
|
| 1028 |
+
'partial' => 1
|
| 1029 |
+
);
|
| 1030 |
+
}
|
| 1031 |
+
} else {
|
| 1032 |
+
if (function_exists('ftp_connect')) {
|
| 1033 |
+
$conn_id = ftp_connect($ftp_hostname);
|
| 1034 |
+
if ($conn_id === false) {
|
| 1035 |
+
return array(
|
| 1036 |
+
'error' => 'Failed to connect to ' . $ftp_hostname,
|
| 1037 |
+
'partial' => 1
|
| 1038 |
+
);
|
| 1039 |
+
}
|
| 1040 |
+
} else {
|
| 1041 |
+
return array(
|
| 1042 |
+
'error' => 'Your server doesn\'t support FTP',
|
| 1043 |
+
'partial' => 1
|
| 1044 |
+
);
|
| 1045 |
+
}
|
| 1046 |
+
}
|
| 1047 |
+
$login = @ftp_login($conn_id, $ftp_username, $ftp_password);
|
| 1048 |
+
if ($login === false) {
|
| 1049 |
+
return array(
|
| 1050 |
+
'error' => 'FTP login failed for ' . $ftp_username . ', ' . $ftp_password,
|
| 1051 |
+
'partial' => 1
|
| 1052 |
+
);
|
| 1053 |
+
}
|
| 1054 |
+
|
| 1055 |
+
@ftp_mkdir($conn_id, $ftp_remote_folder);
|
| 1056 |
+
if($ftp_site_folder){
|
| 1057 |
+
$ftp_remote_folder .= '/'.$this->site_name;
|
| 1058 |
+
}
|
| 1059 |
+
@ftp_mkdir($conn_id, $ftp_remote_folder);
|
| 1060 |
+
|
| 1061 |
+
$upload = @ftp_put($conn_id, $ftp_remote_folder . '/' . basename($backup_file), $backup_file, FTP_BINARY);
|
| 1062 |
+
|
| 1063 |
+
if($upload === false){ //Try ascii
|
| 1064 |
+
$upload = @ftp_put($conn_id, $ftp_remote_folder . '/' . basename($backup_file), $backup_file, FTP_ASCII);
|
| 1065 |
+
}
|
| 1066 |
+
ftp_close($conn_id);
|
| 1067 |
+
|
| 1068 |
+
if ($upload === false) {
|
| 1069 |
+
return array(
|
| 1070 |
+
'error' => 'Failed to upload file to FTP. Please check your specified path.',
|
| 1071 |
+
'partial' => 1
|
| 1072 |
+
);
|
| 1073 |
+
}
|
| 1074 |
+
|
| 1075 |
+
return true;
|
| 1076 |
+
}
|
| 1077 |
+
|
| 1078 |
+
function remove_ftp_backup($args)
|
| 1079 |
+
{
|
| 1080 |
+
extract($args);
|
| 1081 |
+
//Args: $ftp_username, $ftp_password, $ftp_hostname, $backup_file, $ftp_remote_folder
|
| 1082 |
+
if ($ftp_ssl && function_exists('ftp_ssl_connect')) {
|
| 1083 |
+
$conn_id = ftp_ssl_connect($ftp_hostname);
|
| 1084 |
+
} else if (function_exists('ftp_connect')) {
|
| 1085 |
+
$conn_id = ftp_connect($ftp_hostname);
|
| 1086 |
+
}
|
| 1087 |
+
|
| 1088 |
+
if($conn_id){
|
| 1089 |
+
$login = @ftp_login($conn_id, $ftp_username, $ftp_password);
|
| 1090 |
+
if($ftp_site_folder)
|
| 1091 |
+
$ftp_remote_folder .= '/'.$this->site_name;
|
| 1092 |
+
|
| 1093 |
+
$delete = ftp_delete($conn_id, $ftp_remote_folder . '/' . $backup_file);
|
| 1094 |
+
|
| 1095 |
+
ftp_close($conn_id);
|
| 1096 |
+
}
|
| 1097 |
+
|
| 1098 |
+
}
|
| 1099 |
+
|
| 1100 |
+
function get_ftp_backup($args)
|
| 1101 |
+
{
|
| 1102 |
+
extract($args);
|
| 1103 |
+
//Args: $ftp_username, $ftp_password, $ftp_hostname, $backup_file, $ftp_remote_folder
|
| 1104 |
+
if ($ftp_ssl && function_exists('ftp_ssl_connect')) {
|
| 1105 |
+
$conn_id = ftp_ssl_connect($ftp_hostname);
|
| 1106 |
+
|
| 1107 |
+
} else if (function_exists('ftp_connect')) {
|
| 1108 |
+
$conn_id = ftp_connect($ftp_hostname);
|
| 1109 |
+
if ($conn_id === false) {
|
| 1110 |
+
return false;
|
| 1111 |
+
}
|
| 1112 |
+
} else {
|
| 1113 |
+
}
|
| 1114 |
+
$login = @ftp_login($conn_id, $ftp_username, $ftp_password);
|
| 1115 |
+
if ($login === false) {
|
| 1116 |
+
return false;
|
| 1117 |
+
} else {
|
| 1118 |
+
}
|
| 1119 |
+
|
| 1120 |
+
if($ftp_site_folder)
|
| 1121 |
+
$ftp_remote_folder .= '/'.$this->site_name;
|
| 1122 |
+
|
| 1123 |
+
$temp = ABSPATH . 'mwp_temp_backup.zip';
|
| 1124 |
+
$get = ftp_get($conn_id, $temp, $ftp_remote_folder . '/' . $backup_file, FTP_BINARY);
|
| 1125 |
+
if ($get === false) {
|
| 1126 |
+
return false;
|
| 1127 |
+
} else {
|
| 1128 |
+
}
|
| 1129 |
+
ftp_close($conn_id);
|
| 1130 |
+
|
| 1131 |
+
return $temp;
|
| 1132 |
+
}
|
| 1133 |
+
|
| 1134 |
+
function dropbox_backup($args)
|
| 1135 |
+
{
|
| 1136 |
+
require_once('lib/dropbox.php');
|
| 1137 |
+
extract($args);
|
| 1138 |
+
|
| 1139 |
+
//$email, $password, $backup_file, $destination, $dropbox_site_folder
|
| 1140 |
+
|
| 1141 |
+
$size = ceil(filesize($backup_file) / 1024);
|
| 1142 |
+
if($size > 300000){
|
| 1143 |
+
return array(
|
| 1144 |
+
'error' => 'Cannot upload file to Dropbox. Dropbox has upload limit of 300Mb per file.',
|
| 1145 |
+
'partial' => 1
|
| 1146 |
+
);
|
| 1147 |
+
}
|
| 1148 |
+
|
| 1149 |
+
if($dropbox_site_folder == true)
|
| 1150 |
+
$dropbox_destination .= '/'.$this->site_name;
|
| 1151 |
+
|
| 1152 |
+
try {
|
| 1153 |
+
$uploader = new DropboxUploader($dropbox_username, $dropbox_password);
|
| 1154 |
+
$uploader->upload($backup_file, $dropbox_destination);
|
| 1155 |
+
}
|
| 1156 |
+
catch (Exception $e) {
|
| 1157 |
+
return array(
|
| 1158 |
+
'error' => $e->getMessage(),
|
| 1159 |
+
'partial' => 1
|
| 1160 |
+
);
|
| 1161 |
+
}
|
| 1162 |
+
|
| 1163 |
+
return true;
|
| 1164 |
+
|
| 1165 |
+
}
|
| 1166 |
+
|
| 1167 |
+
function amazons3_backup($args)
|
| 1168 |
+
{
|
| 1169 |
+
require_once('lib/s3.php');
|
| 1170 |
+
extract($args);
|
| 1171 |
+
|
| 1172 |
+
if($as3_site_folder == true)
|
| 1173 |
+
$as3_directory .= '/'.$this->site_name;
|
| 1174 |
+
|
| 1175 |
+
|
| 1176 |
+
$s3 = new S3($as3_access_key, str_replace(' ', '+', $as3_secure_key));
|
| 1177 |
+
|
| 1178 |
+
$s3->putBucket($as3_bucket, S3::ACL_PUBLIC_READ);
|
| 1179 |
+
|
| 1180 |
+
if ($s3->putObjectFile($backup_file, $as3_bucket, $as3_directory . '/' . basename($backup_file), S3::ACL_PRIVATE)) {
|
| 1181 |
+
return true;
|
| 1182 |
+
} else {
|
| 1183 |
+
return array(
|
| 1184 |
+
'error' => 'Failed to upload to Amazon S3. Please check your details and set upload/delete permissions on your bucket.',
|
| 1185 |
+
'partial' => 1
|
| 1186 |
+
);
|
| 1187 |
+
}
|
| 1188 |
+
|
| 1189 |
+
}
|
| 1190 |
+
|
| 1191 |
+
function remove_amazons3_backup($args)
|
| 1192 |
+
{
|
| 1193 |
+
require_once('lib/s3.php');
|
| 1194 |
+
extract($args);
|
| 1195 |
+
if($as3_site_folder == true)
|
| 1196 |
+
$as3_directory .= '/'.$this->site_name;
|
| 1197 |
+
|
| 1198 |
+
$s3 = new S3($as3_access_key, str_replace(' ', '+', $as3_secure_key));
|
| 1199 |
+
$s3->deleteObject($as3_bucket, $as3_directory . '/' . $backup_file);
|
| 1200 |
+
}
|
| 1201 |
+
|
| 1202 |
+
function get_amazons3_backup($args)
|
| 1203 |
+
{
|
| 1204 |
+
require_once('lib/s3.php');
|
| 1205 |
+
extract($args);
|
| 1206 |
+
$s3 = new S3($as3_access_key, str_replace(' ', '+', $as3_secure_key));
|
| 1207 |
+
if($as3_site_folder == true)
|
| 1208 |
+
$as3_directory .= '/'.$this->site_name;
|
| 1209 |
+
|
| 1210 |
+
$s3->getObject($as3_bucket, $as3_directory . '/' . $backup_file, $temp);
|
| 1211 |
+
$temp = ABSPATH . 'mwp_temp_backup.zip';
|
| 1212 |
+
return $temp;
|
| 1213 |
+
}
|
| 1214 |
+
|
| 1215 |
+
function schedule_next($type, $schedule)
|
| 1216 |
+
{
|
| 1217 |
+
$schedule = explode("|", $schedule);
|
| 1218 |
+
if (empty($schedule))
|
| 1219 |
+
return false;
|
| 1220 |
+
switch ($type) {
|
| 1221 |
+
|
| 1222 |
+
case 'daily':
|
| 1223 |
+
|
| 1224 |
+
if ($schedule[1]) {
|
| 1225 |
+
$delay_time = $schedule[1] * 60;
|
| 1226 |
+
}
|
| 1227 |
+
|
| 1228 |
+
$current_hour = date("H");
|
| 1229 |
+
$schedule_hour = $schedule[0];
|
| 1230 |
+
if ($current_hour >= $schedule_hour)
|
| 1231 |
+
$time = mktime($schedule_hour, 0, 0, date("m"), date("d") + 1, date("Y"));
|
| 1232 |
+
else
|
| 1233 |
+
$time = mktime($schedule_hour, 0, 0, date("m"), date("d"), date("Y"));
|
| 1234 |
+
break;
|
| 1235 |
+
|
| 1236 |
+
|
| 1237 |
+
case 'weekly':
|
| 1238 |
+
if ($schedule[2]) {
|
| 1239 |
+
$delay_time = $schedule[2] * 60;
|
| 1240 |
+
}
|
| 1241 |
+
$current_weekday = date('w');
|
| 1242 |
+
$schedule_weekday = $schedule[1];
|
| 1243 |
+
$current_hour = date("H");
|
| 1244 |
+
$schedule_hour = $schedule[0];
|
| 1245 |
+
|
| 1246 |
+
if ($current_weekday > $schedule_weekday)
|
| 1247 |
+
$weekday_offset = 7 - ($week_day - $task_schedule[1]);
|
| 1248 |
+
else
|
| 1249 |
+
$weekday_offset = $schedule_weekday - $current_weekday;
|
| 1250 |
+
|
| 1251 |
+
|
| 1252 |
+
if (!$weekday_offset) { //today is scheduled weekday
|
| 1253 |
+
if ($current_hour >= $schedule_hour)
|
| 1254 |
+
$time = mktime($schedule_hour, 0, 0, date("m"), date("d") + 7, date("Y"));
|
| 1255 |
+
else
|
| 1256 |
+
$time = mktime($schedule_hour, 0, 0, date("m"), date("d"), date("Y"));
|
| 1257 |
+
} else {
|
| 1258 |
+
$time = mktime($schedule_hour, 0, 0, date("m"), date("d") + $weekday_offset, date("Y"));
|
| 1259 |
+
}
|
| 1260 |
+
|
| 1261 |
+
break;
|
| 1262 |
+
|
| 1263 |
+
case 'monthly':
|
| 1264 |
+
if ($schedule[2]) {
|
| 1265 |
+
$delay_time = $schedule[2] * 60;
|
| 1266 |
+
}
|
| 1267 |
+
$current_monthday = date('j');
|
| 1268 |
+
$schedule_monthday = $schedule[1];
|
| 1269 |
+
$current_hour = date("H");
|
| 1270 |
+
$schedule_hour = $schedule[0];
|
| 1271 |
+
|
| 1272 |
+
if ($current_monthday > $schedule_monthday) {
|
| 1273 |
+
$time = mktime($schedule_hour, 0, 0, date("m") + 1, $schedule_monthday, date("Y"));
|
| 1274 |
+
} else if ($current_monthday < $schedule_monthday) {
|
| 1275 |
+
$time = mktime($schedule_hour, 0, 0, date("m"), $schedule_monthday, date("Y"));
|
| 1276 |
+
} else if ($current_monthday == $schedule_monthday) {
|
| 1277 |
+
if ($current_hour >= $schedule_hour)
|
| 1278 |
+
$time = mktime($schedule_hour, 0, 0, date("m") + 1, $schedule_monthday, date("Y"));
|
| 1279 |
+
else
|
| 1280 |
+
$time = mktime($schedule_hour, 0, 0, date("m"), $schedule_monthday, date("Y"));
|
| 1281 |
+
break;
|
| 1282 |
+
}
|
| 1283 |
+
|
| 1284 |
+
break;
|
| 1285 |
+
default:
|
| 1286 |
+
break;
|
| 1287 |
+
}
|
| 1288 |
+
|
| 1289 |
+
if ($delay_time) {
|
| 1290 |
+
$time += $delay_time;
|
| 1291 |
+
}
|
| 1292 |
+
|
| 1293 |
+
|
| 1294 |
+
return $time;
|
| 1295 |
+
|
| 1296 |
+
}
|
| 1297 |
+
|
| 1298 |
+
//Parse task arguments for info on master
|
| 1299 |
+
function get_backup_stats()
|
| 1300 |
+
{
|
| 1301 |
+
$stats = array();
|
| 1302 |
+
$tasks = get_option('mwp_backup_tasks');
|
| 1303 |
+
if (is_array($tasks) && !empty($tasks)) {
|
| 1304 |
+
foreach ($tasks as $task_name => $info) {
|
| 1305 |
+
|
| 1306 |
+
if(is_array($info['task_results']) && !empty($info['task_results']))
|
| 1307 |
+
{
|
| 1308 |
+
foreach($info['task_results'] as $key => $result){
|
| 1309 |
+
if(isset($result['server']) && !isset($result['error'])){
|
| 1310 |
+
if(!file_exists($result['server']['file_path'])){
|
| 1311 |
+
$info['task_results'][$key]['error'] = 'Backup created but manually removed from server.';
|
| 1312 |
+
}
|
| 1313 |
+
}
|
| 1314 |
+
}
|
| 1315 |
+
}
|
| 1316 |
+
|
| 1317 |
+
$stats[$task_name] = array_values($info['task_results']);
|
| 1318 |
+
|
| 1319 |
+
}
|
| 1320 |
+
}
|
| 1321 |
+
return $stats;
|
| 1322 |
+
}
|
| 1323 |
+
|
| 1324 |
+
function get_next_schedules(){
|
| 1325 |
+
$stats = array();
|
| 1326 |
+
$tasks = get_option('mwp_backup_tasks');
|
| 1327 |
+
if (is_array($tasks) && !empty($tasks)) {
|
| 1328 |
+
foreach ($tasks as $task_name => $info) {
|
| 1329 |
+
$stats[$task_name] = $info['task_args']['next'];
|
| 1330 |
+
}
|
| 1331 |
+
}
|
| 1332 |
+
return $stats;
|
| 1333 |
+
}
|
| 1334 |
+
|
| 1335 |
+
function remove_old_backups($task_name)
|
| 1336 |
+
{
|
| 1337 |
+
|
| 1338 |
+
$backups = $this->get_backup_settings();
|
| 1339 |
+
|
| 1340 |
+
if($task_name == 'Backup Now'){
|
| 1341 |
+
$num = 0;
|
| 1342 |
+
} else {
|
| 1343 |
+
$num = 1;
|
| 1344 |
+
}
|
| 1345 |
+
|
| 1346 |
+
|
| 1347 |
+
if ((count($backups[$task_name]['task_results']) - $num) >= $backups[$task_name]['task_args']['limit']) {
|
| 1348 |
+
//how many to remove ?
|
| 1349 |
+
$remove_num = (count($backups[$task_name]['task_results']) - $num - $backups[$task_name]['task_args']['limit']) + 1;
|
| 1350 |
+
for ($i = 0; $i < $remove_num; $i++) {
|
| 1351 |
+
//Remove from the server
|
| 1352 |
+
if (isset($backups[$task_name]['task_results'][$i]['server'])) {
|
| 1353 |
+
@unlink($backups[$task_name]['task_results'][$i]['server']['file_path']);
|
| 1354 |
+
}
|
| 1355 |
+
|
| 1356 |
+
//Remove from ftp
|
| 1357 |
+
if (isset($backups[$task_name]['task_results'][$i]['ftp'])) {
|
| 1358 |
+
$ftp_file = $backups[$task_name]['task_results'][$i]['ftp'];
|
| 1359 |
+
$args = $backups[$task_name]['task_args']['account_info']['mwp_ftp'];
|
| 1360 |
+
$args['backup_file'] = $ftp_file;
|
| 1361 |
+
$this->remove_ftp_backup($args);
|
| 1362 |
+
}
|
| 1363 |
+
|
| 1364 |
+
if (isset($backups[$task_name]['task_results'][$i]['amazons3'])) {
|
| 1365 |
+
$amazons3_file = $backups[$task_name]['task_results'][$i]['amazons3'];
|
| 1366 |
+
$args = $backups[$task_name]['task_args']['account_info']['mwp_amazon_s3'];
|
| 1367 |
+
$args['backup_file'] = $amazons3_file;
|
| 1368 |
+
$this->remove_amazons3_backup($args);
|
| 1369 |
+
}
|
| 1370 |
+
|
| 1371 |
+
if (isset($backups[$task_name]['task_results'][$i]['dropbox'])) {
|
| 1372 |
+
//To do: dropbox remove
|
| 1373 |
+
}
|
| 1374 |
+
|
| 1375 |
+
//Remove database backup info
|
| 1376 |
+
unset($backups[$task_name]['task_results'][$i]);
|
| 1377 |
+
|
| 1378 |
+
} //end foreach
|
| 1379 |
+
|
| 1380 |
+
$backups[$task_name]['task_results'] = array_values($backups[$task_name]['task_results']);
|
| 1381 |
+
update_option('mwp_backup_tasks', $backups);
|
| 1382 |
+
}
|
| 1383 |
+
}
|
| 1384 |
+
|
| 1385 |
+
/**
|
| 1386 |
+
* Delete specified backup
|
| 1387 |
+
* Args: $task_name, $result_id
|
| 1388 |
+
*/
|
| 1389 |
+
|
| 1390 |
+
function delete_backup($args)
|
| 1391 |
+
{
|
| 1392 |
+
if (empty($args))
|
| 1393 |
+
return false;
|
| 1394 |
+
extract($args);
|
| 1395 |
+
|
| 1396 |
+
$tasks = $this->get_backup_settings();
|
| 1397 |
+
$task = $tasks[$task_name];
|
| 1398 |
+
$backups = $task['task_results'];
|
| 1399 |
+
$backup = $backups[$result_id];
|
| 1400 |
+
|
| 1401 |
+
if (isset($backup['server'])) {
|
| 1402 |
+
@unlink($backup['server']['file_path']);
|
| 1403 |
+
}
|
| 1404 |
+
|
| 1405 |
+
//Remove from ftp
|
| 1406 |
+
if (isset($backup['ftp'])) {
|
| 1407 |
+
$ftp_file = $backup['ftp'];
|
| 1408 |
+
$args = $tasks[$task_name]['task_args']['account_info']['mwp_ftp'];
|
| 1409 |
+
$args['backup_file'] = $ftp_file;
|
| 1410 |
+
$this->remove_ftp_backup($args);
|
| 1411 |
+
}
|
| 1412 |
+
|
| 1413 |
+
if (isset($backup['amazons3'])) {
|
| 1414 |
+
$amazons3_file = $backup['amazons3'];
|
| 1415 |
+
$args = $tasks[$task_name]['task_args']['account_info']['mwp_amazon_s3'];
|
| 1416 |
+
$args['backup_file'] = $amazons3_file;
|
| 1417 |
+
$this->remove_amazons3_backup($args);
|
| 1418 |
+
}
|
| 1419 |
+
|
| 1420 |
+
if (isset($backup['dropbox'])) {
|
| 1421 |
+
}
|
| 1422 |
+
|
| 1423 |
+
unset($backups[$result_id]);
|
| 1424 |
+
|
| 1425 |
+
if (count($backups)) {
|
| 1426 |
+
$tasks[$task_name]['task_results'] = $backups;
|
| 1427 |
+
} else {
|
| 1428 |
+
unset($tasks[$task_name]['task_results']);
|
| 1429 |
+
}
|
| 1430 |
+
|
| 1431 |
+
update_option('mwp_backup_tasks', $tasks);
|
| 1432 |
+
return true;
|
| 1433 |
+
|
| 1434 |
+
}
|
| 1435 |
+
|
| 1436 |
+
function cleanup()
|
| 1437 |
+
{
|
| 1438 |
+
$tasks = $this->get_backup_settings();
|
| 1439 |
+
$backup_folder = WP_CONTENT_DIR . '/' . md5('mmb-worker') . '/mwp_backups/';
|
| 1440 |
+
$backup_folder_new = WP_CONTENT_DIR . '/managewp/backups/';
|
| 1441 |
+
$files = glob($backup_folder . "*");
|
| 1442 |
+
$new = glob($backup_folder_new . "*");
|
| 1443 |
+
|
| 1444 |
+
//clean_old folder?
|
| 1445 |
+
if((basename($files[0]) == 'index.php' && count($files) == 1) || (empty($files))){
|
| 1446 |
+
foreach($files as $file){
|
| 1447 |
+
@unlink($file);
|
| 1448 |
+
}
|
| 1449 |
+
@rmdir(WP_CONTENT_DIR . '/' . md5('mmb-worker'). '/mwp_backups');
|
| 1450 |
+
@rmdir(WP_CONTENT_DIR . '/' . md5('mmb-worker'));
|
| 1451 |
+
}
|
| 1452 |
+
|
| 1453 |
+
|
| 1454 |
+
foreach($new as $b){
|
| 1455 |
+
$files[] = $b;
|
| 1456 |
+
}
|
| 1457 |
+
$deleted = array();
|
| 1458 |
+
$clone_backup = get_option('mwp_manual_backup');
|
| 1459 |
+
if(isset($clone_backup['file_path'])){
|
| 1460 |
+
$clone_backup = $clone_backup['file_path'];
|
| 1461 |
+
}
|
| 1462 |
+
|
| 1463 |
+
if (is_array($files) && count($files)) {
|
| 1464 |
+
$results = array();
|
| 1465 |
+
if (!empty($tasks)) {
|
| 1466 |
+
foreach ((array) $tasks as $task) {
|
| 1467 |
+
if (isset($task['task_results']) && count($task['task_results'])) {
|
| 1468 |
+
foreach ($task['task_results'] as $backup) {
|
| 1469 |
+
if (isset($backup['server'])) {
|
| 1470 |
+
$results[] = $backup['server']['file_path'];
|
| 1471 |
+
}
|
| 1472 |
+
}
|
| 1473 |
+
}
|
| 1474 |
+
}
|
| 1475 |
+
}
|
| 1476 |
+
|
| 1477 |
+
$num_deleted = 0;
|
| 1478 |
+
foreach ($files as $file) {
|
| 1479 |
+
if (!in_array($file, $results) && basename($file) != 'index.php' && basename($file) != basename($clone_backup)) {
|
| 1480 |
+
@unlink($file);
|
| 1481 |
+
$deleted[] = basename($file);
|
| 1482 |
+
$num_deleted++;
|
| 1483 |
+
}
|
| 1484 |
+
}
|
| 1485 |
+
}
|
| 1486 |
+
|
| 1487 |
+
//Failed db files?
|
| 1488 |
+
$db_folder = WP_CONTENT_DIR . '/mwp_db/';
|
| 1489 |
+
$files = glob($db_folder . "*.*");
|
| 1490 |
+
if (is_array($files) && count($files)) {
|
| 1491 |
+
foreach ($files as $file) {
|
| 1492 |
+
@unlink($file);
|
| 1493 |
+
}
|
| 1494 |
+
}
|
| 1495 |
+
|
| 1496 |
+
return $deleted;
|
| 1497 |
+
}
|
| 1498 |
+
|
| 1499 |
+
|
| 1500 |
+
function remote_backup_now($args)
|
| 1501 |
+
{
|
| 1502 |
+
if (!empty($args))
|
| 1503 |
+
extract($args);
|
| 1504 |
+
$tasks = $this->get_backup_settings();
|
| 1505 |
+
$task = $tasks['Backup Now'];
|
| 1506 |
+
|
| 1507 |
+
if (!empty($task)) {
|
| 1508 |
+
extract($task['task_args']);
|
| 1509 |
+
}
|
| 1510 |
+
|
| 1511 |
+
$results = $task['task_results'];
|
| 1512 |
+
|
| 1513 |
+
if (is_array($results) && count($results)) {
|
| 1514 |
+
$backup_file = $results[count($results) - 1]['server']['file_path'];
|
| 1515 |
+
}
|
| 1516 |
+
|
| 1517 |
+
if ($backup_file && file_exists($backup_file)) {
|
| 1518 |
+
if ($email) {
|
| 1519 |
+
$mail_args = array(
|
| 1520 |
+
'email' => $email_backup,
|
| 1521 |
+
'task_name' => 'Backup Now',
|
| 1522 |
+
'file_path' => $backup_file
|
| 1523 |
+
);
|
| 1524 |
+
|
| 1525 |
+
$return = $this->email_backup($mail_args);
|
| 1526 |
+
|
| 1527 |
+
//delete from server?
|
| 1528 |
+
if ($return == true && $del_host_file) {
|
| 1529 |
+
@unlink($backup_file);
|
| 1530 |
+
|
| 1531 |
+
unset($tasks['Backup Now']['task_results'][count($results) - 1]['server']);
|
| 1532 |
+
update_option('mwp_backup_tasks', $tasks);
|
| 1533 |
+
|
| 1534 |
+
}
|
| 1535 |
+
} else {
|
| 1536 |
+
//FTP, Amazon S3 or Dropbox
|
| 1537 |
+
if (isset($account_info['mwp_ftp']) && !empty($account_info['mwp_ftp'])) {
|
| 1538 |
+
$account_info['mwp_ftp']['backup_file'] = $backup_file;
|
| 1539 |
+
$return = $this->ftp_backup($account_info['mwp_ftp']);
|
| 1540 |
+
}
|
| 1541 |
+
|
| 1542 |
+
if (isset($account_info['mwp_amazon_s3']) && !empty($account_info['mwp_amazon_s3'])) {
|
| 1543 |
+
$account_info['mwp_amazon_s3']['backup_file'] = $backup_file;
|
| 1544 |
+
$return = $this->amazons3_backup($account_info['mwp_amazon_s3']);
|
| 1545 |
+
}
|
| 1546 |
+
|
| 1547 |
+
if (isset($account_info['mwp_dropbox']) && !empty($account_info['mwp_dropbox'])) {
|
| 1548 |
+
$account_info['mwp_dropbox']['backup_file'] = $backup_file;
|
| 1549 |
+
$return = $this->dropbox_backup($account_info['mwp_dropbox']);
|
| 1550 |
+
}
|
| 1551 |
+
|
| 1552 |
+
if ($return == true && $del_host_file && !$email_backup) {
|
| 1553 |
+
@unlink($backup_file);
|
| 1554 |
+
unset($tasks['Backup Now']['task_results'][count($results) - 1]['server']);
|
| 1555 |
+
update_option('mwp_backup_tasks', $tasks);
|
| 1556 |
+
}
|
| 1557 |
+
|
| 1558 |
+
}
|
| 1559 |
+
|
| 1560 |
+
} else {
|
| 1561 |
+
$return = array(
|
| 1562 |
+
'error' => 'Backup file not found on your server. Please try again.'
|
| 1563 |
+
);
|
| 1564 |
+
}
|
| 1565 |
+
|
| 1566 |
+
return $return;
|
| 1567 |
+
|
| 1568 |
+
}
|
| 1569 |
+
|
| 1570 |
+
function validate_task($args){
|
| 1571 |
+
if( !class_exists( 'WP_Http' ) ){
|
| 1572 |
+
include_once( ABSPATH . WPINC. '/class-http.php' );
|
| 1573 |
+
}
|
| 1574 |
+
$params = array();
|
| 1575 |
+
$params['body'] = $args;
|
| 1576 |
+
$result= wp_remote_post($args['url'], $params);
|
| 1577 |
+
if(is_array($result) && $result['body'] == 'mwp_delete_task'){
|
| 1578 |
+
$tasks = $this->get_backup_settings();
|
| 1579 |
+
unset($tasks[$args['task_name']]);
|
| 1580 |
+
update_option('mwp_backup_tasks',$tasks);
|
| 1581 |
+
exit;
|
| 1582 |
+
}
|
| 1583 |
+
}
|
| 1584 |
+
|
| 1585 |
+
function update_status($task_name, $status, $completed = false){
|
| 1586 |
+
/* Statuses:
|
| 1587 |
+
0 - Backup started
|
| 1588 |
+
1 - DB dump
|
| 1589 |
+
2 - DB ZIP
|
| 1590 |
+
3 - Files ZIP
|
| 1591 |
+
4 - Amazon S3
|
| 1592 |
+
5 - Dropbox
|
| 1593 |
+
6 - FTP
|
| 1594 |
+
7 - Email
|
| 1595 |
+
100 - Finished
|
| 1596 |
+
*/
|
| 1597 |
+
if($task_name != 'Backup Now'){
|
| 1598 |
+
$tasks = $this->get_backup_settings();
|
| 1599 |
+
$index = count($tasks[$task_name]['task_results']) - 1;
|
| 1600 |
+
if(!is_array($tasks[$task_name]['task_results'][$index]['status'])){
|
| 1601 |
+
$tasks[$task_name]['task_results'][$index]['status'] = array();
|
| 1602 |
+
}
|
| 1603 |
+
if(!$completed){
|
| 1604 |
+
$tasks[$task_name]['task_results'][$index]['status'][] = (int)$status * (-1);
|
| 1605 |
+
} else {
|
| 1606 |
+
$status_index = count($tasks[$task_name]['task_results'][$index]['status']) - 1;
|
| 1607 |
+
$tasks[$task_name]['task_results'][$index]['status'][$status_index] = abs($tasks[$task_name]['task_results'][$index]['status'][$status_index]);
|
| 1608 |
+
}
|
| 1609 |
+
|
| 1610 |
+
update_option('mwp_backup_tasks',$tasks);
|
| 1611 |
+
}
|
| 1612 |
+
}
|
| 1613 |
+
|
| 1614 |
+
}
|
| 1615 |
+
|
| 1616 |
?>
|
comment.class.php
CHANGED
|
@@ -1,43 +1,43 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
* post.class.php
|
| 5 |
-
*
|
| 6 |
-
* Create remote post
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
* Copyright (c) 2011 Prelovac Media
|
| 10 |
-
* www.prelovac.com
|
| 11 |
-
**************************************************************/
|
| 12 |
-
|
| 13 |
-
class MMB_Comment extends MMB_Core
|
| 14 |
-
{
|
| 15 |
-
function __construct()
|
| 16 |
-
{
|
| 17 |
-
parent::__construct();
|
| 18 |
-
}
|
| 19 |
-
|
| 20 |
-
function change_status($args)
|
| 21 |
-
{
|
| 22 |
-
|
| 23 |
-
global $wpdb;
|
| 24 |
-
$comment_id = $args['comment_id'];
|
| 25 |
-
$status = $args['status'];
|
| 26 |
-
|
| 27 |
-
if ( 'approve' == $status )
|
| 28 |
-
$status_sql = '1';
|
| 29 |
-
elseif ( 'unapprove' == $status )
|
| 30 |
-
$status_sql = '0';
|
| 31 |
-
elseif ( 'spam' == $status )
|
| 32 |
-
$status_sql = 'spam';
|
| 33 |
-
elseif ( 'trash' == $status )
|
| 34 |
-
$status_sql = 'trash';
|
| 35 |
-
$sql = "update ".$wpdb->prefix."comments set comment_approved = '$status_sql' where comment_ID = '$comment_id'";
|
| 36 |
-
$success = $wpdb->query($sql);
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
return $success;
|
| 40 |
-
}
|
| 41 |
-
|
| 42 |
-
}
|
| 43 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
* post.class.php
|
| 5 |
+
*
|
| 6 |
+
* Create remote post
|
| 7 |
+
*
|
| 8 |
+
*
|
| 9 |
+
* Copyright (c) 2011 Prelovac Media
|
| 10 |
+
* www.prelovac.com
|
| 11 |
+
**************************************************************/
|
| 12 |
+
|
| 13 |
+
class MMB_Comment extends MMB_Core
|
| 14 |
+
{
|
| 15 |
+
function __construct()
|
| 16 |
+
{
|
| 17 |
+
parent::__construct();
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
function change_status($args)
|
| 21 |
+
{
|
| 22 |
+
|
| 23 |
+
global $wpdb;
|
| 24 |
+
$comment_id = $args['comment_id'];
|
| 25 |
+
$status = $args['status'];
|
| 26 |
+
|
| 27 |
+
if ( 'approve' == $status )
|
| 28 |
+
$status_sql = '1';
|
| 29 |
+
elseif ( 'unapprove' == $status )
|
| 30 |
+
$status_sql = '0';
|
| 31 |
+
elseif ( 'spam' == $status )
|
| 32 |
+
$status_sql = 'spam';
|
| 33 |
+
elseif ( 'trash' == $status )
|
| 34 |
+
$status_sql = 'trash';
|
| 35 |
+
$sql = "update ".$wpdb->prefix."comments set comment_approved = '$status_sql' where comment_ID = '$comment_id'";
|
| 36 |
+
$success = $wpdb->query($sql);
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
return $success;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
}
|
| 43 |
?>
|
core.class.php
CHANGED
|
@@ -1,441 +1,607 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
* core.class.php
|
| 5 |
-
*
|
| 6 |
-
* Upgrade Plugins
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
* Copyright (c) 2011 Prelovac Media
|
| 10 |
-
* www.prelovac.com
|
| 11 |
-
**************************************************************/
|
| 12 |
-
class MMB_Core extends MMB_Helper
|
| 13 |
-
{
|
| 14 |
-
var $name;
|
| 15 |
-
var $slug;
|
| 16 |
-
var $settings;
|
| 17 |
-
var $remote_client;
|
| 18 |
-
var $comment_instance;
|
| 19 |
-
var $plugin_instance;
|
| 20 |
-
var $theme_instance;
|
| 21 |
-
var $wp_instance;
|
| 22 |
-
var $post_instance;
|
| 23 |
-
var $stats_instance;
|
| 24 |
-
var $search_instance;
|
| 25 |
-
var $links_instance;
|
| 26 |
-
var $user_instance;
|
| 27 |
-
var $backup_instance;
|
| 28 |
-
var $installer_instance;
|
| 29 |
-
var $mmb_multisite
|
| 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 |
-
|
| 411 |
-
|
| 412 |
-
|
| 413 |
-
|
| 414 |
-
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
|
| 418 |
-
|
| 419 |
-
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
|
| 423 |
-
|
| 424 |
-
|
| 425 |
-
|
| 426 |
-
|
| 427 |
-
|
| 428 |
-
|
| 429 |
-
|
| 430 |
-
|
| 431 |
-
|
| 432 |
-
|
| 433 |
-
|
| 434 |
-
|
| 435 |
-
|
| 436 |
-
|
| 437 |
-
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 441 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
* core.class.php
|
| 5 |
+
*
|
| 6 |
+
* Upgrade Plugins
|
| 7 |
+
*
|
| 8 |
+
*
|
| 9 |
+
* Copyright (c) 2011 Prelovac Media
|
| 10 |
+
* www.prelovac.com
|
| 11 |
+
**************************************************************/
|
| 12 |
+
class MMB_Core extends MMB_Helper
|
| 13 |
+
{
|
| 14 |
+
var $name;
|
| 15 |
+
var $slug;
|
| 16 |
+
var $settings;
|
| 17 |
+
var $remote_client;
|
| 18 |
+
var $comment_instance;
|
| 19 |
+
var $plugin_instance;
|
| 20 |
+
var $theme_instance;
|
| 21 |
+
var $wp_instance;
|
| 22 |
+
var $post_instance;
|
| 23 |
+
var $stats_instance;
|
| 24 |
+
var $search_instance;
|
| 25 |
+
var $links_instance;
|
| 26 |
+
var $user_instance;
|
| 27 |
+
var $backup_instance;
|
| 28 |
+
var $installer_instance;
|
| 29 |
+
var $mmb_multisite;
|
| 30 |
+
var $network_admin_install;
|
| 31 |
+
private $action_call;
|
| 32 |
+
private $action_params;
|
| 33 |
+
private $mmb_pre_init_actions;
|
| 34 |
+
private $mmb_pre_init_filters;
|
| 35 |
+
private $mmb_init_actions;
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
function __construct()
|
| 39 |
+
{
|
| 40 |
+
global $mmb_plugin_dir, $wpmu_version, $blog_id, $_mmb_plugin_actions, $_mmb_item_filter;
|
| 41 |
+
|
| 42 |
+
$_mmb_plugin_actions = array();
|
| 43 |
+
$this->name = 'Manage Multiple Blogs';
|
| 44 |
+
$this->slug = 'manage-multiple-blogs';
|
| 45 |
+
$this->action_call = null;
|
| 46 |
+
$this->action_params = null;
|
| 47 |
+
|
| 48 |
+
|
| 49 |
+
$this->settings = get_option($this->slug);
|
| 50 |
+
if (!$this->settings) {
|
| 51 |
+
$this->settings = array(
|
| 52 |
+
'blogs' => array(),
|
| 53 |
+
'current_blog' => array(
|
| 54 |
+
'type' => null
|
| 55 |
+
)
|
| 56 |
+
);
|
| 57 |
+
$this->save_options();
|
| 58 |
+
}
|
| 59 |
+
if ( function_exists('is_multisite') ) {
|
| 60 |
+
if ( is_multisite() ) {
|
| 61 |
+
$this->mmb_multisite = $blog_id;
|
| 62 |
+
$this->network_admin_install = get_option('mmb_network_admin_install');
|
| 63 |
+
}
|
| 64 |
+
} else if (!empty($wpmu_version)) {
|
| 65 |
+
$this->mmb_multisite = $blog_id;
|
| 66 |
+
$this->network_admin_install = get_option('mmb_network_admin_install');
|
| 67 |
+
} else {
|
| 68 |
+
$this->mmb_multisite = false;
|
| 69 |
+
$this->network_admin_install = null;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
// admin notices
|
| 73 |
+
if ( !get_option('_worker_public_key') ){
|
| 74 |
+
if( $this->mmb_multisite ){
|
| 75 |
+
if( is_network_admin() && $this->network_admin_install == '1'){
|
| 76 |
+
add_action('network_admin_notices', array( &$this, 'network_admin_notice' ));
|
| 77 |
+
} else if( $this->network_admin_install != '1' ){
|
| 78 |
+
$parent_key = $this->get_parent_blog_option('_worker_public_key');
|
| 79 |
+
if(empty($parent_key))
|
| 80 |
+
add_action('admin_notices', array( &$this, 'admin_notice' ));
|
| 81 |
+
}
|
| 82 |
+
} else {
|
| 83 |
+
add_action('admin_notices', array( &$this, 'admin_notice' ));
|
| 84 |
+
}
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
// default filters
|
| 88 |
+
//$this->mmb_pre_init_filters['get_stats']['mmb_stats_filter'][] = array('MMB_Stats', 'pre_init_stats'); // called with class name, use global $mmb_core inside the function instead of $this
|
| 89 |
+
$this->mmb_pre_init_filters['get_stats']['mmb_stats_filter'][] = 'mmb_pre_init_stats';
|
| 90 |
+
|
| 91 |
+
$_mmb_item_filter['pre_init_stats'] = array( 'core_update', 'hit_counter', 'comments', 'backups', 'posts', 'drafts', 'scheduled' );
|
| 92 |
+
$_mmb_item_filter['get'] = array( 'updates', 'errors' );
|
| 93 |
+
|
| 94 |
+
$this->mmb_pre_init_actions = array(
|
| 95 |
+
'do_upgrade' => 'mmb_do_upgrade'
|
| 96 |
+
);
|
| 97 |
+
$this->mmb_init_actions = array(
|
| 98 |
+
'get_stats' => 'mmb_stats_get',
|
| 99 |
+
'remove_site' => 'mmb_remove_site',
|
| 100 |
+
'backup_clone' => 'mmb_backup_now',
|
| 101 |
+
'restore' => 'mmb_restore_now',
|
| 102 |
+
'optimize_tables' => 'mmb_optimize_tables',
|
| 103 |
+
'check_wp_version' => 'mmb_wp_checkversion',
|
| 104 |
+
'create_post' => 'mmb_post_create',
|
| 105 |
+
'update_worker' => 'mmb_update_worker_plugin',
|
| 106 |
+
'change_comment_status' => 'mmb_change_comment_status',
|
| 107 |
+
'change_post_status' => 'mmb_change_post_status',
|
| 108 |
+
'get_comment_stats' => 'mmb_comment_stats_get',
|
| 109 |
+
'install_addon' => 'mmb_install_addon',
|
| 110 |
+
'add_link' => 'mmb_add_link',
|
| 111 |
+
'add_user' => 'mmb_add_user',
|
| 112 |
+
'email_backup' => 'mmb_email_backup',
|
| 113 |
+
'check_backup_compat' => 'mmb_check_backup_compat',
|
| 114 |
+
'scheduled_backup' => 'mmb_scheduled_backup',
|
| 115 |
+
'execute_php_code' => 'mmb_execute_php_code',
|
| 116 |
+
'delete_backup' => 'mmm_delete_backup',
|
| 117 |
+
'remote_backup_now' => 'mmb_remote_backup_now',
|
| 118 |
+
'set_notifications' => 'mmb_set_notifications',
|
| 119 |
+
'clean_orphan_backups' => 'mmb_clean_orphan_backups',
|
| 120 |
+
'get_users' => 'mmb_get_users',
|
| 121 |
+
'edit_users' => 'mmb_edit_users',
|
| 122 |
+
'get_plugins_themes' => 'mmb_get_plugins_themes',
|
| 123 |
+
'edit_plugins_themes' => 'mmb_edit_plugins_themes',
|
| 124 |
+
'worker_brand' => 'mmb_worker_brand'
|
| 125 |
+
);
|
| 126 |
+
|
| 127 |
+
add_action('rightnow_end', array( 'MMB_Stats', 'add_right_now_info' ));
|
| 128 |
+
add_action('wp_footer', array( 'MMB_Stats', 'set_hit_count' ));
|
| 129 |
+
add_action('admin_init', array($this,'admin_actions'));
|
| 130 |
+
add_action('init', array( &$this, 'mmb_remote_action'), 9999);
|
| 131 |
+
add_action('setup_theme', 'mmb_parse_request');
|
| 132 |
+
}
|
| 133 |
+
|
| 134 |
+
function mmb_remote_action(){
|
| 135 |
+
if($this->action_call != null){
|
| 136 |
+
$params = isset($this->action_params) && $this->action_params != null ? $this->action_params : array();
|
| 137 |
+
call_user_func($this->action_call, $params);
|
| 138 |
+
}
|
| 139 |
+
}
|
| 140 |
+
|
| 141 |
+
function register_action_params( $action = false, $params = array() ){
|
| 142 |
+
|
| 143 |
+
if(isset($this->mmb_pre_init_actions[$action]) && function_exists($this->mmb_pre_init_actions[$action])){
|
| 144 |
+
call_user_func($this->mmb_pre_init_actions[$action], $params);
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
if(isset($this->mmb_init_actions[$action]) && function_exists($this->mmb_init_actions[$action])){
|
| 148 |
+
$this->action_call = $this->mmb_init_actions[$action];
|
| 149 |
+
$this->action_params = $params;
|
| 150 |
+
|
| 151 |
+
if( isset($this->mmb_pre_init_filters[$action]) && !empty($this->mmb_pre_init_filters[$action])){
|
| 152 |
+
global $mmb_filters;
|
| 153 |
+
|
| 154 |
+
foreach($this->mmb_pre_init_filters[$action] as $_name => $_functions){
|
| 155 |
+
if(!empty($_functions)){
|
| 156 |
+
$data = array();
|
| 157 |
+
|
| 158 |
+
foreach($_functions as $_k => $_callback){
|
| 159 |
+
if(is_array($_callback) && method_exists($_callback[0], $_callback[1]) ){
|
| 160 |
+
$data = call_user_func( $_callback, $params );
|
| 161 |
+
} elseif (is_string($_callback) && function_exists( $_callback )){
|
| 162 |
+
$data = call_user_func( $_callback, $params );
|
| 163 |
+
}
|
| 164 |
+
$mmb_filters[$_name] = isset($mmb_filters[$_name]) && !empty($mmb_filters[$_name]) ? array_merge($mmb_filters[$_name], $data) : $data;
|
| 165 |
+
add_filter( $_name, create_function( '$a' , 'global $mmb_filters; return array_merge($a, $mmb_filters["'.$_name.'"]);') );
|
| 166 |
+
}
|
| 167 |
+
}
|
| 168 |
+
|
| 169 |
+
}
|
| 170 |
+
}
|
| 171 |
+
return true;
|
| 172 |
+
}
|
| 173 |
+
return false;
|
| 174 |
+
}
|
| 175 |
+
|
| 176 |
+
/**
|
| 177 |
+
* Add notice to network admin dashboard for security reasons
|
| 178 |
+
*
|
| 179 |
+
*/
|
| 180 |
+
function network_admin_notice()
|
| 181 |
+
{
|
| 182 |
+
echo '<div class="error" style="text-align: center;"><p style="color: red; font-size: 14px; font-weight: bold;">Attention !</p><p>
|
| 183 |
+
Please add this site and your network blogs, with your network adminstrator username, to your <a target="_blank" href="http://managewp.com/user-guide#multisite">ManageWP.com</a> account now to remove this notice or "Network Deactivate" the Worker plugin to avoid <a target="_blank" href="http://managewp.com/user-guide#security">security issues</a>.
|
| 184 |
+
</p></div>';
|
| 185 |
+
}
|
| 186 |
+
|
| 187 |
+
|
| 188 |
+
/**
|
| 189 |
+
* Add notice to admin dashboard for security reasons
|
| 190 |
+
*
|
| 191 |
+
*/
|
| 192 |
+
function admin_notice()
|
| 193 |
+
{
|
| 194 |
+
echo '<div class="error" style="text-align: center;"><p style="color: red; font-size: 14px; font-weight: bold;">Attention !</p><p>
|
| 195 |
+
Please add this site to your <a target="_blank" href="http://managewp.com/user-guide#security">ManageWP.com</a> account now to remove this notice or deactivate the Worker plugin to avoid <a target="_blank" href="http://managewp.com/user-guide#security">security issues</a>.
|
| 196 |
+
</p></div>';
|
| 197 |
+
}
|
| 198 |
+
|
| 199 |
+
/**
|
| 200 |
+
* Add an item into the Right Now Dashboard widget
|
| 201 |
+
* to inform that the blog can be managed remotely
|
| 202 |
+
*
|
| 203 |
+
*/
|
| 204 |
+
function add_right_now_info()
|
| 205 |
+
{
|
| 206 |
+
echo '<div class="mmb-slave-info">
|
| 207 |
+
<p>This site can be managed remotely.</p>
|
| 208 |
+
</div>';
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
/**
|
| 212 |
+
* Get parent blog options
|
| 213 |
+
*
|
| 214 |
+
*/
|
| 215 |
+
private function get_parent_blog_option( $option_name = '' )
|
| 216 |
+
{
|
| 217 |
+
global $wpdb;
|
| 218 |
+
$option = $wpdb->get_var( $wpdb->prepare( "SELECT `option_value` FROM {$wpdb->base_prefix}options WHERE option_name = '{$option_name}' LIMIT 1" ) );
|
| 219 |
+
return $option;
|
| 220 |
+
}
|
| 221 |
+
|
| 222 |
+
/**
|
| 223 |
+
* Gets an instance of the Comment class
|
| 224 |
+
*
|
| 225 |
+
*/
|
| 226 |
+
function get_comment_instance()
|
| 227 |
+
{
|
| 228 |
+
if (!isset($this->comment_instance)) {
|
| 229 |
+
$this->comment_instance = new MMB_Comment();
|
| 230 |
+
}
|
| 231 |
+
|
| 232 |
+
return $this->comment_instance;
|
| 233 |
+
}
|
| 234 |
+
|
| 235 |
+
/**
|
| 236 |
+
* Gets an instance of the Plugin class
|
| 237 |
+
*
|
| 238 |
+
*/
|
| 239 |
+
function get_plugin_instance()
|
| 240 |
+
{
|
| 241 |
+
if (!isset($this->plugin_instance)) {
|
| 242 |
+
$this->plugin_instance = new MMB_Plugin();
|
| 243 |
+
}
|
| 244 |
+
|
| 245 |
+
return $this->plugin_instance;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
/**
|
| 249 |
+
* Gets an instance of the Theme class
|
| 250 |
+
*
|
| 251 |
+
*/
|
| 252 |
+
function get_theme_instance()
|
| 253 |
+
{
|
| 254 |
+
if (!isset($this->theme_instance)) {
|
| 255 |
+
$this->theme_instance = new MMB_Theme();
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
return $this->theme_instance;
|
| 259 |
+
}
|
| 260 |
+
|
| 261 |
+
|
| 262 |
+
/**
|
| 263 |
+
* Gets an instance of MMB_Post class
|
| 264 |
+
*
|
| 265 |
+
*/
|
| 266 |
+
function get_post_instance()
|
| 267 |
+
{
|
| 268 |
+
if (!isset($this->post_instance)) {
|
| 269 |
+
$this->post_instance = new MMB_Post();
|
| 270 |
+
}
|
| 271 |
+
|
| 272 |
+
return $this->post_instance;
|
| 273 |
+
}
|
| 274 |
+
|
| 275 |
+
/**
|
| 276 |
+
* Gets an instance of Blogroll class
|
| 277 |
+
*
|
| 278 |
+
*/
|
| 279 |
+
function get_blogroll_instance()
|
| 280 |
+
{
|
| 281 |
+
if (!isset($this->blogroll_instance)) {
|
| 282 |
+
$this->blogroll_instance = new MMB_Blogroll();
|
| 283 |
+
}
|
| 284 |
+
|
| 285 |
+
return $this->blogroll_instance;
|
| 286 |
+
}
|
| 287 |
+
|
| 288 |
+
|
| 289 |
+
|
| 290 |
+
/**
|
| 291 |
+
* Gets an instance of the WP class
|
| 292 |
+
*
|
| 293 |
+
*/
|
| 294 |
+
function get_wp_instance()
|
| 295 |
+
{
|
| 296 |
+
if (!isset($this->wp_instance)) {
|
| 297 |
+
$this->wp_instance = new MMB_WP();
|
| 298 |
+
}
|
| 299 |
+
|
| 300 |
+
return $this->wp_instance;
|
| 301 |
+
}
|
| 302 |
+
|
| 303 |
+
/**
|
| 304 |
+
* Gets an instance of User
|
| 305 |
+
*
|
| 306 |
+
*/
|
| 307 |
+
function get_user_instance()
|
| 308 |
+
{
|
| 309 |
+
if (!isset($this->user_instance)) {
|
| 310 |
+
$this->user_instance = new MMB_User();
|
| 311 |
+
}
|
| 312 |
+
|
| 313 |
+
return $this->user_instance;
|
| 314 |
+
}
|
| 315 |
+
|
| 316 |
+
/**
|
| 317 |
+
* Gets an instance of stats class
|
| 318 |
+
*
|
| 319 |
+
*/
|
| 320 |
+
function get_stats_instance()
|
| 321 |
+
{
|
| 322 |
+
if (!isset($this->stats_instance)) {
|
| 323 |
+
$this->stats_instance = new MMB_Stats();
|
| 324 |
+
}
|
| 325 |
+
return $this->stats_instance;
|
| 326 |
+
}
|
| 327 |
+
/**
|
| 328 |
+
* Gets an instance of search class
|
| 329 |
+
*
|
| 330 |
+
*/
|
| 331 |
+
function get_search_instance()
|
| 332 |
+
{
|
| 333 |
+
if (!isset($this->search_instance)) {
|
| 334 |
+
$this->search_instance = new MMB_Search();
|
| 335 |
+
}
|
| 336 |
+
//return $this->search_instance;
|
| 337 |
+
return $this->search_instance;
|
| 338 |
+
}
|
| 339 |
+
/**
|
| 340 |
+
* Gets an instance of stats class
|
| 341 |
+
*
|
| 342 |
+
*/
|
| 343 |
+
function get_backup_instance()
|
| 344 |
+
{
|
| 345 |
+
if (!isset($this->backup_instance)) {
|
| 346 |
+
$this->backup_instance = new MMB_Backup();
|
| 347 |
+
}
|
| 348 |
+
|
| 349 |
+
return $this->backup_instance;
|
| 350 |
+
}
|
| 351 |
+
|
| 352 |
+
/**
|
| 353 |
+
* Gets an instance of links class
|
| 354 |
+
*
|
| 355 |
+
*/
|
| 356 |
+
function get_link_instance()
|
| 357 |
+
{
|
| 358 |
+
if (!isset($this->link_instance)) {
|
| 359 |
+
$this->link_instance = new MMB_Link();
|
| 360 |
+
}
|
| 361 |
+
|
| 362 |
+
return $this->link_instance;
|
| 363 |
+
}
|
| 364 |
+
|
| 365 |
+
function get_installer_instance()
|
| 366 |
+
{
|
| 367 |
+
if (!isset($this->installer_instance)) {
|
| 368 |
+
$this->installer_instance = new MMB_Installer();
|
| 369 |
+
}
|
| 370 |
+
return $this->installer_instance;
|
| 371 |
+
}
|
| 372 |
+
|
| 373 |
+
/**
|
| 374 |
+
* Plugin install callback function
|
| 375 |
+
* Check PHP version
|
| 376 |
+
*/
|
| 377 |
+
function install() {
|
| 378 |
+
|
| 379 |
+
global $wpdb, $_wp_using_ext_object_cache, $current_user;
|
| 380 |
+
$_wp_using_ext_object_cache = false;
|
| 381 |
+
|
| 382 |
+
//delete plugin options, just in case
|
| 383 |
+
if ($this->mmb_multisite != false) {
|
| 384 |
+
$user_blogs = get_blogs_of_user($current_user->ID);
|
| 385 |
+
if(!empty($user_blogs)){
|
| 386 |
+
if( is_network_admin() ){
|
| 387 |
+
update_option('mmb_network_admin_install', 1);
|
| 388 |
+
foreach($user_blogs as $blog_id => $blog_data){
|
| 389 |
+
if($this->mmb_multisite != $blog_id)
|
| 390 |
+
update_blog_option($blog_id, 'mmb_network_admin_install', -1);
|
| 391 |
+
|
| 392 |
+
delete_blog_option($blog_id, '_worker_nossl_key');
|
| 393 |
+
delete_blog_option($blog_id, '_worker_public_key');
|
| 394 |
+
delete_blog_option($blog_id, '_action_message_id');
|
| 395 |
+
}
|
| 396 |
+
} else {
|
| 397 |
+
if(isset($user_blogs[$this->mmb_multisite])){
|
| 398 |
+
update_option('mmb_network_admin_install', -1);
|
| 399 |
+
delete_option('_worker_nossl_key');
|
| 400 |
+
delete_option('_worker_public_key');
|
| 401 |
+
delete_option('_action_message_id');
|
| 402 |
+
}
|
| 403 |
+
}
|
| 404 |
+
}
|
| 405 |
+
} else {
|
| 406 |
+
delete_option('_worker_nossl_key');
|
| 407 |
+
delete_option('_worker_public_key');
|
| 408 |
+
delete_option('_action_message_id');
|
| 409 |
+
}
|
| 410 |
+
|
| 411 |
+
delete_option('mwp_backup_tasks');
|
| 412 |
+
delete_option('mwp_notifications');
|
| 413 |
+
delete_option('mwp_worker_brand');
|
| 414 |
+
|
| 415 |
+
}
|
| 416 |
+
|
| 417 |
+
/**
|
| 418 |
+
* Saves the (modified) options into the database
|
| 419 |
+
*
|
| 420 |
+
*/
|
| 421 |
+
function save_options()
|
| 422 |
+
{
|
| 423 |
+
if (get_option($this->slug)) {
|
| 424 |
+
update_option($this->slug, $this->settings);
|
| 425 |
+
} else {
|
| 426 |
+
add_option($this->slug, $this->settings);
|
| 427 |
+
}
|
| 428 |
+
}
|
| 429 |
+
|
| 430 |
+
/**
|
| 431 |
+
* Deletes options for communication with master
|
| 432 |
+
*
|
| 433 |
+
*/
|
| 434 |
+
function uninstall( $deactivate = false )
|
| 435 |
+
{
|
| 436 |
+
global $current_user, $wpdb, $_wp_using_ext_object_cache;
|
| 437 |
+
$_wp_using_ext_object_cache = false;
|
| 438 |
+
|
| 439 |
+
if ($this->mmb_multisite != false) {
|
| 440 |
+
$user_blogs = get_blogs_of_user($current_user->ID);
|
| 441 |
+
if(!empty($user_blogs)){
|
| 442 |
+
if( is_network_admin() ){
|
| 443 |
+
if( $deactivate ) {
|
| 444 |
+
delete_option('mmb_network_admin_install');
|
| 445 |
+
foreach($user_blogs as $blog_id => $blog_data){
|
| 446 |
+
delete_blog_option($blog_id, 'mmb_network_admin_install');
|
| 447 |
+
delete_blog_option($blog_id, '_worker_nossl_key');
|
| 448 |
+
delete_blog_option($blog_id, '_worker_public_key');
|
| 449 |
+
delete_blog_option($blog_id, '_action_message_id');
|
| 450 |
+
}
|
| 451 |
+
}
|
| 452 |
+
} else {
|
| 453 |
+
if( $deactivate )
|
| 454 |
+
delete_option('mmb_network_admin_install');
|
| 455 |
+
if(isset($user_blogs[$this->mmb_multisite])){
|
| 456 |
+
delete_option('_worker_nossl_key');
|
| 457 |
+
delete_option('_worker_public_key');
|
| 458 |
+
delete_option('_action_message_id');
|
| 459 |
+
}
|
| 460 |
+
}
|
| 461 |
+
}
|
| 462 |
+
} else {
|
| 463 |
+
delete_option('_worker_nossl_key');
|
| 464 |
+
delete_option('_worker_public_key');
|
| 465 |
+
delete_option('_action_message_id');
|
| 466 |
+
}
|
| 467 |
+
|
| 468 |
+
//Delete backup tasks
|
| 469 |
+
delete_option('mwp_backup_tasks');
|
| 470 |
+
wp_clear_scheduled_hook('mwp_backup_tasks');
|
| 471 |
+
|
| 472 |
+
//Delete notifications
|
| 473 |
+
delete_option('mwp_notifications');
|
| 474 |
+
wp_clear_scheduled_hook('mwp_notifications');
|
| 475 |
+
delete_option('mwp_worker_brand');
|
| 476 |
+
}
|
| 477 |
+
|
| 478 |
+
|
| 479 |
+
/**
|
| 480 |
+
* Constructs a url (for ajax purpose)
|
| 481 |
+
*
|
| 482 |
+
* @param mixed $base_page
|
| 483 |
+
*/
|
| 484 |
+
function construct_url($params = array(), $base_page = 'index.php')
|
| 485 |
+
{
|
| 486 |
+
$url = "$base_page?_wpnonce=" . wp_create_nonce($this->slug);
|
| 487 |
+
foreach ($params as $key => $value) {
|
| 488 |
+
$url .= "&$key=$value";
|
| 489 |
+
}
|
| 490 |
+
|
| 491 |
+
return $url;
|
| 492 |
+
}
|
| 493 |
+
|
| 494 |
+
/**
|
| 495 |
+
* Worker update
|
| 496 |
+
*
|
| 497 |
+
*/
|
| 498 |
+
function update_worker_plugin($params)
|
| 499 |
+
{
|
| 500 |
+
extract($params);
|
| 501 |
+
if ($download_url) {
|
| 502 |
+
@include_once ABSPATH . 'wp-admin/includes/file.php';
|
| 503 |
+
@include_once ABSPATH . 'wp-admin/includes/misc.php';
|
| 504 |
+
@include_once ABSPATH . 'wp-admin/includes/template.php';
|
| 505 |
+
@include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
|
| 506 |
+
@include_once ABSPATH . 'wp-admin/includes/screen.php';
|
| 507 |
+
|
| 508 |
+
if (!$this->is_server_writable()) {
|
| 509 |
+
return array(
|
| 510 |
+
'error' => 'Failed, please <a target="_blank" href="http://managewp.com/user-guide#ftp">add FTP details for automatic upgrades.</a></a>'
|
| 511 |
+
);
|
| 512 |
+
}
|
| 513 |
+
|
| 514 |
+
ob_start();
|
| 515 |
+
@unlink(dirname(__FILE__));
|
| 516 |
+
$upgrader = new Plugin_Upgrader();
|
| 517 |
+
$result = $upgrader->run(array(
|
| 518 |
+
'package' => $download_url,
|
| 519 |
+
'destination' => WP_PLUGIN_DIR,
|
| 520 |
+
'clear_destination' => true,
|
| 521 |
+
'clear_working' => true,
|
| 522 |
+
'hook_extra' => array(
|
| 523 |
+
'plugin' => 'worker/init.php'
|
| 524 |
+
)
|
| 525 |
+
));
|
| 526 |
+
ob_end_clean();
|
| 527 |
+
if (is_wp_error($result) || !$result) {
|
| 528 |
+
return array(
|
| 529 |
+
'error' => 'ManageWP Worker plugin could not be updated.'
|
| 530 |
+
);
|
| 531 |
+
} else {
|
| 532 |
+
return array(
|
| 533 |
+
'success' => 'ManageWP Worker plugin successfully updated.'
|
| 534 |
+
);
|
| 535 |
+
}
|
| 536 |
+
}
|
| 537 |
+
return array(
|
| 538 |
+
'error' => 'Bad download path for worker installation file.'
|
| 539 |
+
);
|
| 540 |
+
}
|
| 541 |
+
|
| 542 |
+
/**
|
| 543 |
+
* Automatically logs in when called from Master
|
| 544 |
+
*
|
| 545 |
+
*/
|
| 546 |
+
function automatic_login()
|
| 547 |
+
{
|
| 548 |
+
$where = isset($_GET['mwp_goto']) ? $_GET['mwp_goto'] : false;
|
| 549 |
+
$username = isset($_GET['username']) ? $_GET['username'] : '';
|
| 550 |
+
$auto_login = isset($_GET['auto_login']) ? $_GET['auto_login'] : 0;
|
| 551 |
+
|
| 552 |
+
if( !function_exists('is_user_logged_in') )
|
| 553 |
+
include_once( ABSPATH.'wp-includes/pluggable.php' );
|
| 554 |
+
|
| 555 |
+
if (( $auto_login && strlen(trim($username)) && !is_user_logged_in() ) || (isset($this->mmb_multisite) && $this->mmb_multisite )) {
|
| 556 |
+
$signature = base64_decode($_GET['signature']);
|
| 557 |
+
$message_id = trim($_GET['message_id']);
|
| 558 |
+
|
| 559 |
+
$auth = $this->authenticate_message($where . $message_id, $signature, $message_id);
|
| 560 |
+
if ($auth === true) {
|
| 561 |
+
|
| 562 |
+
if (!headers_sent())
|
| 563 |
+
header('P3P: CP="CAO PSA OUR"');
|
| 564 |
+
|
| 565 |
+
$siteurl = get_site_option( 'siteurl' );
|
| 566 |
+
$user = get_user_by('login', $username);
|
| 567 |
+
wp_set_current_user($user->ID);
|
| 568 |
+
|
| 569 |
+
$expiration = time() + apply_filters('auth_cookie_expiration', 10800, $user->ID, false);
|
| 570 |
+
$auth_cookie = wp_generate_auth_cookie($user->ID, $expiration, 'auth');
|
| 571 |
+
$logged_in_cookie = wp_generate_auth_cookie($user->ID, $expiration, 'logged_in');
|
| 572 |
+
$_COOKIE['wordpress_'.md5( $siteurl )] = $auth_cookie;
|
| 573 |
+
$_COOKIE['wordpress_logged_in_'.md5( $siteurl )] = $logged_in_cookie;
|
| 574 |
+
|
| 575 |
+
wp_set_auth_cookie($user->ID);
|
| 576 |
+
setcookie(MMB_XFRAME_COOKIE, md5(MMB_XFRAME_COOKIE), $expiration, COOKIEPATH, COOKIE_DOMAIN, false, true);
|
| 577 |
+
$_COOKIE[MMB_XFRAME_COOKIE] = md5(MMB_XFRAME_COOKIE);
|
| 578 |
+
} else {
|
| 579 |
+
wp_die($auth['error']);
|
| 580 |
+
}
|
| 581 |
+
} elseif( is_user_logged_in() ) {
|
| 582 |
+
@mmb_worker_header();
|
| 583 |
+
}
|
| 584 |
+
}
|
| 585 |
+
|
| 586 |
+
function admin_actions(){
|
| 587 |
+
add_filter('all_plugins', array($this, 'worker_replace'));
|
| 588 |
+
}
|
| 589 |
+
|
| 590 |
+
function worker_replace($all_plugins){
|
| 591 |
+
$replace = get_option("mwp_worker_brand");
|
| 592 |
+
if(is_array($replace)){
|
| 593 |
+
if($replace['name']){
|
| 594 |
+
$all_plugins['worker/init.php']['Name'] = $replace['name'];
|
| 595 |
+
$all_plugins['worker/init.php']['Title'] = $replace['name'];
|
| 596 |
+
}
|
| 597 |
+
if($replace['desc']){
|
| 598 |
+
$all_plugins['worker/init.php']['Description'] = $replace['desc'];
|
| 599 |
+
}
|
| 600 |
+
}
|
| 601 |
+
|
| 602 |
+
return $all_plugins;
|
| 603 |
+
}
|
| 604 |
+
|
| 605 |
+
|
| 606 |
+
}
|
| 607 |
?>
|
helper.class.php
CHANGED
|
@@ -1,438 +1,500 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
* helper.class.php
|
| 5 |
-
*
|
| 6 |
-
* Utility functions
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
* Copyright (c) 2011 Prelovac Media
|
| 10 |
-
* www.prelovac.com
|
| 11 |
-
**************************************************************/
|
| 12 |
-
|
| 13 |
-
class MMB_Helper
|
| 14 |
-
{
|
| 15 |
-
/**
|
| 16 |
-
* A helper function to log data
|
| 17 |
-
*
|
| 18 |
-
* @param mixed $mixed
|
| 19 |
-
*/
|
| 20 |
-
function _log($mixed)
|
| 21 |
-
{
|
| 22 |
-
if (is_array($mixed)) {
|
| 23 |
-
$mixed = print_r($mixed, 1);
|
| 24 |
-
} else if (is_object($mixed)) {
|
| 25 |
-
ob_start();
|
| 26 |
-
var_dump($mixed);
|
| 27 |
-
$mixed = ob_get_clean();
|
| 28 |
-
}
|
| 29 |
-
|
| 30 |
-
$handle = fopen(dirname(__FILE__) . '/log', 'a');
|
| 31 |
-
fwrite($handle, $mixed . PHP_EOL);
|
| 32 |
-
fclose($handle);
|
| 33 |
-
}
|
| 34 |
-
|
| 35 |
-
function _escape(&$array)
|
| 36 |
-
{
|
| 37 |
-
global $wpdb;
|
| 38 |
-
|
| 39 |
-
if (!is_array($array)) {
|
| 40 |
-
return ($wpdb->escape($array));
|
| 41 |
-
} else {
|
| 42 |
-
foreach ((array) $array as $k => $v) {
|
| 43 |
-
if (is_array($v)) {
|
| 44 |
-
$this->_escape($array[$k]);
|
| 45 |
-
} else if (is_object($v)) {
|
| 46 |
-
//skip
|
| 47 |
-
} else {
|
| 48 |
-
$array[$k] = $wpdb->escape($v);
|
| 49 |
-
}
|
| 50 |
-
}
|
| 51 |
-
}
|
| 52 |
-
}
|
| 53 |
-
|
| 54 |
-
/**
|
| 55 |
-
* Initializes the file system
|
| 56 |
-
*
|
| 57 |
-
*/
|
| 58 |
-
function init_filesystem()
|
| 59 |
-
{
|
| 60 |
-
global $wp_filesystem;
|
| 61 |
-
|
| 62 |
-
if (!$wp_filesystem || !is_object($wp_filesystem)) {
|
| 63 |
-
WP_Filesystem();
|
| 64 |
-
}
|
| 65 |
-
|
| 66 |
-
if (!is_object($wp_filesystem))
|
| 67 |
-
return FALSE;
|
| 68 |
-
|
| 69 |
-
return TRUE;
|
| 70 |
-
}
|
| 71 |
-
|
| 72 |
-
/**
|
| 73 |
-
*
|
| 74 |
-
* Check if function exists or not on `suhosin` black list
|
| 75 |
-
*
|
| 76 |
-
*/
|
| 77 |
-
|
| 78 |
-
function
|
| 79 |
-
|
| 80 |
-
if(
|
| 81 |
-
return false;
|
| 82 |
-
|
| 83 |
-
if (
|
| 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 |
-
function
|
| 256 |
-
{
|
| 257 |
-
if (
|
| 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 |
-
if (
|
| 357 |
-
|
| 358 |
-
|
| 359 |
-
|
| 360 |
-
|
| 361 |
-
|
| 362 |
-
|
| 363 |
-
|
| 364 |
-
return
|
| 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 |
-
|
| 411 |
-
|
| 412 |
-
|
| 413 |
-
|
| 414 |
-
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
|
| 418 |
-
|
| 419 |
-
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
|
| 423 |
-
|
| 424 |
-
|
| 425 |
-
|
| 426 |
-
|
| 427 |
-
|
| 428 |
-
|
| 429 |
-
|
| 430 |
-
|
| 431 |
-
|
| 432 |
-
|
| 433 |
-
|
| 434 |
-
|
| 435 |
-
|
| 436 |
-
|
| 437 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 438 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
* helper.class.php
|
| 5 |
+
*
|
| 6 |
+
* Utility functions
|
| 7 |
+
*
|
| 8 |
+
*
|
| 9 |
+
* Copyright (c) 2011 Prelovac Media
|
| 10 |
+
* www.prelovac.com
|
| 11 |
+
**************************************************************/
|
| 12 |
+
|
| 13 |
+
class MMB_Helper
|
| 14 |
+
{
|
| 15 |
+
/**
|
| 16 |
+
* A helper function to log data
|
| 17 |
+
*
|
| 18 |
+
* @param mixed $mixed
|
| 19 |
+
*/
|
| 20 |
+
function _log($mixed)
|
| 21 |
+
{
|
| 22 |
+
if (is_array($mixed)) {
|
| 23 |
+
$mixed = print_r($mixed, 1);
|
| 24 |
+
} else if (is_object($mixed)) {
|
| 25 |
+
ob_start();
|
| 26 |
+
var_dump($mixed);
|
| 27 |
+
$mixed = ob_get_clean();
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
$handle = fopen(dirname(__FILE__) . '/log', 'a');
|
| 31 |
+
fwrite($handle, $mixed . PHP_EOL);
|
| 32 |
+
fclose($handle);
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
function _escape(&$array)
|
| 36 |
+
{
|
| 37 |
+
global $wpdb;
|
| 38 |
+
|
| 39 |
+
if (!is_array($array)) {
|
| 40 |
+
return ($wpdb->escape($array));
|
| 41 |
+
} else {
|
| 42 |
+
foreach ((array) $array as $k => $v) {
|
| 43 |
+
if (is_array($v)) {
|
| 44 |
+
$this->_escape($array[$k]);
|
| 45 |
+
} else if (is_object($v)) {
|
| 46 |
+
//skip
|
| 47 |
+
} else {
|
| 48 |
+
$array[$k] = $wpdb->escape($v);
|
| 49 |
+
}
|
| 50 |
+
}
|
| 51 |
+
}
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
/**
|
| 55 |
+
* Initializes the file system
|
| 56 |
+
*
|
| 57 |
+
*/
|
| 58 |
+
function init_filesystem()
|
| 59 |
+
{
|
| 60 |
+
global $wp_filesystem;
|
| 61 |
+
|
| 62 |
+
if (!$wp_filesystem || !is_object($wp_filesystem)) {
|
| 63 |
+
WP_Filesystem();
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
if (!is_object($wp_filesystem))
|
| 67 |
+
return FALSE;
|
| 68 |
+
|
| 69 |
+
return TRUE;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
/**
|
| 73 |
+
*
|
| 74 |
+
* Check if function exists or not on `suhosin` black list
|
| 75 |
+
*
|
| 76 |
+
*/
|
| 77 |
+
|
| 78 |
+
function mmb_get_user_info( $user_info = false, $info = 'login' ){
|
| 79 |
+
|
| 80 |
+
if($user_info === false)
|
| 81 |
+
return false;
|
| 82 |
+
|
| 83 |
+
if( strlen( trim( $user_info ) ) == 0)
|
| 84 |
+
return false;
|
| 85 |
+
|
| 86 |
+
|
| 87 |
+
global $wp_version;
|
| 88 |
+
if (version_compare($wp_version, '3.2.9', '<=')){
|
| 89 |
+
return get_userdatabylogin( $user_info );
|
| 90 |
+
} else {
|
| 91 |
+
return get_user_by( $info, $user_info );
|
| 92 |
+
}
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
/**
|
| 96 |
+
*
|
| 97 |
+
* Call action item filters
|
| 98 |
+
*
|
| 99 |
+
*/
|
| 100 |
+
|
| 101 |
+
function mmb_parse_action_params( $key = '', $params = null, $call_object = null ){
|
| 102 |
+
|
| 103 |
+
global $_mmb_item_filter;
|
| 104 |
+
$call_object = $call_object !== null ? $call_object : $this;
|
| 105 |
+
// $this->_log('key: '.print_r($key, true));
|
| 106 |
+
// $this->_log('params: '.print_r($params, true));
|
| 107 |
+
// $this->_log('call_object: '.print_r($call_object, true));
|
| 108 |
+
// $this->_log('$_mmb_item_filter[$key]: '.print_r($_mmb_item_filter[$key], true));
|
| 109 |
+
$return = array();
|
| 110 |
+
|
| 111 |
+
if(isset($_mmb_item_filter[$key]) && !empty($_mmb_item_filter[$key])){
|
| 112 |
+
if( isset($params['item_filter']) && !empty($params['item_filter'])){
|
| 113 |
+
foreach($params['item_filter'] as $_items){
|
| 114 |
+
if(!empty($_items)){
|
| 115 |
+
foreach($_items as $_item){
|
| 116 |
+
if(in_array($_item[0], $_mmb_item_filter[$key])){
|
| 117 |
+
$_item[1] = isset($_item[1]) ? $_item[1] : array();
|
| 118 |
+
$return = call_user_func(array( &$call_object, 'get_'.$_item[0]), $return, $_item[1]);
|
| 119 |
+
}
|
| 120 |
+
}
|
| 121 |
+
}
|
| 122 |
+
}
|
| 123 |
+
}
|
| 124 |
+
}
|
| 125 |
+
|
| 126 |
+
return $return;
|
| 127 |
+
}
|
| 128 |
+
|
| 129 |
+
/**
|
| 130 |
+
*
|
| 131 |
+
* Check if function exists or not on `suhosin` black list
|
| 132 |
+
*
|
| 133 |
+
*/
|
| 134 |
+
|
| 135 |
+
function mmb_function_exists($function_callback){
|
| 136 |
+
|
| 137 |
+
if(!function_exists($function_callback))
|
| 138 |
+
return false;
|
| 139 |
+
|
| 140 |
+
if (extension_loaded('suhosin')) {
|
| 141 |
+
$suhosin = @ini_get("suhosin.executor.func.blacklist");
|
| 142 |
+
if (empty($suhosin) == false) {
|
| 143 |
+
$suhosin = explode(',', $suhosin);
|
| 144 |
+
$blacklist = array_map('trim', $suhosin);
|
| 145 |
+
$blacklist = array_map('strtolower', $blacklist);
|
| 146 |
+
if(in_array($function_callback, $blacklist))
|
| 147 |
+
return false;
|
| 148 |
+
}
|
| 149 |
+
}
|
| 150 |
+
return true;
|
| 151 |
+
}
|
| 152 |
+
|
| 153 |
+
/**
|
| 154 |
+
* Gets transient based on WP version
|
| 155 |
+
*
|
| 156 |
+
* @global string $wp_version
|
| 157 |
+
* @param string $option_name
|
| 158 |
+
* @return mixed
|
| 159 |
+
*/
|
| 160 |
+
|
| 161 |
+
function mmb_set_transient($option_name = false, $data = false){
|
| 162 |
+
|
| 163 |
+
if (!$option_name || !$data) {
|
| 164 |
+
return false;
|
| 165 |
+
}
|
| 166 |
+
if($this->mmb_multisite)
|
| 167 |
+
return $this->mmb_set_sitemeta_transient($option_name, $data);
|
| 168 |
+
|
| 169 |
+
global $wp_version;
|
| 170 |
+
|
| 171 |
+
if (version_compare($wp_version, '2.7.9', '<=')) {
|
| 172 |
+
update_option($option_name, $data);
|
| 173 |
+
} else if (version_compare($wp_version, '2.9.9', '<=')) {
|
| 174 |
+
update_option('_transient_' . $option_name, $data);
|
| 175 |
+
} else {
|
| 176 |
+
update_option('_site_transient_' . $option_name, $data);
|
| 177 |
+
}
|
| 178 |
+
|
| 179 |
+
}
|
| 180 |
+
function mmb_get_transient($option_name)
|
| 181 |
+
{
|
| 182 |
+
if (trim($option_name) == '') {
|
| 183 |
+
return FALSE;
|
| 184 |
+
}
|
| 185 |
+
if($this->mmb_multisite)
|
| 186 |
+
return $this->mmb_get_sitemeta_transient($option_name);
|
| 187 |
+
|
| 188 |
+
global $wp_version;
|
| 189 |
+
|
| 190 |
+
$transient = array();
|
| 191 |
+
|
| 192 |
+
if (version_compare($wp_version, '2.7.9', '<=')) {
|
| 193 |
+
return get_option($option_name);
|
| 194 |
+
} else if (version_compare($wp_version, '2.9.9', '<=')) {
|
| 195 |
+
$transient = get_option('_transient_' . $option_name);
|
| 196 |
+
return apply_filters("transient_".$option_name, $transient);
|
| 197 |
+
} else {
|
| 198 |
+
$transient = get_option('_site_transient_' . $option_name);
|
| 199 |
+
return apply_filters("site_transient_".$option_name, $transient);
|
| 200 |
+
}
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
function mmb_delete_transient($option_name)
|
| 204 |
+
{
|
| 205 |
+
if (trim($option_name) == '') {
|
| 206 |
+
return FALSE;
|
| 207 |
+
}
|
| 208 |
+
|
| 209 |
+
global $wp_version;
|
| 210 |
+
|
| 211 |
+
if (version_compare($wp_version, '2.7.9', '<=')) {
|
| 212 |
+
delete_option($option_name);
|
| 213 |
+
} else if (version_compare($wp_version, '2.9.9', '<=')) {
|
| 214 |
+
delete_option('_transient_' . $option_name);
|
| 215 |
+
} else {
|
| 216 |
+
delete_option('_site_transient_' . $option_name);
|
| 217 |
+
}
|
| 218 |
+
}
|
| 219 |
+
|
| 220 |
+
function mmb_get_sitemeta_transient($option_name){
|
| 221 |
+
global $wpdb;
|
| 222 |
+
$option_name = '_site_transient_'. $option_name;
|
| 223 |
+
|
| 224 |
+
$result = $wpdb->get_var( $wpdb->prepare("SELECT `meta_value` FROM `{$wpdb->sitemeta}` WHERE meta_key = '{$option_name}' AND `site_id` = '{$this->mmb_multisite}' "));
|
| 225 |
+
$result = maybe_unserialize($result);
|
| 226 |
+
return $result;
|
| 227 |
+
}
|
| 228 |
+
|
| 229 |
+
function mmb_set_sitemeta_transient($option_name, $option_value){
|
| 230 |
+
global $wpdb;
|
| 231 |
+
$option_name = '_site_transient_'. $option_name;
|
| 232 |
+
|
| 233 |
+
if($this->mmb_get_sitemeta_transient($option_name)){
|
| 234 |
+
$result = $wpdb->update( $wpdb->sitemeta,
|
| 235 |
+
array(
|
| 236 |
+
'meta_value' => maybe_serialize($option_value)
|
| 237 |
+
),
|
| 238 |
+
array(
|
| 239 |
+
'meta_key' => $option_name,
|
| 240 |
+
'site_id' => $this->mmb_multisite
|
| 241 |
+
)
|
| 242 |
+
);
|
| 243 |
+
}else {
|
| 244 |
+
$result = $wpdb->insert( $wpdb->sitemeta,
|
| 245 |
+
array(
|
| 246 |
+
'meta_key' => $option_name,
|
| 247 |
+
'meta_value' => maybe_serialize($option_value),
|
| 248 |
+
'site_id' => $this->mmb_multisite
|
| 249 |
+
)
|
| 250 |
+
);
|
| 251 |
+
}
|
| 252 |
+
return $result;
|
| 253 |
+
}
|
| 254 |
+
|
| 255 |
+
function delete_temp_dir($directory)
|
| 256 |
+
{
|
| 257 |
+
if (substr($directory, -1) == "/") {
|
| 258 |
+
$directory = substr($directory, 0, -1);
|
| 259 |
+
}
|
| 260 |
+
if (!file_exists($directory) || !is_dir($directory)) {
|
| 261 |
+
return false;
|
| 262 |
+
} elseif (!is_readable($directory)) {
|
| 263 |
+
return false;
|
| 264 |
+
} else {
|
| 265 |
+
$directoryHandle = opendir($directory);
|
| 266 |
+
|
| 267 |
+
while ($contents = readdir($directoryHandle)) {
|
| 268 |
+
if ($contents != '.' && $contents != '..') {
|
| 269 |
+
$path = $directory . "/" . $contents;
|
| 270 |
+
|
| 271 |
+
if (is_dir($path)) {
|
| 272 |
+
$this->delete_temp_dir($path);
|
| 273 |
+
} else {
|
| 274 |
+
unlink($path);
|
| 275 |
+
}
|
| 276 |
+
}
|
| 277 |
+
}
|
| 278 |
+
closedir($directoryHandle);
|
| 279 |
+
rmdir($directory);
|
| 280 |
+
return true;
|
| 281 |
+
}
|
| 282 |
+
}
|
| 283 |
+
|
| 284 |
+
function set_worker_message_id($message_id = false)
|
| 285 |
+
{
|
| 286 |
+
if ($message_id) {
|
| 287 |
+
add_option('_action_message_id', $message_id) or update_option('_action_message_id', $message_id);
|
| 288 |
+
return $message_id;
|
| 289 |
+
}
|
| 290 |
+
return false;
|
| 291 |
+
}
|
| 292 |
+
|
| 293 |
+
function get_worker_message_id()
|
| 294 |
+
{
|
| 295 |
+
return (int) get_option('_action_message_id');
|
| 296 |
+
}
|
| 297 |
+
|
| 298 |
+
function set_master_public_key($public_key = false)
|
| 299 |
+
{
|
| 300 |
+
if ($public_key && !get_option('_worker_public_key')) {
|
| 301 |
+
add_option('_worker_public_key', base64_encode($public_key));
|
| 302 |
+
return true;
|
| 303 |
+
}
|
| 304 |
+
return false;
|
| 305 |
+
}
|
| 306 |
+
|
| 307 |
+
function get_master_public_key()
|
| 308 |
+
{
|
| 309 |
+
if (!get_option('_worker_public_key'))
|
| 310 |
+
return false;
|
| 311 |
+
return base64_decode(get_option('_worker_public_key'));
|
| 312 |
+
}
|
| 313 |
+
|
| 314 |
+
|
| 315 |
+
function get_random_signature()
|
| 316 |
+
{
|
| 317 |
+
if (!get_option('_worker_nossl_key'))
|
| 318 |
+
return false;
|
| 319 |
+
return base64_decode(get_option('_worker_nossl_key'));
|
| 320 |
+
}
|
| 321 |
+
|
| 322 |
+
function set_random_signature($random_key = false)
|
| 323 |
+
{
|
| 324 |
+
if ($random_key && !get_option('_worker_nossl_key')) {
|
| 325 |
+
add_option('_worker_nossl_key', base64_encode($random_key));
|
| 326 |
+
return true;
|
| 327 |
+
}
|
| 328 |
+
return false;
|
| 329 |
+
}
|
| 330 |
+
|
| 331 |
+
|
| 332 |
+
function authenticate_message($data = false, $signature = false, $message_id = false)
|
| 333 |
+
{
|
| 334 |
+
if (!$data && !$signature) {
|
| 335 |
+
return array(
|
| 336 |
+
'error' => 'Authentication failed.'
|
| 337 |
+
);
|
| 338 |
+
}
|
| 339 |
+
|
| 340 |
+
$current_message = $this->get_worker_message_id();
|
| 341 |
+
|
| 342 |
+
if ((int) $current_message > (int) $message_id)
|
| 343 |
+
return array(
|
| 344 |
+
'error' => 'Invalid message recieved. Deactivate and activate the ManageWP Worker plugin on this site, then remove the website from your ManageWP account and add it again.'
|
| 345 |
+
);
|
| 346 |
+
|
| 347 |
+
$pl_key = $this->get_master_public_key();
|
| 348 |
+
if (!$pl_key) {
|
| 349 |
+
return array(
|
| 350 |
+
'error' => 'Authentication failed. Deactivate and activate the ManageWP Worker plugin on this site, then remove the website from your ManageWP account and add it again.'
|
| 351 |
+
);
|
| 352 |
+
}
|
| 353 |
+
|
| 354 |
+
if (function_exists('openssl_verify') && !$this->get_random_signature()) {
|
| 355 |
+
$verify = openssl_verify($data, $signature, $pl_key);
|
| 356 |
+
if ($verify == 1) {
|
| 357 |
+
$message_id = $this->set_worker_message_id($message_id);
|
| 358 |
+
return true;
|
| 359 |
+
} else if ($verify == 0) {
|
| 360 |
+
return array(
|
| 361 |
+
'error' => 'Invalid message signature. Deactivate and activate the ManageWP Worker plugin on this site, then remove the website from your ManageWP account and add it again.'
|
| 362 |
+
);
|
| 363 |
+
} else {
|
| 364 |
+
return array(
|
| 365 |
+
'error' => 'Command not successful! Please try again.'
|
| 366 |
+
);
|
| 367 |
+
}
|
| 368 |
+
} else if ($this->get_random_signature()) {
|
| 369 |
+
if (md5($data . $this->get_random_signature()) == $signature) {
|
| 370 |
+
$message_id = $this->set_worker_message_id($message_id);
|
| 371 |
+
return true;
|
| 372 |
+
}
|
| 373 |
+
return array(
|
| 374 |
+
'error' => 'Invalid message signature. Deactivate and activate the ManageWP Worker plugin on this site, then remove the website from your ManageWP account and add it again.'
|
| 375 |
+
);
|
| 376 |
+
}
|
| 377 |
+
// no rand key - deleted in get_stat maybe
|
| 378 |
+
else
|
| 379 |
+
return array(
|
| 380 |
+
'error' => 'Invalid message signature. Deactivate and activate the ManageWP Worker plugin on this site, then remove the website from your ManageWP account and add it again.'
|
| 381 |
+
);
|
| 382 |
+
}
|
| 383 |
+
|
| 384 |
+
function _secure_data($data = false){
|
| 385 |
+
if($data == false)
|
| 386 |
+
return false;
|
| 387 |
+
|
| 388 |
+
$pl_key = $this->get_master_public_key();
|
| 389 |
+
if (!$pl_key)
|
| 390 |
+
return false;
|
| 391 |
+
|
| 392 |
+
$secure = '';
|
| 393 |
+
if( function_exists('openssl_public_decrypt') && !$this->get_random_signature()){
|
| 394 |
+
if(is_array($data) && !empty($data)){
|
| 395 |
+
foreach($data as $input){
|
| 396 |
+
openssl_public_decrypt($input, $decrypted, $pl_key);
|
| 397 |
+
$secure .= $decrypted;
|
| 398 |
+
}
|
| 399 |
+
} else {
|
| 400 |
+
openssl_public_decrypt($input, $decrypted, $pl_key);
|
| 401 |
+
$secure = $decrypted;
|
| 402 |
+
}
|
| 403 |
+
return $secure;
|
| 404 |
+
}
|
| 405 |
+
return false;
|
| 406 |
+
|
| 407 |
+
}
|
| 408 |
+
|
| 409 |
+
function check_if_user_exists($username = false)
|
| 410 |
+
{
|
| 411 |
+
global $wpdb;
|
| 412 |
+
if ($username) {
|
| 413 |
+
if( !function_exists('username_exists') )
|
| 414 |
+
include_once(ABSPATH . WPINC . '/registration.php');
|
| 415 |
+
|
| 416 |
+
include_once(ABSPATH . 'wp-includes/pluggable.php');
|
| 417 |
+
|
| 418 |
+
if (username_exists($username) == null) {
|
| 419 |
+
return false;
|
| 420 |
+
}
|
| 421 |
+
|
| 422 |
+
$user = (array) $this->mmb_get_user_info( $username );
|
| 423 |
+
|
| 424 |
+
if ((isset($user[$wpdb->prefix . 'user_level']) && $user[$wpdb->prefix . 'user_level'] == 10) || isset($user[$wpdb->prefix . 'capabilities']['administrator']) ||
|
| 425 |
+
(isset($user['caps']['administrator']) && $user['caps']['administrator'] == 1)){
|
| 426 |
+
return true;
|
| 427 |
+
}
|
| 428 |
+
return false;
|
| 429 |
+
}
|
| 430 |
+
return false;
|
| 431 |
+
}
|
| 432 |
+
|
| 433 |
+
function refresh_updates()
|
| 434 |
+
{
|
| 435 |
+
if (rand(1, 3) == '2') {
|
| 436 |
+
require_once(ABSPATH . WPINC . '/update.php');
|
| 437 |
+
wp_update_plugins();
|
| 438 |
+
wp_update_themes();
|
| 439 |
+
wp_version_check();
|
| 440 |
+
}
|
| 441 |
+
}
|
| 442 |
+
|
| 443 |
+
function remove_http($url = '')
|
| 444 |
+
{
|
| 445 |
+
if ($url == 'http://' OR $url == 'https://') {
|
| 446 |
+
return $url;
|
| 447 |
+
}
|
| 448 |
+
return preg_replace('/^(http|https)\:\/\/(www.)?/i', '', $url);
|
| 449 |
+
|
| 450 |
+
}
|
| 451 |
+
|
| 452 |
+
function mmb_get_error($error_object)
|
| 453 |
+
{
|
| 454 |
+
if (!is_wp_error($error_object)) {
|
| 455 |
+
return $error_object != '' ? $error_object : '';
|
| 456 |
+
} else {
|
| 457 |
+
$errors = array();
|
| 458 |
+
if(!empty($error_object->error_data)) {
|
| 459 |
+
foreach ($error_object->error_data as $error_key => $error_string) {
|
| 460 |
+
$errors[] = str_replace('_', ' ', ucfirst($error_key)) . ': ' . $error_string;
|
| 461 |
+
}
|
| 462 |
+
} elseif (!empty($error_object->errors)){
|
| 463 |
+
foreach ($error_object->errors as $error_key => $err) {
|
| 464 |
+
$errors[] = 'Error: '.str_replace('_', ' ', strtolower($error_key));
|
| 465 |
+
}
|
| 466 |
+
}
|
| 467 |
+
return implode('<br />', $errors);
|
| 468 |
+
}
|
| 469 |
+
}
|
| 470 |
+
|
| 471 |
+
function is_server_writable(){
|
| 472 |
+
if((!defined('FTP_HOST') || !defined('FTP_USER') || !defined('FTP_PASS')) && (get_filesystem_method(array(), false) != 'direct'))
|
| 473 |
+
return false;
|
| 474 |
+
else
|
| 475 |
+
return true;
|
| 476 |
+
}
|
| 477 |
+
|
| 478 |
+
function mmb_download_url($url, $file_name)
|
| 479 |
+
{
|
| 480 |
+
if (function_exists('fopen') && function_exists('ini_get') && ini_get('allow_url_fopen') == true && ($destination = @fopen($file_name, 'wb')) && ($source = @fopen($url, "r")) ) {
|
| 481 |
+
|
| 482 |
+
|
| 483 |
+
while ($a = @fread($source, 1024* 1024)) {
|
| 484 |
+
@fwrite($destination, $a);
|
| 485 |
+
}
|
| 486 |
+
|
| 487 |
+
fclose($source);
|
| 488 |
+
fclose($destination);
|
| 489 |
+
} else
|
| 490 |
+
if (!fsockopen_download($url, $file_name))
|
| 491 |
+
die('Error downloading file ' . $url);
|
| 492 |
+
return $file_name;
|
| 493 |
+
}
|
| 494 |
+
|
| 495 |
+
|
| 496 |
+
|
| 497 |
+
|
| 498 |
+
|
| 499 |
+
}
|
| 500 |
?>
|
init.php
CHANGED
|
@@ -1,719 +1,751 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*
|
| 3 |
-
Plugin Name: ManageWP - Worker
|
| 4 |
-
Plugin URI: http://managewp.com/
|
| 5 |
-
Description: Manage all your blogs from one dashboard. Visit <a href="http://managewp.com">ManageWP.com</a> to sign up.
|
| 6 |
-
Author: Prelovac Media
|
| 7 |
-
Version: 3.9.
|
| 8 |
-
Author URI: http://www.prelovac.com
|
| 9 |
-
*/
|
| 10 |
-
|
| 11 |
-
/*************************************************************
|
| 12 |
-
*
|
| 13 |
-
* init.php
|
| 14 |
-
*
|
| 15 |
-
* Initialize the communication with master
|
| 16 |
-
*
|
| 17 |
-
*
|
| 18 |
-
* Copyright (c) 2011 Prelovac Media
|
| 19 |
-
* www.prelovac.com
|
| 20 |
-
**************************************************************/
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
define('MMB_WORKER_VERSION', '3.9.
|
| 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 |
-
if(
|
| 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 |
-
if(
|
| 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 |
-
if( !function_exists ( '
|
| 391 |
-
function
|
| 392 |
-
{
|
| 393 |
-
|
| 394 |
-
|
| 395 |
-
$mmb_core->
|
| 396 |
-
|
| 397 |
-
|
| 398 |
-
|
| 399 |
-
|
| 400 |
-
|
| 401 |
-
|
| 402 |
-
|
| 403 |
-
|
| 404 |
-
|
| 405 |
-
$mmb_core
|
| 406 |
-
$
|
| 407 |
-
|
| 408 |
-
|
| 409 |
-
|
| 410 |
-
|
| 411 |
-
|
| 412 |
-
|
| 413 |
-
|
| 414 |
-
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
|
| 418 |
-
|
| 419 |
-
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
|
| 423 |
-
|
| 424 |
-
|
| 425 |
-
|
| 426 |
-
|
| 427 |
-
|
| 428 |
-
|
| 429 |
-
|
| 430 |
-
|
| 431 |
-
|
| 432 |
-
|
| 433 |
-
|
| 434 |
-
|
| 435 |
-
|
| 436 |
-
|
| 437 |
-
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
|
| 441 |
-
|
| 442 |
-
|
| 443 |
-
|
| 444 |
-
|
| 445 |
-
|
| 446 |
-
|
| 447 |
-
|
| 448 |
-
}
|
| 449 |
-
|
| 450 |
-
|
| 451 |
-
if( !function_exists ( '
|
| 452 |
-
function
|
| 453 |
-
{
|
| 454 |
-
|
| 455 |
-
$
|
| 456 |
-
$
|
| 457 |
-
|
| 458 |
-
|
| 459 |
-
|
| 460 |
-
|
| 461 |
-
|
| 462 |
-
|
| 463 |
-
|
| 464 |
-
|
| 465 |
-
|
| 466 |
-
|
| 467 |
-
|
| 468 |
-
|
| 469 |
-
|
| 470 |
-
|
| 471 |
-
|
| 472 |
-
|
| 473 |
-
|
| 474 |
-
|
| 475 |
-
|
| 476 |
-
|
| 477 |
-
|
| 478 |
-
|
| 479 |
-
|
| 480 |
-
|
| 481 |
-
|
| 482 |
-
|
| 483 |
-
|
| 484 |
-
|
| 485 |
-
|
| 486 |
-
|
| 487 |
-
|
| 488 |
-
|
| 489 |
-
|
| 490 |
-
|
| 491 |
-
|
| 492 |
-
|
| 493 |
-
|
| 494 |
-
|
| 495 |
-
|
| 496 |
-
|
| 497 |
-
|
| 498 |
-
|
| 499 |
-
|
| 500 |
-
|
| 501 |
-
|
| 502 |
-
|
| 503 |
-
|
| 504 |
-
|
| 505 |
-
|
| 506 |
-
|
| 507 |
-
|
| 508 |
-
|
| 509 |
-
|
| 510 |
-
|
| 511 |
-
|
| 512 |
-
|
| 513 |
-
|
| 514 |
-
|
| 515 |
-
|
| 516 |
-
|
| 517 |
-
|
| 518 |
-
|
| 519 |
-
|
| 520 |
-
|
| 521 |
-
|
| 522 |
-
|
| 523 |
-
|
| 524 |
-
|
| 525 |
-
|
| 526 |
-
|
| 527 |
-
|
| 528 |
-
|
| 529 |
-
|
| 530 |
-
|
| 531 |
-
|
| 532 |
-
|
| 533 |
-
|
| 534 |
-
|
| 535 |
-
}
|
| 536 |
-
|
| 537 |
-
if( !function_exists ( '
|
| 538 |
-
function
|
| 539 |
-
{
|
| 540 |
-
global $mmb_core;
|
| 541 |
-
$mmb_core->
|
| 542 |
-
|
| 543 |
-
|
| 544 |
-
|
| 545 |
-
|
| 546 |
-
|
| 547 |
-
|
| 548 |
-
|
| 549 |
-
|
| 550 |
-
|
| 551 |
-
|
| 552 |
-
|
| 553 |
-
|
| 554 |
-
|
| 555 |
-
|
| 556 |
-
|
| 557 |
-
|
| 558 |
-
|
| 559 |
-
|
| 560 |
-
|
| 561 |
-
|
| 562 |
-
|
| 563 |
-
$return
|
| 564 |
-
|
| 565 |
-
|
| 566 |
-
|
| 567 |
-
|
| 568 |
-
|
| 569 |
-
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
|
| 573 |
-
|
| 574 |
-
|
| 575 |
-
|
| 576 |
-
|
| 577 |
-
|
| 578 |
-
|
| 579 |
-
|
| 580 |
-
|
| 581 |
-
|
| 582 |
-
|
| 583 |
-
|
| 584 |
-
|
| 585 |
-
|
| 586 |
-
|
| 587 |
-
|
| 588 |
-
|
| 589 |
-
|
| 590 |
-
|
| 591 |
-
|
| 592 |
-
|
| 593 |
-
|
| 594 |
-
|
| 595 |
-
|
| 596 |
-
|
| 597 |
-
|
| 598 |
-
|
| 599 |
-
|
| 600 |
-
|
| 601 |
-
|
| 602 |
-
|
| 603 |
-
|
| 604 |
-
|
| 605 |
-
|
| 606 |
-
|
| 607 |
-
|
| 608 |
-
|
| 609 |
-
|
| 610 |
-
|
| 611 |
-
|
| 612 |
-
}
|
| 613 |
-
|
| 614 |
-
|
| 615 |
-
if( !function_exists ( '
|
| 616 |
-
function
|
| 617 |
-
{
|
| 618 |
-
|
| 619 |
-
|
| 620 |
-
$
|
| 621 |
-
|
| 622 |
-
|
| 623 |
-
|
| 624 |
-
|
| 625 |
-
|
| 626 |
-
|
| 627 |
-
|
| 628 |
-
|
| 629 |
-
|
| 630 |
-
|
| 631 |
-
|
| 632 |
-
|
| 633 |
-
|
| 634 |
-
|
| 635 |
-
|
| 636 |
-
|
| 637 |
-
|
| 638 |
-
|
| 639 |
-
|
| 640 |
-
|
| 641 |
-
|
| 642 |
-
|
| 643 |
-
|
| 644 |
-
|
| 645 |
-
|
| 646 |
-
|
| 647 |
-
|
| 648 |
-
|
| 649 |
-
|
| 650 |
-
|
| 651 |
-
|
| 652 |
-
|
| 653 |
-
|
| 654 |
-
|
| 655 |
-
|
| 656 |
-
|
| 657 |
-
$
|
| 658 |
-
|
| 659 |
-
|
| 660 |
-
|
| 661 |
-
|
| 662 |
-
|
| 663 |
-
}
|
| 664 |
-
|
| 665 |
-
|
| 666 |
-
|
| 667 |
-
|
| 668 |
-
|
| 669 |
-
|
| 670 |
-
|
| 671 |
-
|
| 672 |
-
|
| 673 |
-
|
| 674 |
-
|
| 675 |
-
|
| 676 |
-
|
| 677 |
-
|
| 678 |
-
|
| 679 |
-
|
| 680 |
-
|
| 681 |
-
|
| 682 |
-
|
| 683 |
-
|
| 684 |
-
|
| 685 |
-
}
|
| 686 |
-
|
| 687 |
-
|
| 688 |
-
|
| 689 |
-
|
| 690 |
-
|
| 691 |
-
|
| 692 |
-
|
| 693 |
-
$
|
| 694 |
-
|
| 695 |
-
|
| 696 |
-
|
| 697 |
-
|
| 698 |
-
|
| 699 |
-
|
| 700 |
-
|
| 701 |
-
|
| 702 |
-
|
| 703 |
-
|
| 704 |
-
|
| 705 |
-
|
| 706 |
-
|
| 707 |
-
|
| 708 |
-
|
| 709 |
-
|
| 710 |
-
if(
|
| 711 |
-
|
| 712 |
-
|
| 713 |
-
|
| 714 |
-
|
| 715 |
-
|
| 716 |
-
|
| 717 |
-
}
|
| 718 |
-
|
| 719 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/*
|
| 3 |
+
Plugin Name: ManageWP - Worker
|
| 4 |
+
Plugin URI: http://managewp.com/
|
| 5 |
+
Description: Manage all your blogs from one dashboard. Visit <a href="http://managewp.com">ManageWP.com</a> to sign up.
|
| 6 |
+
Author: Prelovac Media
|
| 7 |
+
Version: 3.9.10
|
| 8 |
+
Author URI: http://www.prelovac.com
|
| 9 |
+
*/
|
| 10 |
+
|
| 11 |
+
/*************************************************************
|
| 12 |
+
*
|
| 13 |
+
* init.php
|
| 14 |
+
*
|
| 15 |
+
* Initialize the communication with master
|
| 16 |
+
*
|
| 17 |
+
*
|
| 18 |
+
* Copyright (c) 2011 Prelovac Media
|
| 19 |
+
* www.prelovac.com
|
| 20 |
+
**************************************************************/
|
| 21 |
+
|
| 22 |
+
if(!defined('MMB_WORKER_VERSION'))
|
| 23 |
+
define('MMB_WORKER_VERSION', '3.9.10');
|
| 24 |
+
|
| 25 |
+
if ( function_exists('get_site_option') && !defined('MMB_XFRAME_COOKIE'))
|
| 26 |
+
define('MMB_XFRAME_COOKIE', $xframe = 'wordpress_'.md5(get_site_option( 'siteurl' )).'_xframe');
|
| 27 |
+
|
| 28 |
+
global $wpdb, $mmb_plugin_dir, $mmb_plugin_url, $wp_version, $mmb_filters, $_mmb_item_filter;
|
| 29 |
+
|
| 30 |
+
if (version_compare(PHP_VERSION, '5.0.0', '<')) // min version 5 supported
|
| 31 |
+
exit("<p>ManageWP Worker plugin requires PHP 5 or higher.</p>");
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
$mmb_wp_version = $wp_version;
|
| 35 |
+
$mmb_plugin_dir = WP_PLUGIN_DIR . '/' . basename(dirname(__FILE__));
|
| 36 |
+
$mmb_plugin_url = WP_PLUGIN_URL . '/' . basename(dirname(__FILE__));
|
| 37 |
+
|
| 38 |
+
require_once("$mmb_plugin_dir/helper.class.php");
|
| 39 |
+
require_once("$mmb_plugin_dir/core.class.php");
|
| 40 |
+
require_once("$mmb_plugin_dir/post.class.php");
|
| 41 |
+
require_once("$mmb_plugin_dir/comment.class.php");
|
| 42 |
+
require_once("$mmb_plugin_dir/stats.class.php");
|
| 43 |
+
require_once("$mmb_plugin_dir/backup.class.php");
|
| 44 |
+
require_once("$mmb_plugin_dir/installer.class.php");
|
| 45 |
+
require_once("$mmb_plugin_dir/link.class.php");
|
| 46 |
+
require_once("$mmb_plugin_dir/user.class.php");
|
| 47 |
+
require_once("$mmb_plugin_dir/api.php");
|
| 48 |
+
|
| 49 |
+
require_once("$mmb_plugin_dir/plugins/search/search.php");
|
| 50 |
+
require_once("$mmb_plugin_dir/plugins/cleanup/cleanup.php");
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
if( !function_exists ( 'mmb_parse_request' )) {
|
| 54 |
+
function mmb_parse_request()
|
| 55 |
+
{
|
| 56 |
+
|
| 57 |
+
if (!isset($HTTP_RAW_POST_DATA)) {
|
| 58 |
+
$HTTP_RAW_POST_DATA = file_get_contents('php://input');
|
| 59 |
+
}
|
| 60 |
+
ob_start();
|
| 61 |
+
|
| 62 |
+
global $current_user, $mmb_core, $new_actions, $wp_db_version, $wpmu_version, $_wp_using_ext_object_cache;
|
| 63 |
+
$data = base64_decode($HTTP_RAW_POST_DATA);
|
| 64 |
+
if ($data)
|
| 65 |
+
$num = @extract(unserialize($data));
|
| 66 |
+
|
| 67 |
+
if (isset($action)) {
|
| 68 |
+
$_wp_using_ext_object_cache = false;
|
| 69 |
+
@set_time_limit(600);
|
| 70 |
+
|
| 71 |
+
if (!$mmb_core->check_if_user_exists($params['username']))
|
| 72 |
+
mmb_response('Username <b>' . $params['username'] . '</b> does not have administrator capabilities. Enter the correct username in the site options.', false);
|
| 73 |
+
|
| 74 |
+
if ($action == 'add_site') {
|
| 75 |
+
mmb_add_site($params);
|
| 76 |
+
mmb_response('You should never see this.', false);
|
| 77 |
+
}
|
| 78 |
+
|
| 79 |
+
$auth = $mmb_core->authenticate_message($action . $id, $signature, $id);
|
| 80 |
+
if ($auth === true) {
|
| 81 |
+
|
| 82 |
+
if(isset($params['username']) && !is_user_logged_in()){
|
| 83 |
+
$user = get_user_by('login', $params['username']);
|
| 84 |
+
wp_set_current_user($user->ID);
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
/* in case database upgrade required, do database backup and perform upgrade ( wordpress wp_upgrade() function ) */
|
| 88 |
+
if( strlen(trim($wp_db_version)) && !defined('ACX_PLUGIN_DIR') ){
|
| 89 |
+
if ( get_option('db_version') != $wp_db_version ) {
|
| 90 |
+
/* in multisite network, please update database manualy */
|
| 91 |
+
if (empty($wpmu_version) || (function_exists('is_multisite') && !is_multisite())){
|
| 92 |
+
if( ! function_exists('wp_upgrade'))
|
| 93 |
+
include_once(ABSPATH.'wp-admin/includes/upgrade.php');
|
| 94 |
+
|
| 95 |
+
ob_clean();
|
| 96 |
+
@wp_upgrade();
|
| 97 |
+
@do_action('after_db_upgrade');
|
| 98 |
+
ob_end_clean();
|
| 99 |
+
}
|
| 100 |
+
}
|
| 101 |
+
}
|
| 102 |
+
|
| 103 |
+
if(isset($params['secure'])){
|
| 104 |
+
if($decrypted = $mmb_core->_secure_data($params['secure'])){
|
| 105 |
+
$decrypted = maybe_unserialize($decrypted);
|
| 106 |
+
if(is_array($decrypted)){
|
| 107 |
+
foreach($decrypted as $key => $val){
|
| 108 |
+
if(!is_numeric($key))
|
| 109 |
+
$params[$key] = $val;
|
| 110 |
+
}
|
| 111 |
+
unset($params['secure']);
|
| 112 |
+
} else $params['secure'] = $decrypted;
|
| 113 |
+
}
|
| 114 |
+
}
|
| 115 |
+
|
| 116 |
+
if( !$mmb_core->register_action_params( $action, $params ) ){
|
| 117 |
+
global $_mmb_plugin_actions;
|
| 118 |
+
$_mmb_plugin_actions[$action] = $params;
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
|
| 122 |
+
} else {
|
| 123 |
+
mmb_response($auth['error'], false);
|
| 124 |
+
}
|
| 125 |
+
}
|
| 126 |
+
ob_end_clean();
|
| 127 |
+
}
|
| 128 |
+
}
|
| 129 |
+
/* Main response function */
|
| 130 |
+
if( !function_exists ( 'mmb_response' )) {
|
| 131 |
+
|
| 132 |
+
function mmb_response($response = false, $success = true)
|
| 133 |
+
{
|
| 134 |
+
$return = array();
|
| 135 |
+
|
| 136 |
+
if ((is_array($response) && empty($response)) || (!is_array($response) && strlen($response) == 0))
|
| 137 |
+
$return['error'] = 'Empty response.';
|
| 138 |
+
else if ($success)
|
| 139 |
+
$return['success'] = $response;
|
| 140 |
+
else
|
| 141 |
+
$return['error'] = $response;
|
| 142 |
+
|
| 143 |
+
if( !headers_sent() ){
|
| 144 |
+
header('HTTP/1.0 200 OK');
|
| 145 |
+
header('Content-Type: text/plain');
|
| 146 |
+
}
|
| 147 |
+
exit("<MWPHEADER>" . base64_encode(serialize($return))."<ENDMWPHEADER>");
|
| 148 |
+
}
|
| 149 |
+
}
|
| 150 |
+
|
| 151 |
+
|
| 152 |
+
|
| 153 |
+
if( !function_exists ( 'mmb_add_site' )) {
|
| 154 |
+
function mmb_add_site($params)
|
| 155 |
+
{
|
| 156 |
+
global $mmb_core;
|
| 157 |
+
$num = extract($params);
|
| 158 |
+
|
| 159 |
+
if ($num) {
|
| 160 |
+
if (!get_option('_action_message_id') && !get_option('_worker_public_key')) {
|
| 161 |
+
$public_key = base64_decode($public_key);
|
| 162 |
+
|
| 163 |
+
if (function_exists('openssl_verify')) {
|
| 164 |
+
$verify = openssl_verify($action . $id, base64_decode($signature), $public_key);
|
| 165 |
+
if ($verify == 1) {
|
| 166 |
+
$mmb_core->set_master_public_key($public_key);
|
| 167 |
+
$mmb_core->set_worker_message_id($id);
|
| 168 |
+
$mmb_core->get_stats_instance();
|
| 169 |
+
if(is_array($notifications) && !empty($notifications)){
|
| 170 |
+
$mmb_core->stats_instance->set_notifications($notifications);
|
| 171 |
+
}
|
| 172 |
+
if(is_array($brand) && !empty($brand)){
|
| 173 |
+
update_option('mwp_worker_brand',$brand);
|
| 174 |
+
}
|
| 175 |
+
|
| 176 |
+
mmb_response($mmb_core->stats_instance->get_initial_stats(), true);
|
| 177 |
+
} else if ($verify == 0) {
|
| 178 |
+
mmb_response('Invalid message signature. Please contact us if you see this message often.', false);
|
| 179 |
+
} else {
|
| 180 |
+
mmb_response('Command not successful. Please try again.', false);
|
| 181 |
+
}
|
| 182 |
+
} else {
|
| 183 |
+
if (!get_option('_worker_nossl_key')) {
|
| 184 |
+
srand();
|
| 185 |
+
|
| 186 |
+
$random_key = md5(base64_encode($public_key) . rand(0, getrandmax()));
|
| 187 |
+
|
| 188 |
+
$mmb_core->set_random_signature($random_key);
|
| 189 |
+
$mmb_core->set_worker_message_id($id);
|
| 190 |
+
$mmb_core->set_master_public_key($public_key);
|
| 191 |
+
$mmb_core->get_stats_instance();
|
| 192 |
+
$mmb_core->get_stats_instance();
|
| 193 |
+
if(is_array($notifications) && !empty($notifications)){
|
| 194 |
+
$mmb_core->stats_instance->set_notifications($notifications);
|
| 195 |
+
}
|
| 196 |
+
|
| 197 |
+
if(is_array($brand) && !empty($brand)){
|
| 198 |
+
update_option('mwp_worker_brand',$brand);
|
| 199 |
+
}
|
| 200 |
+
|
| 201 |
+
mmb_response($mmb_core->stats_instance->get_initial_stats(), true);
|
| 202 |
+
} else
|
| 203 |
+
mmb_response('Please deactivate & activate ManageWP Worker plugin on your site, then re-add the site to your dashboard.', false);
|
| 204 |
+
}
|
| 205 |
+
} else {
|
| 206 |
+
mmb_response('Please deactivate & activate ManageWP Worker plugin on your site and re-add the site to your dashboard.', false);
|
| 207 |
+
}
|
| 208 |
+
} else {
|
| 209 |
+
mmb_response('Invalid parameters received. Please try again.', false);
|
| 210 |
+
}
|
| 211 |
+
}
|
| 212 |
+
}
|
| 213 |
+
|
| 214 |
+
if( !function_exists ( 'mmb_remove_site' )) {
|
| 215 |
+
function mmb_remove_site($params)
|
| 216 |
+
{
|
| 217 |
+
extract($params);
|
| 218 |
+
global $mmb_core;
|
| 219 |
+
$mmb_core->uninstall( $deactivate );
|
| 220 |
+
|
| 221 |
+
include_once(ABSPATH . 'wp-admin/includes/plugin.php');
|
| 222 |
+
$plugin_slug = basename(dirname(__FILE__)) . '/' . basename(__FILE__);
|
| 223 |
+
|
| 224 |
+
if ($deactivate) {
|
| 225 |
+
deactivate_plugins($plugin_slug, true);
|
| 226 |
+
}
|
| 227 |
+
|
| 228 |
+
if (!is_plugin_active($plugin_slug))
|
| 229 |
+
mmb_response(array(
|
| 230 |
+
'deactivated' => 'Site removed successfully. <br /><br />ManageWP Worker plugin successfully deactivated.'
|
| 231 |
+
), true);
|
| 232 |
+
else
|
| 233 |
+
mmb_response(array(
|
| 234 |
+
'removed_data' => 'Site removed successfully. <br /><br /><b>ManageWP Worker plugin was not deactivated.</b>'
|
| 235 |
+
), true);
|
| 236 |
+
|
| 237 |
+
}
|
| 238 |
+
}
|
| 239 |
+
if( !function_exists ( 'mmb_stats_get' )) {
|
| 240 |
+
function mmb_stats_get($params)
|
| 241 |
+
{
|
| 242 |
+
global $mmb_core;
|
| 243 |
+
$mmb_core->get_stats_instance();
|
| 244 |
+
mmb_response($mmb_core->stats_instance->get($params), true);
|
| 245 |
+
}
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
if( !function_exists ( 'mmb_worker_header' )) {
|
| 249 |
+
function mmb_worker_header()
|
| 250 |
+
{ global $mmb_core, $current_user;
|
| 251 |
+
|
| 252 |
+
if(!headers_sent()){
|
| 253 |
+
if(isset($current_user->ID))
|
| 254 |
+
$expiration = time() + apply_filters('auth_cookie_expiration', 10800, $current_user->ID, false);
|
| 255 |
+
else
|
| 256 |
+
$expiration = time() + 10800;
|
| 257 |
+
|
| 258 |
+
setcookie(MMB_XFRAME_COOKIE, md5(MMB_XFRAME_COOKIE), $expiration, COOKIEPATH, COOKIE_DOMAIN, false, true);
|
| 259 |
+
$_COOKIE[MMB_XFRAME_COOKIE] = md5(MMB_XFRAME_COOKIE);
|
| 260 |
+
}
|
| 261 |
+
}
|
| 262 |
+
}
|
| 263 |
+
|
| 264 |
+
if( !function_exists ( 'mmb_pre_init_stats' )) {
|
| 265 |
+
function mmb_pre_init_stats( $params )
|
| 266 |
+
{
|
| 267 |
+
global $mmb_core;
|
| 268 |
+
$mmb_core->get_stats_instance();
|
| 269 |
+
return $mmb_core->stats_instance->pre_init_stats($params);
|
| 270 |
+
}
|
| 271 |
+
}
|
| 272 |
+
|
| 273 |
+
//post
|
| 274 |
+
if( !function_exists ( 'mmb_post_create' )) {
|
| 275 |
+
function mmb_post_create($params)
|
| 276 |
+
{
|
| 277 |
+
global $mmb_core;
|
| 278 |
+
$mmb_core->get_post_instance();
|
| 279 |
+
$return = $mmb_core->post_instance->create($params);
|
| 280 |
+
if (is_int($return))
|
| 281 |
+
mmb_response($return, true);
|
| 282 |
+
else
|
| 283 |
+
mmb_response($return, false);
|
| 284 |
+
}
|
| 285 |
+
}
|
| 286 |
+
|
| 287 |
+
if( !function_exists ( 'mmb_change_post_status' )) {
|
| 288 |
+
function mmb_change_post_status($params)
|
| 289 |
+
{
|
| 290 |
+
global $mmb_core;
|
| 291 |
+
$mmb_core->get_post_instance();
|
| 292 |
+
$return = $mmb_core->post_instance->change_status($params);
|
| 293 |
+
//mmb_response($return, true);
|
| 294 |
+
|
| 295 |
+
}
|
| 296 |
+
}
|
| 297 |
+
|
| 298 |
+
//comments
|
| 299 |
+
if( !function_exists ( 'mmb_change_comment_status' )) {
|
| 300 |
+
function mmb_change_comment_status($params)
|
| 301 |
+
{
|
| 302 |
+
global $mmb_core;
|
| 303 |
+
$mmb_core->get_comment_instance();
|
| 304 |
+
$return = $mmb_core->comment_instance->change_status($params);
|
| 305 |
+
//mmb_response($return, true);
|
| 306 |
+
if ($return){
|
| 307 |
+
$mmb_core->get_stats_instance();
|
| 308 |
+
mmb_response($mmb_core->stats_instance->get_comments_stats($params), true);
|
| 309 |
+
}else
|
| 310 |
+
mmb_response('Comment not updated', false);
|
| 311 |
+
}
|
| 312 |
+
|
| 313 |
+
}
|
| 314 |
+
if( !function_exists ( 'mmb_comment_stats_get' )) {
|
| 315 |
+
function mmb_comment_stats_get($params)
|
| 316 |
+
{
|
| 317 |
+
global $mmb_core;
|
| 318 |
+
$mmb_core->get_stats_instance();
|
| 319 |
+
mmb_response($mmb_core->stats_instance->get_comments_stats($params), true);
|
| 320 |
+
}
|
| 321 |
+
}
|
| 322 |
+
|
| 323 |
+
if( !function_exists ( 'mmb_backup_now' )) {
|
| 324 |
+
//backup
|
| 325 |
+
function mmb_backup_now($params)
|
| 326 |
+
{
|
| 327 |
+
global $mmb_core;
|
| 328 |
+
|
| 329 |
+
$mmb_core->get_backup_instance();
|
| 330 |
+
$return = $mmb_core->backup_instance->backup($params);
|
| 331 |
+
|
| 332 |
+
if (is_array($return) && array_key_exists('error', $return))
|
| 333 |
+
mmb_response($return['error'], false);
|
| 334 |
+
else {
|
| 335 |
+
mmb_response($return, true);
|
| 336 |
+
}
|
| 337 |
+
}
|
| 338 |
+
}
|
| 339 |
+
|
| 340 |
+
if( !function_exists ( 'mmb_email_backup' )) {
|
| 341 |
+
function mmb_email_backup($params)
|
| 342 |
+
{
|
| 343 |
+
global $mmb_core;
|
| 344 |
+
$mmb_core->get_backup_instance();
|
| 345 |
+
$return = $mmb_core->backup_instance->email_backup($params);
|
| 346 |
+
|
| 347 |
+
if (is_array($return) && array_key_exists('error', $return))
|
| 348 |
+
mmb_response($return['error'], false);
|
| 349 |
+
else {
|
| 350 |
+
mmb_response($return, true);
|
| 351 |
+
}
|
| 352 |
+
}
|
| 353 |
+
}
|
| 354 |
+
if( !function_exists ( 'mmb_check_backup_compat' )) {
|
| 355 |
+
function mmb_check_backup_compat($params)
|
| 356 |
+
{
|
| 357 |
+
global $mmb_core;
|
| 358 |
+
$mmb_core->get_backup_instance();
|
| 359 |
+
$return = $mmb_core->backup_instance->check_backup_compat($params);
|
| 360 |
+
|
| 361 |
+
if (is_array($return) && array_key_exists('error', $return))
|
| 362 |
+
mmb_response($return['error'], false);
|
| 363 |
+
else {
|
| 364 |
+
mmb_response($return, true);
|
| 365 |
+
}
|
| 366 |
+
}
|
| 367 |
+
}
|
| 368 |
+
|
| 369 |
+
if( !function_exists ( 'mmb_scheduled_backup' )) {
|
| 370 |
+
function mmb_scheduled_backup($params)
|
| 371 |
+
{
|
| 372 |
+
|
| 373 |
+
global $mmb_core;
|
| 374 |
+
$mmb_core->get_backup_instance();
|
| 375 |
+
$return = $mmb_core->backup_instance->set_backup_task($params);
|
| 376 |
+
mmb_response($return, $return);
|
| 377 |
+
}
|
| 378 |
+
}
|
| 379 |
+
|
| 380 |
+
if( !function_exists ( 'mmm_delete_backup' )) {
|
| 381 |
+
function mmm_delete_backup($params)
|
| 382 |
+
{
|
| 383 |
+
global $mmb_core;
|
| 384 |
+
$mmb_core->get_backup_instance();
|
| 385 |
+
$return = $mmb_core->backup_instance->delete_backup($params);
|
| 386 |
+
mmb_response($return, $return);
|
| 387 |
+
}
|
| 388 |
+
}
|
| 389 |
+
|
| 390 |
+
if( !function_exists ( 'mmb_optimize_tables' )) {
|
| 391 |
+
function mmb_optimize_tables($params)
|
| 392 |
+
{
|
| 393 |
+
global $mmb_core;
|
| 394 |
+
$mmb_core->get_backup_instance();
|
| 395 |
+
$return = $mmb_core->backup_instance->optimize_tables();
|
| 396 |
+
if ($return)
|
| 397 |
+
mmb_response($return, true);
|
| 398 |
+
else
|
| 399 |
+
mmb_response(false, false);
|
| 400 |
+
}
|
| 401 |
+
}
|
| 402 |
+
if( !function_exists ( 'mmb_restore_now' )) {
|
| 403 |
+
function mmb_restore_now($params)
|
| 404 |
+
{
|
| 405 |
+
global $mmb_core;
|
| 406 |
+
$mmb_core->get_backup_instance();
|
| 407 |
+
$return = $mmb_core->backup_instance->restore($params);
|
| 408 |
+
if (is_array($return) && array_key_exists('error', $return))
|
| 409 |
+
mmb_response($return['error'], false);
|
| 410 |
+
else
|
| 411 |
+
mmb_response($return, true);
|
| 412 |
+
|
| 413 |
+
}
|
| 414 |
+
}
|
| 415 |
+
|
| 416 |
+
if( !function_exists ( 'mmb_remote_backup_now' )) {
|
| 417 |
+
function mmb_remote_backup_now($params)
|
| 418 |
+
{
|
| 419 |
+
global $mmb_core;
|
| 420 |
+
$backup_instance = $mmb_core->get_backup_instance();
|
| 421 |
+
$return = $mmb_core->backup_instance->remote_backup_now($params);
|
| 422 |
+
if (is_array($return) && array_key_exists('error', $return))
|
| 423 |
+
mmb_response($return['error'], false);
|
| 424 |
+
else
|
| 425 |
+
mmb_response($return, true);
|
| 426 |
+
}
|
| 427 |
+
}
|
| 428 |
+
|
| 429 |
+
|
| 430 |
+
if( !function_exists ( 'mmb_clean_orphan_backups' )) {
|
| 431 |
+
function mmb_clean_orphan_backups()
|
| 432 |
+
{
|
| 433 |
+
global $mmb_core;
|
| 434 |
+
$backup_instance = $mmb_core->get_backup_instance();
|
| 435 |
+
$return = $mmb_core->backup_instance->cleanup();
|
| 436 |
+
if(is_array($return))
|
| 437 |
+
mmb_response($return, true);
|
| 438 |
+
else
|
| 439 |
+
mmb_response($return, false);
|
| 440 |
+
}
|
| 441 |
+
}
|
| 442 |
+
|
| 443 |
+
if( !function_exists ( 'mmb_update_worker_plugin' )) {
|
| 444 |
+
function mmb_update_worker_plugin($params)
|
| 445 |
+
{
|
| 446 |
+
global $mmb_core;
|
| 447 |
+
mmb_response($mmb_core->update_worker_plugin($params), true);
|
| 448 |
+
}
|
| 449 |
+
}
|
| 450 |
+
|
| 451 |
+
if( !function_exists ( 'mmb_wp_checkversion' )) {
|
| 452 |
+
function mmb_wp_checkversion($params)
|
| 453 |
+
{
|
| 454 |
+
include_once(ABSPATH . 'wp-includes/version.php');
|
| 455 |
+
global $mmb_wp_version, $mmb_core;
|
| 456 |
+
mmb_response($mmb_wp_version, true);
|
| 457 |
+
}
|
| 458 |
+
}
|
| 459 |
+
if( !function_exists ( 'mmb_search_posts_by_term' )) {
|
| 460 |
+
function mmb_search_posts_by_term($params)
|
| 461 |
+
{
|
| 462 |
+
global $mmb_core;
|
| 463 |
+
$mmb_core->get_search_instance();
|
| 464 |
+
|
| 465 |
+
$search_type = trim($params['search_type']);
|
| 466 |
+
$search_term = strtolower(trim($params['search_term']));
|
| 467 |
+
|
| 468 |
+
switch ($search_type){
|
| 469 |
+
case 'page_post':
|
| 470 |
+
$return = $mmb_core->search_instance->search_posts_by_term($params);
|
| 471 |
+
if($return){
|
| 472 |
+
$return = serialize($return);
|
| 473 |
+
mmb_response($return, true);
|
| 474 |
+
}else{
|
| 475 |
+
mmb_response('No posts found', false);
|
| 476 |
+
}
|
| 477 |
+
break;
|
| 478 |
+
|
| 479 |
+
case 'plugin':
|
| 480 |
+
$plugins = get_option('active_plugins');
|
| 481 |
+
|
| 482 |
+
$have_plugin = false;
|
| 483 |
+
foreach ($plugins as $plugin) {
|
| 484 |
+
if(strpos($plugin, $search_term)>-1){
|
| 485 |
+
$have_plugin = true;
|
| 486 |
+
}
|
| 487 |
+
}
|
| 488 |
+
if($have_plugin){
|
| 489 |
+
mmb_response(serialize($plugin), true);
|
| 490 |
+
}else{
|
| 491 |
+
mmb_response(false, false);
|
| 492 |
+
}
|
| 493 |
+
break;
|
| 494 |
+
case 'theme':
|
| 495 |
+
$theme = strtolower(get_option('template'));
|
| 496 |
+
if(strpos($theme, $search_term)>-1){
|
| 497 |
+
mmb_response($theme, true);
|
| 498 |
+
}else{
|
| 499 |
+
mmb_response(false, false);
|
| 500 |
+
}
|
| 501 |
+
break;
|
| 502 |
+
default: mmb_response(false, false);
|
| 503 |
+
}
|
| 504 |
+
$return = $mmb_core->search_instance->search_posts_by_term($params);
|
| 505 |
+
|
| 506 |
+
|
| 507 |
+
|
| 508 |
+
if ($return_if_true) {
|
| 509 |
+
mmb_response($return_value, true);
|
| 510 |
+
} else {
|
| 511 |
+
mmb_response($return_if_false, false);
|
| 512 |
+
}
|
| 513 |
+
}
|
| 514 |
+
}
|
| 515 |
+
|
| 516 |
+
if( !function_exists ( 'mmb_install_addon' )) {
|
| 517 |
+
function mmb_install_addon($params)
|
| 518 |
+
{
|
| 519 |
+
global $mmb_core;
|
| 520 |
+
$mmb_core->get_installer_instance();
|
| 521 |
+
$return = $mmb_core->installer_instance->install_remote_file($params);
|
| 522 |
+
mmb_response($return, true);
|
| 523 |
+
|
| 524 |
+
}
|
| 525 |
+
}
|
| 526 |
+
|
| 527 |
+
if( !function_exists ( 'mmb_do_upgrade' )) {
|
| 528 |
+
function mmb_do_upgrade($params)
|
| 529 |
+
{
|
| 530 |
+
global $mmb_core, $mmb_upgrading;
|
| 531 |
+
$mmb_core->get_installer_instance();
|
| 532 |
+
$return = $mmb_core->installer_instance->do_upgrade($params);
|
| 533 |
+
mmb_response($return, true);
|
| 534 |
+
|
| 535 |
+
}
|
| 536 |
+
}
|
| 537 |
+
if( !function_exists ( 'mmb_add_link' )) {
|
| 538 |
+
function mmb_add_link($params)
|
| 539 |
+
{
|
| 540 |
+
global $mmb_core;
|
| 541 |
+
$mmb_core->get_link_instance();
|
| 542 |
+
$return = $mmb_core->link_instance->add_link($params);
|
| 543 |
+
if (is_array($return) && array_key_exists('error', $return))
|
| 544 |
+
|
| 545 |
+
mmb_response($return['error'], false);
|
| 546 |
+
else {
|
| 547 |
+
mmb_response($return, true);
|
| 548 |
+
}
|
| 549 |
+
|
| 550 |
+
}
|
| 551 |
+
}
|
| 552 |
+
|
| 553 |
+
if( !function_exists ( 'mmb_add_user' )) {
|
| 554 |
+
function mmb_add_user($params)
|
| 555 |
+
{
|
| 556 |
+
global $mmb_core;
|
| 557 |
+
$mmb_core->get_user_instance();
|
| 558 |
+
$return = $mmb_core->user_instance->add_user($params);
|
| 559 |
+
if (is_array($return) && array_key_exists('error', $return))
|
| 560 |
+
|
| 561 |
+
mmb_response($return['error'], false);
|
| 562 |
+
else {
|
| 563 |
+
mmb_response($return, true);
|
| 564 |
+
}
|
| 565 |
+
|
| 566 |
+
}
|
| 567 |
+
}
|
| 568 |
+
|
| 569 |
+
if( !function_exists ('mmb_get_users')) {
|
| 570 |
+
function mmb_get_users($params)
|
| 571 |
+
{
|
| 572 |
+
global $mmb_core;
|
| 573 |
+
$mmb_core->get_user_instance();
|
| 574 |
+
$return = $mmb_core->user_instance->get_users($params);
|
| 575 |
+
if (is_array($return) && array_key_exists('error', $return))
|
| 576 |
+
mmb_response($return['error'], false);
|
| 577 |
+
else {
|
| 578 |
+
mmb_response($return, true);
|
| 579 |
+
}
|
| 580 |
+
}
|
| 581 |
+
}
|
| 582 |
+
|
| 583 |
+
if( !function_exists ('mmb_edit_users')) {
|
| 584 |
+
function mmb_edit_users($params)
|
| 585 |
+
{
|
| 586 |
+
global $mmb_core;
|
| 587 |
+
$mmb_core->get_user_instance();
|
| 588 |
+
$return = $mmb_core->user_instance->edit_users($params);
|
| 589 |
+
mmb_response($return, true);
|
| 590 |
+
}
|
| 591 |
+
}
|
| 592 |
+
|
| 593 |
+
if( !function_exists ( 'mmb_iframe_plugins_fix' )) {
|
| 594 |
+
function mmb_iframe_plugins_fix($update_actions)
|
| 595 |
+
{
|
| 596 |
+
foreach($update_actions as $key => $action)
|
| 597 |
+
{
|
| 598 |
+
$update_actions[$key] = str_replace('target="_parent"','',$action);
|
| 599 |
+
}
|
| 600 |
+
|
| 601 |
+
return $update_actions;
|
| 602 |
+
|
| 603 |
+
}
|
| 604 |
+
}
|
| 605 |
+
if( !function_exists ( 'mmb_execute_php_code' )) {
|
| 606 |
+
function mmb_execute_php_code($params)
|
| 607 |
+
{
|
| 608 |
+
ob_start();
|
| 609 |
+
eval($params['code']);
|
| 610 |
+
$return = ob_get_flush();
|
| 611 |
+
mmb_response(print_r($return, true), true);
|
| 612 |
+
}
|
| 613 |
+
}
|
| 614 |
+
|
| 615 |
+
if( !function_exists ( 'mmb_set_notifications' )) {
|
| 616 |
+
function mmb_set_notifications($params)
|
| 617 |
+
{
|
| 618 |
+
global $mmb_core;
|
| 619 |
+
$mmb_core->get_stats_instance();
|
| 620 |
+
$return = $mmb_core->stats_instance->set_notifications($params);
|
| 621 |
+
if (is_array($return) && array_key_exists('error', $return))
|
| 622 |
+
mmb_response($return['error'], false);
|
| 623 |
+
else {
|
| 624 |
+
mmb_response($return, true);
|
| 625 |
+
}
|
| 626 |
+
|
| 627 |
+
}
|
| 628 |
+
}
|
| 629 |
+
|
| 630 |
+
if(!function_exists('mmb_more_reccurences')){
|
| 631 |
+
//Backup Tasks
|
| 632 |
+
add_filter('cron_schedules', 'mmb_more_reccurences');
|
| 633 |
+
function mmb_more_reccurences($schedules) {
|
| 634 |
+
|
| 635 |
+
$schedules['minutely'] = array('interval' => 60, 'display' => 'Once in a minute');
|
| 636 |
+
$schedules['fiveminutes'] = array('interval' => 300, 'display' => 'Once every five minutes');
|
| 637 |
+
$schedules['tenminutes'] = array('interval' => 600, 'display' => 'Once every ten minutes');
|
| 638 |
+
|
| 639 |
+
return $schedules;
|
| 640 |
+
}
|
| 641 |
+
}
|
| 642 |
+
|
| 643 |
+
|
| 644 |
+
if (!wp_next_scheduled('mwp_backup_tasks')) {
|
| 645 |
+
wp_schedule_event( time(), 'tenminutes', 'mwp_backup_tasks' );
|
| 646 |
+
}
|
| 647 |
+
add_action('mwp_backup_tasks', 'mwp_check_backup_tasks');
|
| 648 |
+
|
| 649 |
+
|
| 650 |
+
|
| 651 |
+
if( !function_exists('mwp_check_backup_tasks') ){
|
| 652 |
+
function mwp_check_backup_tasks() {
|
| 653 |
+
global $mmb_core, $_wp_using_ext_object_cache;
|
| 654 |
+
$_wp_using_ext_object_cache = false;
|
| 655 |
+
|
| 656 |
+
$mmb_core->get_backup_instance();
|
| 657 |
+
$mmb_core->backup_instance->check_backup_tasks();
|
| 658 |
+
}
|
| 659 |
+
}
|
| 660 |
+
|
| 661 |
+
if (!wp_next_scheduled('mwp_notifications')) {
|
| 662 |
+
wp_schedule_event( time(), 'daily', 'mwp_notifications' );
|
| 663 |
+
}
|
| 664 |
+
add_action('mwp_notifications', 'mwp_check_notifications');
|
| 665 |
+
|
| 666 |
+
|
| 667 |
+
|
| 668 |
+
if( !function_exists('mwp_check_notifications') ){
|
| 669 |
+
function mwp_check_notifications() {
|
| 670 |
+
global $mmb_core, $_wp_using_ext_object_cache;
|
| 671 |
+
$_wp_using_ext_object_cache = false;
|
| 672 |
+
|
| 673 |
+
$mmb_core->get_stats_instance();
|
| 674 |
+
$mmb_core->stats_instance->check_notifications();
|
| 675 |
+
}
|
| 676 |
+
}
|
| 677 |
+
|
| 678 |
+
|
| 679 |
+
if( !function_exists('mmb_get_plugins_themes') ){
|
| 680 |
+
function mmb_get_plugins_themes($params) {
|
| 681 |
+
global $mmb_core;
|
| 682 |
+
$mmb_core->get_installer_instance();
|
| 683 |
+
$return = $mmb_core->installer_instance->get($params);
|
| 684 |
+
mmb_response($return, true);
|
| 685 |
+
}
|
| 686 |
+
}
|
| 687 |
+
|
| 688 |
+
if( !function_exists('mmb_edit_plugins_themes') ){
|
| 689 |
+
function mmb_edit_plugins_themes($params) {
|
| 690 |
+
global $mmb_core;
|
| 691 |
+
$mmb_core->get_installer_instance();
|
| 692 |
+
$return = $mmb_core->installer_instance->edit($params);
|
| 693 |
+
mmb_response($return, true);
|
| 694 |
+
}
|
| 695 |
+
}
|
| 696 |
+
|
| 697 |
+
if( !function_exists('mmb_worker_brand')){
|
| 698 |
+
function mmb_worker_brand($params) {
|
| 699 |
+
update_option("mwp_worker_brand",$params['brand']);
|
| 700 |
+
mmb_response(true, true);
|
| 701 |
+
}
|
| 702 |
+
}
|
| 703 |
+
|
| 704 |
+
if( !function_exists('mmb_plugin_actions') ){
|
| 705 |
+
function mmb_plugin_actions() {
|
| 706 |
+
global $mmb_actions, $mmb_core;
|
| 707 |
+
|
| 708 |
+
if(!empty($mmb_actions)){
|
| 709 |
+
global $_mmb_plugin_actions;
|
| 710 |
+
if(!empty($_mmb_plugin_actions)){
|
| 711 |
+
$failed = array();
|
| 712 |
+
foreach($_mmb_plugin_actions as $action => $params){
|
| 713 |
+
if(isset($mmb_actions[$action]))
|
| 714 |
+
call_user_func($mmb_actions[$action], $params);
|
| 715 |
+
else
|
| 716 |
+
$failed[] = $action;
|
| 717 |
+
}
|
| 718 |
+
if(!empty($failed)){
|
| 719 |
+
$f = implode(', ', $failed);
|
| 720 |
+
$s = count($f) > 1 ? 'Actions "' . $f . '" do' : 'Action "' . $f . '" does';
|
| 721 |
+
mmb_response($s.' not exist. Please update your Worker plugin.', false);
|
| 722 |
+
}
|
| 723 |
+
|
| 724 |
+
}
|
| 725 |
+
}
|
| 726 |
+
}
|
| 727 |
+
}
|
| 728 |
+
|
| 729 |
+
$mmb_core = new MMB_Core();
|
| 730 |
+
|
| 731 |
+
if(isset($_GET['auto_login']))
|
| 732 |
+
$mmb_core->automatic_login();
|
| 733 |
+
|
| 734 |
+
if (function_exists('register_activation_hook'))
|
| 735 |
+
register_activation_hook( __FILE__ , array( $mmb_core, 'install' ));
|
| 736 |
+
|
| 737 |
+
if (function_exists('register_deactivation_hook'))
|
| 738 |
+
register_deactivation_hook(__FILE__, array( $mmb_core, 'uninstall' ));
|
| 739 |
+
|
| 740 |
+
if (function_exists('add_action'))
|
| 741 |
+
add_action('init', 'mmb_plugin_actions', 99999);
|
| 742 |
+
|
| 743 |
+
if (function_exists('add_filter'))
|
| 744 |
+
add_filter('install_plugin_complete_actions','mmb_iframe_plugins_fix');
|
| 745 |
+
|
| 746 |
+
if( isset($_COOKIE[MMB_XFRAME_COOKIE]) ){
|
| 747 |
+
remove_action( 'admin_init', 'send_frame_options_header');
|
| 748 |
+
remove_action( 'login_init', 'send_frame_options_header');
|
| 749 |
+
}
|
| 750 |
+
|
| 751 |
+
?>
|
installer.class.php
CHANGED
|
@@ -1,745 +1,752 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
* installer.class.php
|
| 5 |
-
*
|
| 6 |
-
* Upgrade WordPress
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
* Copyright (c) 2011 Prelovac Media
|
| 10 |
-
* www.prelovac.com
|
| 11 |
-
**************************************************************/
|
| 12 |
-
|
| 13 |
-
class MMB_Installer extends MMB_Core
|
| 14 |
-
{
|
| 15 |
-
function __construct()
|
| 16 |
-
{
|
| 17 |
-
@set_time_limit(300);
|
| 18 |
-
parent::__construct();
|
| 19 |
-
include_once(ABSPATH . 'wp-admin/includes/file.php');
|
| 20 |
-
include_once(ABSPATH . 'wp-admin/includes/plugin.php');
|
| 21 |
-
include_once(ABSPATH . 'wp-admin/includes/theme.php');
|
| 22 |
-
include_once(ABSPATH . 'wp-admin/includes/misc.php');
|
| 23 |
-
include_once(ABSPATH . 'wp-admin/includes/template.php');
|
| 24 |
-
@include_once(ABSPATH . 'wp-admin/includes/class-wp-upgrader.php');
|
| 25 |
-
|
| 26 |
-
global $wp_filesystem;
|
| 27 |
-
if (!$wp_filesystem)
|
| 28 |
-
WP_Filesystem();
|
| 29 |
-
|
| 30 |
-
}
|
| 31 |
-
|
| 32 |
-
function mmb_maintenance_mode($enable = false, $maintenance_message = '')
|
| 33 |
-
{
|
| 34 |
-
global $wp_filesystem;
|
| 35 |
-
|
| 36 |
-
$maintenance_message .= '<?php $upgrading = ' . time() . '; ?>';
|
| 37 |
-
|
| 38 |
-
$file = $wp_filesystem->abspath() . '.maintenance';
|
| 39 |
-
if ($enable) {
|
| 40 |
-
$wp_filesystem->delete($file);
|
| 41 |
-
$wp_filesystem->put_contents($file, $maintenance_message, FS_CHMOD_FILE);
|
| 42 |
-
} else {
|
| 43 |
-
$wp_filesystem->delete($file);
|
| 44 |
-
}
|
| 45 |
-
}
|
| 46 |
-
|
| 47 |
-
function install_remote_file($params)
|
| 48 |
-
{
|
| 49 |
-
global $wp_filesystem;
|
| 50 |
-
extract($params);
|
| 51 |
-
|
| 52 |
-
if (!isset($package) || empty($package))
|
| 53 |
-
return array(
|
| 54 |
-
'error' => '<p>No files received. Internal error.</p>'
|
| 55 |
-
);
|
| 56 |
-
|
| 57 |
-
if (defined('WP_INSTALLING') && file_exists(ABSPATH . '.maintenance'))
|
| 58 |
-
return array(
|
| 59 |
-
'error' => '<p>Site under maintanace.</p>'
|
| 60 |
-
);
|
| 61 |
-
|
| 62 |
-
if(!class_exists('WP_Upgrader'))
|
| 63 |
-
include_once(ABSPATH.'wp-admin/includes/class-wp-upgrader.php');
|
| 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 |
-
if (
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
if (
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
$
|
| 133 |
-
|
| 134 |
-
$
|
| 135 |
-
$
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
if(!empty($
|
| 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 |
-
if(!empty($updates)){
|
| 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 |
-
return array(
|
| 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 |
-
if
|
| 395 |
-
|
| 396 |
-
|
| 397 |
-
|
| 398 |
-
|
| 399 |
-
|
| 400 |
-
|
| 401 |
-
|
| 402 |
-
|
| 403 |
-
|
| 404 |
-
|
| 405 |
-
|
| 406 |
-
|
| 407 |
-
|
| 408 |
-
|
| 409 |
-
|
| 410 |
-
|
| 411 |
-
|
| 412 |
-
|
| 413 |
-
|
| 414 |
-
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
|
| 418 |
-
|
| 419 |
-
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
|
| 423 |
-
return array(
|
| 424 |
-
'
|
| 425 |
-
);
|
| 426 |
-
|
| 427 |
-
|
| 428 |
-
|
| 429 |
-
|
| 430 |
-
|
| 431 |
-
|
| 432 |
-
|
| 433 |
-
|
| 434 |
-
|
| 435 |
-
|
| 436 |
-
|
| 437 |
-
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
|
| 441 |
-
|
| 442 |
-
|
| 443 |
-
|
| 444 |
-
|
| 445 |
-
|
| 446 |
-
|
| 447 |
-
|
| 448 |
-
$
|
| 449 |
-
|
| 450 |
-
|
| 451 |
-
|
| 452 |
-
|
| 453 |
-
|
| 454 |
-
|
| 455 |
-
|
| 456 |
-
|
| 457 |
-
|
| 458 |
-
|
| 459 |
-
|
| 460 |
-
|
| 461 |
-
|
| 462 |
-
|
| 463 |
-
|
| 464 |
-
|
| 465 |
-
|
| 466 |
-
|
| 467 |
-
|
| 468 |
-
|
| 469 |
-
|
| 470 |
-
|
| 471 |
-
|
| 472 |
-
|
| 473 |
-
|
| 474 |
-
|
| 475 |
-
|
| 476 |
-
|
| 477 |
-
|
| 478 |
-
|
| 479 |
-
|
| 480 |
-
|
| 481 |
-
|
| 482 |
-
|
| 483 |
-
|
| 484 |
-
|
| 485 |
-
|
| 486 |
-
|
| 487 |
-
|
| 488 |
-
|
| 489 |
-
|
| 490 |
-
|
| 491 |
-
|
| 492 |
-
|
| 493 |
-
|
| 494 |
-
|
| 495 |
-
|
| 496 |
-
|
| 497 |
-
|
| 498 |
-
|
| 499 |
-
|
| 500 |
-
|
| 501 |
-
|
| 502 |
-
|
| 503 |
-
|
| 504 |
-
|
| 505 |
-
|
| 506 |
-
|
| 507 |
-
|
| 508 |
-
|
| 509 |
-
|
| 510 |
-
|
| 511 |
-
|
| 512 |
-
|
| 513 |
-
|
| 514 |
-
|
| 515 |
-
|
| 516 |
-
|
| 517 |
-
|
| 518 |
-
|
| 519 |
-
|
| 520 |
-
|
| 521 |
-
|
| 522 |
-
|
| 523 |
-
|
| 524 |
-
|
| 525 |
-
|
| 526 |
-
|
| 527 |
-
|
| 528 |
-
|
| 529 |
-
|
| 530 |
-
|
| 531 |
-
|
| 532 |
-
|
| 533 |
-
|
| 534 |
-
|
| 535 |
-
|
| 536 |
-
|
| 537 |
-
|
| 538 |
-
|
| 539 |
-
|
| 540 |
-
|
| 541 |
-
|
| 542 |
-
|
| 543 |
-
|
| 544 |
-
|
| 545 |
-
|
| 546 |
-
|
| 547 |
-
|
| 548 |
-
|
| 549 |
-
|
| 550 |
-
|
| 551 |
-
|
| 552 |
-
|
| 553 |
-
|
| 554 |
-
|
| 555 |
-
|
| 556 |
-
|
| 557 |
-
|
| 558 |
-
|
| 559 |
-
|
| 560 |
-
|
| 561 |
-
|
| 562 |
-
|
| 563 |
-
|
| 564 |
-
|
| 565 |
-
|
| 566 |
-
|
| 567 |
-
|
| 568 |
-
|
| 569 |
-
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
|
| 573 |
-
|
| 574 |
-
|
| 575 |
-
|
| 576 |
-
|
| 577 |
-
|
| 578 |
-
|
| 579 |
-
|
| 580 |
-
|
| 581 |
-
|
| 582 |
-
|
| 583 |
-
|
| 584 |
-
|
| 585 |
-
|
| 586 |
-
|
| 587 |
-
|
| 588 |
-
|
| 589 |
-
|
| 590 |
-
|
| 591 |
-
|
| 592 |
-
|
| 593 |
-
|
| 594 |
-
|
| 595 |
-
|
| 596 |
-
|
| 597 |
-
|
| 598 |
-
|
| 599 |
-
$plugins['
|
| 600 |
-
$
|
| 601 |
-
|
| 602 |
-
|
| 603 |
-
|
| 604 |
-
|
| 605 |
-
|
| 606 |
-
|
| 607 |
-
|
| 608 |
-
|
| 609 |
-
|
| 610 |
-
|
| 611 |
-
|
| 612 |
-
|
| 613 |
-
|
| 614 |
-
|
| 615 |
-
|
| 616 |
-
|
| 617 |
-
|
| 618 |
-
|
| 619 |
-
|
| 620 |
-
|
| 621 |
-
|
| 622 |
-
|
| 623 |
-
|
| 624 |
-
|
| 625 |
-
|
| 626 |
-
|
| 627 |
-
|
| 628 |
-
|
| 629 |
-
|
| 630 |
-
|
| 631 |
-
|
| 632 |
-
|
| 633 |
-
|
| 634 |
-
|
| 635 |
-
|
| 636 |
-
|
| 637 |
-
|
| 638 |
-
|
| 639 |
-
|
| 640 |
-
|
| 641 |
-
$
|
| 642 |
-
|
| 643 |
-
|
| 644 |
-
|
| 645 |
-
|
| 646 |
-
|
| 647 |
-
|
| 648 |
-
|
| 649 |
-
|
| 650 |
-
if($current_theme
|
| 651 |
-
$themes['
|
| 652 |
-
$themes['
|
| 653 |
-
$themes['
|
| 654 |
-
$
|
| 655 |
-
}
|
| 656 |
-
|
| 657 |
-
|
| 658 |
-
|
| 659 |
-
|
| 660 |
-
|
| 661 |
-
|
| 662 |
-
|
| 663 |
-
|
| 664 |
-
|
| 665 |
-
|
| 666 |
-
|
| 667 |
-
|
| 668 |
-
|
| 669 |
-
|
| 670 |
-
|
| 671 |
-
|
| 672 |
-
|
| 673 |
-
|
| 674 |
-
|
| 675 |
-
|
| 676 |
-
|
| 677 |
-
|
| 678 |
-
|
| 679 |
-
|
| 680 |
-
|
| 681 |
-
|
| 682 |
-
|
| 683 |
-
|
| 684 |
-
|
| 685 |
-
|
| 686 |
-
|
| 687 |
-
|
| 688 |
-
|
| 689 |
-
|
| 690 |
-
|
| 691 |
-
|
| 692 |
-
|
| 693 |
-
|
| 694 |
-
|
| 695 |
-
|
| 696 |
-
|
| 697 |
-
|
| 698 |
-
|
| 699 |
-
|
| 700 |
-
|
| 701 |
-
|
| 702 |
-
|
| 703 |
-
|
| 704 |
-
|
| 705 |
-
|
| 706 |
-
|
| 707 |
-
|
| 708 |
-
|
| 709 |
-
|
| 710 |
-
|
| 711 |
-
|
| 712 |
-
|
| 713 |
-
|
| 714 |
-
|
| 715 |
-
|
| 716 |
-
|
| 717 |
-
|
| 718 |
-
|
| 719 |
-
|
| 720 |
-
|
| 721 |
-
|
| 722 |
-
|
| 723 |
-
|
| 724 |
-
|
| 725 |
-
|
| 726 |
-
|
| 727 |
-
|
| 728 |
-
|
| 729 |
-
|
| 730 |
-
|
| 731 |
-
|
| 732 |
-
|
| 733 |
-
|
| 734 |
-
|
| 735 |
-
|
| 736 |
-
|
| 737 |
-
|
| 738 |
-
|
| 739 |
-
|
| 740 |
-
|
| 741 |
-
|
| 742 |
-
|
| 743 |
-
|
| 744 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 745 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
* installer.class.php
|
| 5 |
+
*
|
| 6 |
+
* Upgrade WordPress
|
| 7 |
+
*
|
| 8 |
+
*
|
| 9 |
+
* Copyright (c) 2011 Prelovac Media
|
| 10 |
+
* www.prelovac.com
|
| 11 |
+
**************************************************************/
|
| 12 |
+
|
| 13 |
+
class MMB_Installer extends MMB_Core
|
| 14 |
+
{
|
| 15 |
+
function __construct()
|
| 16 |
+
{
|
| 17 |
+
@set_time_limit(300);
|
| 18 |
+
parent::__construct();
|
| 19 |
+
@include_once(ABSPATH . 'wp-admin/includes/file.php');
|
| 20 |
+
@include_once(ABSPATH . 'wp-admin/includes/plugin.php');
|
| 21 |
+
@include_once(ABSPATH . 'wp-admin/includes/theme.php');
|
| 22 |
+
@include_once(ABSPATH . 'wp-admin/includes/misc.php');
|
| 23 |
+
@include_once(ABSPATH . 'wp-admin/includes/template.php');
|
| 24 |
+
@include_once(ABSPATH . 'wp-admin/includes/class-wp-upgrader.php');
|
| 25 |
+
|
| 26 |
+
global $wp_filesystem;
|
| 27 |
+
if (!$wp_filesystem)
|
| 28 |
+
WP_Filesystem();
|
| 29 |
+
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
function mmb_maintenance_mode($enable = false, $maintenance_message = '')
|
| 33 |
+
{
|
| 34 |
+
global $wp_filesystem;
|
| 35 |
+
|
| 36 |
+
$maintenance_message .= '<?php $upgrading = ' . time() . '; ?>';
|
| 37 |
+
|
| 38 |
+
$file = $wp_filesystem->abspath() . '.maintenance';
|
| 39 |
+
if ($enable) {
|
| 40 |
+
$wp_filesystem->delete($file);
|
| 41 |
+
$wp_filesystem->put_contents($file, $maintenance_message, FS_CHMOD_FILE);
|
| 42 |
+
} else {
|
| 43 |
+
$wp_filesystem->delete($file);
|
| 44 |
+
}
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
function install_remote_file($params)
|
| 48 |
+
{
|
| 49 |
+
global $wp_filesystem;
|
| 50 |
+
extract($params);
|
| 51 |
+
|
| 52 |
+
if (!isset($package) || empty($package))
|
| 53 |
+
return array(
|
| 54 |
+
'error' => '<p>No files received. Internal error.</p>'
|
| 55 |
+
);
|
| 56 |
+
|
| 57 |
+
if (defined('WP_INSTALLING') && file_exists(ABSPATH . '.maintenance'))
|
| 58 |
+
return array(
|
| 59 |
+
'error' => '<p>Site under maintanace.</p>'
|
| 60 |
+
);
|
| 61 |
+
|
| 62 |
+
if(!class_exists('WP_Upgrader'))
|
| 63 |
+
include_once(ABSPATH.'wp-admin/includes/class-wp-upgrader.php');
|
| 64 |
+
|
| 65 |
+
$upgrader_skin = new WP_Upgrader_Skin();
|
| 66 |
+
$upgrader_skin->done_header = true;
|
| 67 |
+
|
| 68 |
+
$upgrader = new WP_Upgrader($upgrader_skin);
|
| 69 |
+
$destination = $type == 'themes' ? WP_CONTENT_DIR . '/themes' : WP_PLUGIN_DIR;
|
| 70 |
+
$clear_destination = isset($clear_destination) ? $clear_destination : false;
|
| 71 |
+
|
| 72 |
+
foreach ($package as $package_url) {
|
| 73 |
+
$key = basename($package_url);
|
| 74 |
+
$install_info[$key] = @$upgrader->run(array(
|
| 75 |
+
'package' => $package_url,
|
| 76 |
+
'destination' => $destination,
|
| 77 |
+
'clear_destination' => $clear_destination, //Do not overwrite files.
|
| 78 |
+
'clear_working' => true,
|
| 79 |
+
'hook_extra' => array()
|
| 80 |
+
));
|
| 81 |
+
}
|
| 82 |
+
|
| 83 |
+
if ($activate) {
|
| 84 |
+
if($type == 'plugins'){
|
| 85 |
+
include_once(ABSPATH.'wp-admin/includes/plugin.php');
|
| 86 |
+
$all_plugins = get_plugins();
|
| 87 |
+
foreach ($all_plugins as $plugin_slug => $plugin) {
|
| 88 |
+
$plugin_dir = preg_split('/\//', $plugin_slug);
|
| 89 |
+
foreach ($install_info as $key => $install) {
|
| 90 |
+
if (!$install || is_wp_error($install))
|
| 91 |
+
continue;
|
| 92 |
+
if ($install['destination_name'] == $plugin_dir[0]) {
|
| 93 |
+
$install_info[$key]['activated'] = activate_plugin($plugin_slug, '', false);
|
| 94 |
+
}
|
| 95 |
+
}
|
| 96 |
+
}
|
| 97 |
+
}else if(count($install_info) == 1){
|
| 98 |
+
global $wp_themes;
|
| 99 |
+
include_once(ABSPATH.'wp-includes/theme.php');
|
| 100 |
+
|
| 101 |
+
$wp_themes = null; unset($wp_themes); //prevent theme data caching
|
| 102 |
+
|
| 103 |
+
$all_themes = get_themes();
|
| 104 |
+
foreach ($all_themes as $theme_name => $theme_data) {
|
| 105 |
+
foreach ($install_info as $key => $install) {
|
| 106 |
+
if (!$install || is_wp_error($install))
|
| 107 |
+
continue;
|
| 108 |
+
|
| 109 |
+
if ($theme_data['Template'] == $install['destination_name']) {
|
| 110 |
+
$install_info[$key]['activated'] = switch_theme($theme_data['Template'], $theme_data['Stylesheet']);
|
| 111 |
+
}
|
| 112 |
+
}
|
| 113 |
+
}
|
| 114 |
+
}
|
| 115 |
+
}
|
| 116 |
+
ob_clean();
|
| 117 |
+
$this->mmb_maintenance_mode(false);
|
| 118 |
+
return $install_info;
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
function do_upgrade($params = null){
|
| 122 |
+
|
| 123 |
+
if($params == null || empty($params))
|
| 124 |
+
return array('failed' => 'No upgrades passed.');
|
| 125 |
+
|
| 126 |
+
if (!$this->is_server_writable()) {
|
| 127 |
+
return array(
|
| 128 |
+
'error' => 'Failed, please <a target="_blank" href="http://managewp.com/user-guide#ftp">add FTP details</a></a>'
|
| 129 |
+
);
|
| 130 |
+
}
|
| 131 |
+
|
| 132 |
+
$params = isset($params['upgrades_all']) ? $params['upgrades_all'] : $params;
|
| 133 |
+
|
| 134 |
+
$core_upgrade = isset($params['wp_upgrade']) ? $params['wp_upgrade'] : array();
|
| 135 |
+
$upgrade_plugins = isset($params['upgrade_plugins']) ? $params['upgrade_plugins'] : array();
|
| 136 |
+
$upgrade_themes = isset($params['upgrade_themes']) ? $params['upgrade_themes'] : array();
|
| 137 |
+
|
| 138 |
+
$upgrades = array();
|
| 139 |
+
$premium_upgrades = array();
|
| 140 |
+
if(!empty($core_upgrade)){
|
| 141 |
+
$upgrades['core'] = $this->upgrade_core($core_upgrade);
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
if(!empty($upgrade_plugins)){
|
| 145 |
+
$plugin_files = array();
|
| 146 |
+
foreach($upgrade_plugins as $plugin){
|
| 147 |
+
if(isset($plugin->file))
|
| 148 |
+
$plugin_files[$plugin->file] = $plugin->old_version;
|
| 149 |
+
else
|
| 150 |
+
$premium_upgrades[md5($plugin->name)] = $plugin;
|
| 151 |
+
}
|
| 152 |
+
if(!empty($plugin_files))
|
| 153 |
+
$upgrades['plugins'] = $this->upgrade_plugins($plugin_files);
|
| 154 |
+
|
| 155 |
+
}
|
| 156 |
+
|
| 157 |
+
if(!empty($upgrade_themes)){
|
| 158 |
+
$theme_temps = array();
|
| 159 |
+
foreach($upgrade_themes as $theme){
|
| 160 |
+
if(isset($theme['theme_tmp']))
|
| 161 |
+
$theme_temps[] = $theme['theme_tmp'];
|
| 162 |
+
else
|
| 163 |
+
$premium_upgrades[md5($theme['name'])] = $theme;
|
| 164 |
+
}
|
| 165 |
+
|
| 166 |
+
if(!empty($theme_temps))
|
| 167 |
+
$upgrades['themes'] = $this->upgrade_themes($theme_temps);
|
| 168 |
+
|
| 169 |
+
}
|
| 170 |
+
|
| 171 |
+
if(!empty($premium_upgrades)) {
|
| 172 |
+
$premium_upgrades = $this->upgrade_premium($premium_upgrades);
|
| 173 |
+
if(!empty($premium_upgrades)){
|
| 174 |
+
if(!empty($upgrades)){
|
| 175 |
+
foreach($upgrades as $key => $val){
|
| 176 |
+
if(isset($premium_upgrades[$key])){
|
| 177 |
+
$upgrades[$key] = array_merge_recursive($upgrades[$key], $premium_upgrades[$key]);
|
| 178 |
+
}
|
| 179 |
+
}
|
| 180 |
+
} else {
|
| 181 |
+
$upgrades = $premium_upgrades;
|
| 182 |
+
}
|
| 183 |
+
}
|
| 184 |
+
}
|
| 185 |
+
ob_clean();
|
| 186 |
+
$this->mmb_maintenance_mode(false);
|
| 187 |
+
return $upgrades;
|
| 188 |
+
}
|
| 189 |
+
|
| 190 |
+
/**
|
| 191 |
+
* Upgrades WordPress locally
|
| 192 |
+
*
|
| 193 |
+
*/
|
| 194 |
+
function upgrade_core($current)
|
| 195 |
+
{
|
| 196 |
+
ob_start();
|
| 197 |
+
if(!function_exists('wp_version_check'))
|
| 198 |
+
include_once(ABSPATH.'/wp-admin/includes/update.php');
|
| 199 |
+
|
| 200 |
+
@wp_version_check();
|
| 201 |
+
|
| 202 |
+
$current_update = false;
|
| 203 |
+
ob_end_flush();
|
| 204 |
+
ob_end_clean();
|
| 205 |
+
$core = $this->mmb_get_transient('update_core');
|
| 206 |
+
|
| 207 |
+
if(isset($core->updates) && !empty($core->updates)){
|
| 208 |
+
$updates = $core->updates[0];
|
| 209 |
+
$updated = $core->updates[0];
|
| 210 |
+
if ( !isset( $updated->response ) || $updated->response == 'latest' )
|
| 211 |
+
return array('upgraded' => ' updated');
|
| 212 |
+
|
| 213 |
+
if ($updated->response == "development" && $current->response == "upgrade") {
|
| 214 |
+
return array('upgraded' => '<font color="#900">Unexpected error. Please upgrade manually.</font>');
|
| 215 |
+
}
|
| 216 |
+
else if ($updated->response == $current->response || ($updated->response == "upgrade" && $current->response == "development")){
|
| 217 |
+
if($updated->locale != $current->locale){
|
| 218 |
+
foreach($updates as $update){
|
| 219 |
+
if($update->locale == $current->locale){
|
| 220 |
+
$current_update = $update;
|
| 221 |
+
break;
|
| 222 |
+
}
|
| 223 |
+
}
|
| 224 |
+
if($current_update == false)
|
| 225 |
+
return array('error' => ' Localization mismatch. Try again.');
|
| 226 |
+
} else {
|
| 227 |
+
$current_update = $updated;
|
| 228 |
+
}
|
| 229 |
+
}
|
| 230 |
+
else
|
| 231 |
+
return array('error' => ' Transient mismatch. Try again.');
|
| 232 |
+
} else
|
| 233 |
+
return array('error' => ' Refresh transient failed. Try again.');
|
| 234 |
+
if($current_update != false){
|
| 235 |
+
global $mmb_wp_version, $wp_filesystem, $wp_version;
|
| 236 |
+
|
| 237 |
+
if (version_compare($wp_version, '3.1.9', '>')) {
|
| 238 |
+
if(!class_exists('Core_Upgrader'))
|
| 239 |
+
include_once(ABSPATH.'wp-admin/includes/class-wp-upgrader.php');
|
| 240 |
+
|
| 241 |
+
$core = new Core_Upgrader();
|
| 242 |
+
$result = $core->upgrade($current_update);
|
| 243 |
+
if(is_wp_error($result)){
|
| 244 |
+
return array(
|
| 245 |
+
'error' => $this->mmb_get_error($result)
|
| 246 |
+
);
|
| 247 |
+
}
|
| 248 |
+
else
|
| 249 |
+
return array(
|
| 250 |
+
'upgraded' => ' updated'
|
| 251 |
+
);
|
| 252 |
+
|
| 253 |
+
} else {
|
| 254 |
+
if(!class_exists('WP_Upgrader')){
|
| 255 |
+
include_once(ABSPATH.'wp-admin/includes/update.php');
|
| 256 |
+
if(function_exists('wp_update_core')){
|
| 257 |
+
$result = wp_update_core($current_update);
|
| 258 |
+
if(is_wp_error($result)){
|
| 259 |
+
return array(
|
| 260 |
+
'error' => $this->mmb_get_error($result)
|
| 261 |
+
);
|
| 262 |
+
}
|
| 263 |
+
else
|
| 264 |
+
return array(
|
| 265 |
+
'upgraded' => ' updated'
|
| 266 |
+
);
|
| 267 |
+
}
|
| 268 |
+
}
|
| 269 |
+
|
| 270 |
+
if(class_exists('WP_Upgrader')){
|
| 271 |
+
$upgrader_skin = new WP_Upgrader_Skin();
|
| 272 |
+
$upgrader_skin->done_header = true;
|
| 273 |
+
|
| 274 |
+
$upgrader = new WP_Upgrader( $upgrader_skin );
|
| 275 |
+
|
| 276 |
+
// Is an update available?
|
| 277 |
+
if (!isset($current_update->response) || $current_update->response == 'latest')
|
| 278 |
+
return array(
|
| 279 |
+
'upgraded' => ' updated'
|
| 280 |
+
);
|
| 281 |
+
|
| 282 |
+
$res = $upgrader->fs_connect(array(
|
| 283 |
+
ABSPATH,
|
| 284 |
+
WP_CONTENT_DIR
|
| 285 |
+
));
|
| 286 |
+
if (is_wp_error($res))
|
| 287 |
+
return array(
|
| 288 |
+
'error' => $this->mmb_get_error($res)
|
| 289 |
+
);
|
| 290 |
+
|
| 291 |
+
$wp_dir = trailingslashit($wp_filesystem->abspath());
|
| 292 |
+
|
| 293 |
+
$core_package = false;
|
| 294 |
+
if(isset($current_update->package) && !empty($current_update->package))
|
| 295 |
+
$core_package = $current_update->package;
|
| 296 |
+
elseif (isset($current_update->packages->full) && !empty($current_update->packages->full))
|
| 297 |
+
$core_package = $current_update->packages->full;
|
| 298 |
+
|
| 299 |
+
$download = $upgrader->download_package($core_package);
|
| 300 |
+
if (is_wp_error($download))
|
| 301 |
+
return array(
|
| 302 |
+
'error' => $this->mmb_get_error($download)
|
| 303 |
+
);
|
| 304 |
+
|
| 305 |
+
$working_dir = $upgrader->unpack_package($download);
|
| 306 |
+
if (is_wp_error($working_dir))
|
| 307 |
+
return array(
|
| 308 |
+
'error' => $this->mmb_get_error($working_dir)
|
| 309 |
+
);
|
| 310 |
+
|
| 311 |
+
if (!$wp_filesystem->copy($working_dir . '/wordpress/wp-admin/includes/update-core.php', $wp_dir . 'wp-admin/includes/update-core.php', true)) {
|
| 312 |
+
$wp_filesystem->delete($working_dir, true);
|
| 313 |
+
return array(
|
| 314 |
+
'error' => 'Unable to move update files.'
|
| 315 |
+
);
|
| 316 |
+
}
|
| 317 |
+
|
| 318 |
+
$wp_filesystem->chmod($wp_dir . 'wp-admin/includes/update-core.php', FS_CHMOD_FILE);
|
| 319 |
+
|
| 320 |
+
require(ABSPATH . 'wp-admin/includes/update-core.php');
|
| 321 |
+
|
| 322 |
+
|
| 323 |
+
$update_core = update_core($working_dir, $wp_dir);
|
| 324 |
+
ob_end_clean();
|
| 325 |
+
|
| 326 |
+
if (is_wp_error($update_core))
|
| 327 |
+
return array(
|
| 328 |
+
'error' => $this->mmb_get_error($update_core)
|
| 329 |
+
);
|
| 330 |
+
ob_end_flush();
|
| 331 |
+
return array(
|
| 332 |
+
'upgraded' => 'updated'
|
| 333 |
+
);
|
| 334 |
+
} else {
|
| 335 |
+
return array(
|
| 336 |
+
'error' => 'failed'
|
| 337 |
+
);
|
| 338 |
+
}
|
| 339 |
+
}
|
| 340 |
+
} else {
|
| 341 |
+
return array(
|
| 342 |
+
'error' => 'failed'
|
| 343 |
+
);
|
| 344 |
+
}
|
| 345 |
+
}
|
| 346 |
+
|
| 347 |
+
function upgrade_plugins($plugins = false){
|
| 348 |
+
if(!$plugins || empty($plugins))
|
| 349 |
+
return array(
|
| 350 |
+
'error' => 'No plugin files for upgrade.'
|
| 351 |
+
);
|
| 352 |
+
$return = array();
|
| 353 |
+
if (class_exists('Plugin_Upgrader') && class_exists('Bulk_Plugin_Upgrader_Skin')) {
|
| 354 |
+
|
| 355 |
+
$upgrader = new Plugin_Upgrader(new Bulk_Plugin_Upgrader_Skin(compact('nonce', 'url')));
|
| 356 |
+
$result = $upgrader->bulk_upgrade(array_keys($plugins));
|
| 357 |
+
|
| 358 |
+
if( !function_exists('wp_update_plugins') )
|
| 359 |
+
include_once(ABSPATH . 'wp-includes/update.php');
|
| 360 |
+
|
| 361 |
+
@wp_update_plugins();
|
| 362 |
+
$current_plugins = $this->mmb_get_transient('update_plugins');
|
| 363 |
+
|
| 364 |
+
if (!empty($result)) {
|
| 365 |
+
foreach ($result as $plugin_slug => $plugin_info) {
|
| 366 |
+
if (!$plugin_info || is_wp_error($plugin_info)) {
|
| 367 |
+
$return[$plugin_slug] = $this->mmb_get_error($plugin_info);
|
| 368 |
+
} else {
|
| 369 |
+
if(isset($current_plugins->response[$plugin_slug]) && !empty($current_plugins->response[$plugin_slug])){
|
| 370 |
+
$return[$plugin_slug] = false;
|
| 371 |
+
} else {
|
| 372 |
+
$return[$plugin_slug] = 1;
|
| 373 |
+
}
|
| 374 |
+
}
|
| 375 |
+
}
|
| 376 |
+
ob_end_clean();
|
| 377 |
+
return array(
|
| 378 |
+
'upgraded' => $return
|
| 379 |
+
);
|
| 380 |
+
}
|
| 381 |
+
else
|
| 382 |
+
return array(
|
| 383 |
+
'error' => 'Upgrade failed.'
|
| 384 |
+
);
|
| 385 |
+
} else {
|
| 386 |
+
ob_end_clean();
|
| 387 |
+
return array(
|
| 388 |
+
'error' => 'WordPress update required first.'
|
| 389 |
+
);
|
| 390 |
+
}
|
| 391 |
+
}
|
| 392 |
+
|
| 393 |
+
function upgrade_themes($themes = false){
|
| 394 |
+
if(!$themes || empty($themes))
|
| 395 |
+
return array(
|
| 396 |
+
'error' => 'No theme files for upgrade.'
|
| 397 |
+
);
|
| 398 |
+
if (class_exists('Theme_Upgrader') && class_exists('Bulk_Theme_Upgrader_Skin')) {
|
| 399 |
+
|
| 400 |
+
$upgrader = new Theme_Upgrader(new Bulk_Theme_Upgrader_Skin(compact('title', 'nonce', 'url', 'theme')));
|
| 401 |
+
$result = $upgrader->bulk_upgrade($themes);
|
| 402 |
+
|
| 403 |
+
if( !function_exists('wp_update_themes') )
|
| 404 |
+
include_once(ABSPATH . 'wp-includes/update.php');
|
| 405 |
+
|
| 406 |
+
@wp_update_themes();
|
| 407 |
+
$current_themes = $this->mmb_get_transient('update_themes');
|
| 408 |
+
|
| 409 |
+
$return = array();
|
| 410 |
+
if (!empty($result)) {
|
| 411 |
+
foreach ($result as $theme_tmp => $theme_info) {
|
| 412 |
+
if (is_wp_error($theme_info) || !$theme_info) {
|
| 413 |
+
$return[$theme_tmp] = $this->mmb_get_error($theme_info);
|
| 414 |
+
} else {
|
| 415 |
+
if(isset($current_themes->response[$theme_tmp]) && !empty($current_themes->response[$theme_tmp])){
|
| 416 |
+
$return[$theme_tmp] = false;
|
| 417 |
+
} else {
|
| 418 |
+
$return[$theme_tmp] = 1;
|
| 419 |
+
}
|
| 420 |
+
}
|
| 421 |
+
}
|
| 422 |
+
|
| 423 |
+
return array(
|
| 424 |
+
'upgraded' => $return
|
| 425 |
+
);
|
| 426 |
+
} else
|
| 427 |
+
return array(
|
| 428 |
+
'error' => 'Upgrade failed.'
|
| 429 |
+
);
|
| 430 |
+
} else {
|
| 431 |
+
ob_end_clean();
|
| 432 |
+
return array(
|
| 433 |
+
'error' => 'WordPress update required first'
|
| 434 |
+
);
|
| 435 |
+
}
|
| 436 |
+
}
|
| 437 |
+
|
| 438 |
+
function upgrade_premium($premium = false){
|
| 439 |
+
|
| 440 |
+
if(!class_exists('WP_Upgrader'))
|
| 441 |
+
include_once(ABSPATH.'wp-admin/includes/class-wp-upgrader.php');
|
| 442 |
+
|
| 443 |
+
if(!$premium || empty($premium))
|
| 444 |
+
return array(
|
| 445 |
+
'error' => 'No premium files for upgrade.'
|
| 446 |
+
);
|
| 447 |
+
|
| 448 |
+
$upgrader = false;
|
| 449 |
+
$pr_update = array();
|
| 450 |
+
$result = array();
|
| 451 |
+
$premium_update = array();
|
| 452 |
+
$premium_update = apply_filters('mwp_premium_perform_update', $premium_update);
|
| 453 |
+
|
| 454 |
+
if(!empty($premium_update)){
|
| 455 |
+
foreach ($premium as $pr) {
|
| 456 |
+
foreach($premium_update as $update){
|
| 457 |
+
$update = array_change_key_case($update, CASE_LOWER);
|
| 458 |
+
|
| 459 |
+
if( $update['name'] == $pr['name'] ){
|
| 460 |
+
$update_result = false;
|
| 461 |
+
if( isset($update['url']) ){
|
| 462 |
+
|
| 463 |
+
if (defined('WP_INSTALLING') && file_exists(ABSPATH . '.maintenance'))
|
| 464 |
+
$pr_update[$update['type'].'s']['upgraded'][md5($update['name'])] = 'Site under maintanace.';
|
| 465 |
+
|
| 466 |
+
if($upgrader == false){
|
| 467 |
+
$upgrader_skin = new WP_Upgrader_Skin();
|
| 468 |
+
$upgrader_skin->done_header = true;
|
| 469 |
+
|
| 470 |
+
$upgrader = new WP_Upgrader();
|
| 471 |
+
}
|
| 472 |
+
|
| 473 |
+
@$update_result = $upgrader->run(array(
|
| 474 |
+
'package' => $update['url'],
|
| 475 |
+
'destination' => isset($update['type']) && $update['type'] == 'theme' ? WP_CONTENT_DIR . '/themes' : WP_PLUGIN_DIR,
|
| 476 |
+
'clear_destination' => true,
|
| 477 |
+
'clear_working' => true,
|
| 478 |
+
'hook_extra' => array()
|
| 479 |
+
));
|
| 480 |
+
$update_result = !$update_result || is_wp_error($update_result) ? $this->mmb_get_error($update_result) : 1;
|
| 481 |
+
|
| 482 |
+
} else if( isset($update['callback'])) {
|
| 483 |
+
if( is_array($update['callback']) ) {
|
| 484 |
+
$update_result = call_user_func( array( $update['callback'][0], $update['callback'][1] ) );
|
| 485 |
+
}
|
| 486 |
+
else if ( is_string($update['callback']) ) {
|
| 487 |
+
$update_result = call_user_func($update['callback']);
|
| 488 |
+
}
|
| 489 |
+
else {
|
| 490 |
+
$update_result = 'Upgrade function "'.$update['callback'].'" does not exists.';
|
| 491 |
+
}
|
| 492 |
+
|
| 493 |
+
$update_result = $update_result !== true ? $this->mmb_get_error($update_result) : 1;
|
| 494 |
+
} else
|
| 495 |
+
$update_result = 'Bad update params.';
|
| 496 |
+
|
| 497 |
+
$pr_update[$update['type'].'s']['upgraded'][md5($update['name'])] = $update_result;
|
| 498 |
+
}
|
| 499 |
+
}
|
| 500 |
+
}
|
| 501 |
+
return $pr_update;
|
| 502 |
+
} else {
|
| 503 |
+
foreach ($premium as $pr) {
|
| 504 |
+
$result[$pr['type'].'s']['upgraded'][md5($pr['name'])] = 'This premium update is not registered.';
|
| 505 |
+
}
|
| 506 |
+
return $result;
|
| 507 |
+
}
|
| 508 |
+
}
|
| 509 |
+
|
| 510 |
+
function get_upgradable_plugins() {
|
| 511 |
+
|
| 512 |
+
$current = $this->mmb_get_transient('update_plugins');
|
| 513 |
+
$upgradable_plugins = array();
|
| 514 |
+
if (!empty($current->response)) {
|
| 515 |
+
if (!function_exists('get_plugin_data'))
|
| 516 |
+
include_once ABSPATH . 'wp-admin/includes/plugin.php';
|
| 517 |
+
foreach ($current->response as $plugin_path => $plugin_data) {
|
| 518 |
+
if($plugin_path == 'worker/init.php')
|
| 519 |
+
continue;
|
| 520 |
+
|
| 521 |
+
$data = get_plugin_data(WP_PLUGIN_DIR . '/' . $plugin_path);
|
| 522 |
+
if(strlen($data['Name']) > 0 && strlen($data['Version']) > 0) {
|
| 523 |
+
$current->response[$plugin_path]->name = $data['Name'];
|
| 524 |
+
$current->response[$plugin_path]->old_version = $data['Version'];
|
| 525 |
+
$current->response[$plugin_path]->file = $plugin_path;
|
| 526 |
+
$upgradable_plugins[] = $current->response[$plugin_path];
|
| 527 |
+
}
|
| 528 |
+
}
|
| 529 |
+
return $upgradable_plugins;
|
| 530 |
+
} else
|
| 531 |
+
return array();
|
| 532 |
+
}
|
| 533 |
+
|
| 534 |
+
function get_upgradable_themes(){
|
| 535 |
+
|
| 536 |
+
$all_themes = get_themes();
|
| 537 |
+
$upgrade_themes = array();
|
| 538 |
+
|
| 539 |
+
$current = $this->mmb_get_transient('update_themes');
|
| 540 |
+
foreach ((array) $all_themes as $theme_template => $theme_data) {
|
| 541 |
+
if (!empty($current->response)) {
|
| 542 |
+
foreach ($current->response as $current_themes => $theme) {
|
| 543 |
+
if ($theme_data['Template'] == $current_themes) {
|
| 544 |
+
if(strlen($theme_data['Name']) > 0 && strlen($theme_data['Version']) > 0) {
|
| 545 |
+
$current->response[$current_themes]['name'] = $theme_data['Name'];
|
| 546 |
+
$current->response[$current_themes]['old_version'] = $theme_data['Version'];
|
| 547 |
+
$current->response[$current_themes]['theme_tmp'] = $theme_data['Template'];
|
| 548 |
+
$upgrade_themes[] = $current->response[$current_themes];
|
| 549 |
+
}
|
| 550 |
+
}
|
| 551 |
+
}
|
| 552 |
+
}
|
| 553 |
+
}
|
| 554 |
+
|
| 555 |
+
return $upgrade_themes;
|
| 556 |
+
}
|
| 557 |
+
|
| 558 |
+
function get($args)
|
| 559 |
+
{
|
| 560 |
+
if(empty($args))
|
| 561 |
+
return false;
|
| 562 |
+
|
| 563 |
+
//Args: $items('plugins,'themes'), $type (active || inactive), $search(name string)
|
| 564 |
+
|
| 565 |
+
$return = array();
|
| 566 |
+
if(is_array($args['items']) && in_array('plugins',$args['items'])){
|
| 567 |
+
$return['plugins'] = $this->get_plugins($args);
|
| 568 |
+
}
|
| 569 |
+
if(is_array($args['items']) && in_array('themes',$args['items'])){
|
| 570 |
+
$return['themes'] = $this->get_themes($args);
|
| 571 |
+
}
|
| 572 |
+
|
| 573 |
+
return $return;
|
| 574 |
+
}
|
| 575 |
+
|
| 576 |
+
function get_plugins($args)
|
| 577 |
+
{
|
| 578 |
+
|
| 579 |
+
if(empty($args))
|
| 580 |
+
return false;
|
| 581 |
+
|
| 582 |
+
extract($args);
|
| 583 |
+
|
| 584 |
+
if(!function_exists('get_plugins')){
|
| 585 |
+
include_once(ABSPATH.'wp-admin/includes/plugin.php');
|
| 586 |
+
}
|
| 587 |
+
$all_plugins = get_plugins();
|
| 588 |
+
$plugins = array('active' => array(), 'inactive' => array());
|
| 589 |
+
if(is_array($all_plugins) && !empty($all_plugins)){
|
| 590 |
+
$activated_plugins = get_option('active_plugins');
|
| 591 |
+
if(!$activated_plugins)
|
| 592 |
+
$activated_plugins = array();
|
| 593 |
+
|
| 594 |
+
$br_a= 0;
|
| 595 |
+
$br_i = 0;
|
| 596 |
+
foreach($all_plugins as $path => $plugin){
|
| 597 |
+
if($plugin['Name'] != 'ManageWP - Worker'){
|
| 598 |
+
if(in_array($path,$activated_plugins)){
|
| 599 |
+
$plugins['active'][$br_a]['path'] = $path;
|
| 600 |
+
$plugins['active'][$br_a]['name'] = $plugin['Name'];
|
| 601 |
+
$br_a++;
|
| 602 |
+
}
|
| 603 |
+
|
| 604 |
+
if(!in_array($path,$activated_plugins)){
|
| 605 |
+
$plugins['inactive'][$br_i]['path'] = $path;
|
| 606 |
+
$plugins['inactive'][$br_i]['name'] = $plugin['Name'];
|
| 607 |
+
$br_i++;
|
| 608 |
+
}
|
| 609 |
+
|
| 610 |
+
}
|
| 611 |
+
|
| 612 |
+
if($search){
|
| 613 |
+
foreach($plugins['active'] as $k => $plugin){
|
| 614 |
+
if(!stristr($plugin['name'],$search)){
|
| 615 |
+
unset($plugins['active'][$k]);
|
| 616 |
+
}
|
| 617 |
+
}
|
| 618 |
+
|
| 619 |
+
foreach($plugins['inactive'] as $k => $plugin){
|
| 620 |
+
if(!stristr($plugin['name'],$search)){
|
| 621 |
+
unset($plugins['inactive'][$k]);
|
| 622 |
+
}
|
| 623 |
+
}
|
| 624 |
+
}
|
| 625 |
+
}
|
| 626 |
+
}
|
| 627 |
+
|
| 628 |
+
return $plugins;
|
| 629 |
+
}
|
| 630 |
+
|
| 631 |
+
function get_themes($args)
|
| 632 |
+
{
|
| 633 |
+
if(empty($args))
|
| 634 |
+
return false;
|
| 635 |
+
|
| 636 |
+
extract($args);
|
| 637 |
+
|
| 638 |
+
if(!function_exists('get_themes')){
|
| 639 |
+
include_once(ABSPATH.WPINC.'/theme.php');
|
| 640 |
+
}
|
| 641 |
+
$all_themes = get_themes();
|
| 642 |
+
$themes = array('active' => array(), 'inactive' => array());
|
| 643 |
+
|
| 644 |
+
if(is_array($all_themes) && !empty($all_themes)){
|
| 645 |
+
$current_theme = get_current_theme();
|
| 646 |
+
|
| 647 |
+
$br_a = 0;
|
| 648 |
+
$br_i = 0;
|
| 649 |
+
foreach($all_themes as $theme_name => $theme){
|
| 650 |
+
if($current_theme == $theme_name){
|
| 651 |
+
$themes['active'][$br_a]['path'] = $theme['Template'];
|
| 652 |
+
$themes['active'][$br_a]['name'] = $theme['Name'];
|
| 653 |
+
$themes['active'][$br_a]['stylesheet'] = $theme['Stylesheet'];
|
| 654 |
+
$br_a++;
|
| 655 |
+
}
|
| 656 |
+
|
| 657 |
+
if($current_theme != $theme_name){
|
| 658 |
+
$themes['inactive'][$br_i]['path'] = $theme['Template'];
|
| 659 |
+
$themes['inactive'][$br_i]['name'] = $theme['Name'];
|
| 660 |
+
$themes['inactive'][$br_i]['stylesheet'] = $theme['Stylesheet'];
|
| 661 |
+
$br_i++;
|
| 662 |
+
}
|
| 663 |
+
|
| 664 |
+
}
|
| 665 |
+
|
| 666 |
+
if($search){
|
| 667 |
+
foreach($themes['active'] as $k => $theme){
|
| 668 |
+
if(!stristr($theme['name'],$search)){
|
| 669 |
+
unset($themes['active'][$k]);
|
| 670 |
+
}
|
| 671 |
+
}
|
| 672 |
+
|
| 673 |
+
foreach($themes['inactive'] as $k => $theme){
|
| 674 |
+
if(!stristr($theme['name'],$search)){
|
| 675 |
+
unset($themes['inactive'][$k]);
|
| 676 |
+
}
|
| 677 |
+
}
|
| 678 |
+
}
|
| 679 |
+
}
|
| 680 |
+
|
| 681 |
+
return $themes;
|
| 682 |
+
}
|
| 683 |
+
|
| 684 |
+
function edit($args)
|
| 685 |
+
{
|
| 686 |
+
|
| 687 |
+
extract($args);
|
| 688 |
+
$return = array();
|
| 689 |
+
if($type == 'plugins'){
|
| 690 |
+
$return['plugins'] = $this->edit_plugins($args);
|
| 691 |
+
} elseif($type == 'themes'){
|
| 692 |
+
$return['themes'] = $this->edit_themes($args);
|
| 693 |
+
}
|
| 694 |
+
return $return;
|
| 695 |
+
}
|
| 696 |
+
|
| 697 |
+
function edit_plugins($args)
|
| 698 |
+
{
|
| 699 |
+
extract($args);
|
| 700 |
+
$return = array();
|
| 701 |
+
foreach($items as $item){
|
| 702 |
+
switch($items_edit_action){
|
| 703 |
+
case 'activate':
|
| 704 |
+
$result = activate_plugin($item['path']); break;
|
| 705 |
+
case 'deactivate':
|
| 706 |
+
$result = deactivate_plugins(array($item['path'])); break;
|
| 707 |
+
case 'delete':
|
| 708 |
+
$result = delete_plugins(array($item['path'])); break;
|
| 709 |
+
default: break;
|
| 710 |
+
}
|
| 711 |
+
|
| 712 |
+
if(is_wp_error($result)){
|
| 713 |
+
$result = array('error' => $result->get_error_message());
|
| 714 |
+
} elseif ($result === false) {
|
| 715 |
+
$result = array('error'=>"Failed to perform action.");
|
| 716 |
+
} else {
|
| 717 |
+
$result = "OK";
|
| 718 |
+
}
|
| 719 |
+
$return[$item['name']] = $result;
|
| 720 |
+
}
|
| 721 |
+
|
| 722 |
+
return $return;
|
| 723 |
+
}
|
| 724 |
+
|
| 725 |
+
function edit_themes($args)
|
| 726 |
+
{
|
| 727 |
+
extract($args);
|
| 728 |
+
$return = array();
|
| 729 |
+
foreach($items as $item){
|
| 730 |
+
switch($items_edit_action){
|
| 731 |
+
case 'activate':
|
| 732 |
+
switch_theme($item['path'], $item['stylesheet']); break;
|
| 733 |
+
case 'delete':
|
| 734 |
+
$result = delete_theme($item['path']); break;
|
| 735 |
+
default: break;
|
| 736 |
+
}
|
| 737 |
+
|
| 738 |
+
if(is_wp_error($result)){
|
| 739 |
+
$result = array('error' => $result->get_error_message());
|
| 740 |
+
} elseif ($result === false) {
|
| 741 |
+
$result = array('error'=>"Failed to perform action.");
|
| 742 |
+
} else {
|
| 743 |
+
$result = "OK";
|
| 744 |
+
}
|
| 745 |
+
$return[$item['name']] = $result;
|
| 746 |
+
}
|
| 747 |
+
|
| 748 |
+
return $return;
|
| 749 |
+
|
| 750 |
+
}
|
| 751 |
+
}
|
| 752 |
?>
|
lib/dropbox.php
CHANGED
|
@@ -1,144 +1,144 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/**
|
| 3 |
-
* Dropbox Uploader
|
| 4 |
-
*
|
| 5 |
-
* Copyright (c) 2009 Jaka Jancar
|
| 6 |
-
*
|
| 7 |
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 8 |
-
* of this software and associated documentation files (the "Software"), to deal
|
| 9 |
-
* in the Software without restriction, including without limitation the rights
|
| 10 |
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 11 |
-
* copies of the Software, and to permit persons to whom the Software is
|
| 12 |
-
* furnished to do so, subject to the following conditions:
|
| 13 |
-
*
|
| 14 |
-
* The above copyright notice and this permission notice shall be included in
|
| 15 |
-
* all copies or substantial portions of the Software.
|
| 16 |
-
*
|
| 17 |
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 18 |
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 19 |
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 20 |
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 21 |
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 22 |
-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
| 23 |
-
* THE SOFTWARE.
|
| 24 |
-
*
|
| 25 |
-
* @author Jaka Jancar [jaka@kubje.org] [http://jaka.kubje.org/]
|
| 26 |
-
* @version 1.1.5
|
| 27 |
-
*/
|
| 28 |
-
class DropboxUploader {
|
| 29 |
-
protected $email;
|
| 30 |
-
protected $password;
|
| 31 |
-
protected $caCertSourceType = self::CACERT_SOURCE_SYSTEM;
|
| 32 |
-
const CACERT_SOURCE_SYSTEM = 0;
|
| 33 |
-
const CACERT_SOURCE_FILE = 1;
|
| 34 |
-
const CACERT_SOURCE_DIR = 2;
|
| 35 |
-
protected $caCertSource;
|
| 36 |
-
protected $loggedIn = false;
|
| 37 |
-
protected $cookies = array();
|
| 38 |
-
|
| 39 |
-
/**
|
| 40 |
-
* Constructor
|
| 41 |
-
*
|
| 42 |
-
* @param string $email
|
| 43 |
-
* @param string|null $password
|
| 44 |
-
*/
|
| 45 |
-
public function __construct($email, $password) {
|
| 46 |
-
// Check requirements
|
| 47 |
-
if (!extension_loaded('curl'))
|
| 48 |
-
throw new Exception('DropboxUploader requires the cURL extension.');
|
| 49 |
-
|
| 50 |
-
$this->email = $email;
|
| 51 |
-
$this->password = $password;
|
| 52 |
-
}
|
| 53 |
-
|
| 54 |
-
public function setCaCertificateFile($file)
|
| 55 |
-
{
|
| 56 |
-
$this->caCertSourceType = self::CACERT_SOURCE_FILE;
|
| 57 |
-
$this->caCertSource = $file;
|
| 58 |
-
}
|
| 59 |
-
|
| 60 |
-
public function setCaCertificateDir($dir)
|
| 61 |
-
{
|
| 62 |
-
$this->caCertSourceType = self::CACERT_SOURCE_DIR;
|
| 63 |
-
$this->caCertSource = $dir;
|
| 64 |
-
}
|
| 65 |
-
|
| 66 |
-
public function upload($filename, $remoteDir='/') {
|
| 67 |
-
if (!file_exists($filename) or !is_file($filename) or !is_readable($filename))
|
| 68 |
-
throw new Exception("File '$filename' does not exist or is not readable.");
|
| 69 |
-
|
| 70 |
-
if (!is_string($remoteDir))
|
| 71 |
-
throw new Exception("Remote directory must be a string, is ".gettype($remoteDir)." instead.");
|
| 72 |
-
|
| 73 |
-
if (!$this->loggedIn)
|
| 74 |
-
$this->login();
|
| 75 |
-
|
| 76 |
-
$data = $this->request('https://www.dropbox.com/home');
|
| 77 |
-
$token = $this->extractToken($data, 'https://dl-web.dropbox.com/upload');
|
| 78 |
-
|
| 79 |
-
$data = $this->request('https://dl-web.dropbox.com/upload', true, array('plain'=>'yes', 'file'=>'@'.$filename, 'dest'=>$remoteDir, 't'=>$token));
|
| 80 |
-
if (strpos($data, 'HTTP/1.1 302 FOUND') === false)
|
| 81 |
-
throw new Exception('Upload failed!');
|
| 82 |
-
}
|
| 83 |
-
|
| 84 |
-
protected function login() {
|
| 85 |
-
$data = $this->request('https://www.dropbox.com/login');
|
| 86 |
-
$token = $this->extractToken($data, '/login');
|
| 87 |
-
|
| 88 |
-
$data = $this->request('https://www.dropbox.com/login', true, array('login_email'=>$this->email, 'login_password'=>$this->password, 't'=>$token));
|
| 89 |
-
|
| 90 |
-
if (stripos($data, 'location: /home') === false)
|
| 91 |
-
throw new Exception('Login unsuccessful.');
|
| 92 |
-
|
| 93 |
-
$this->loggedIn = true;
|
| 94 |
-
}
|
| 95 |
-
|
| 96 |
-
protected function request($url, $post=false, $postData=array()) {
|
| 97 |
-
$ch = curl_init();
|
| 98 |
-
curl_setopt($ch, CURLOPT_URL, $url);
|
| 99 |
-
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
|
| 100 |
-
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
|
| 101 |
-
switch ($this->caCertSourceType) {
|
| 102 |
-
case self::CACERT_SOURCE_FILE:
|
| 103 |
-
curl_setopt($ch, CURLOPT_CAINFO, $this->caCertSource);
|
| 104 |
-
break;
|
| 105 |
-
case self::CACERT_SOURCE_DIR:
|
| 106 |
-
curl_setopt($ch, CURLOPT_CAPATH, $this->caCertSource);
|
| 107 |
-
break;
|
| 108 |
-
}
|
| 109 |
-
curl_setopt($ch, CURLOPT_HEADER, 1);
|
| 110 |
-
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
| 111 |
-
if ($post) {
|
| 112 |
-
curl_setopt($ch, CURLOPT_POST, $post);
|
| 113 |
-
curl_setopt($ch, CURLOPT_POSTFIELDS, array_map('stripcslashes', $postData));
|
| 114 |
-
}
|
| 115 |
-
|
| 116 |
-
// Send cookies
|
| 117 |
-
$rawCookies = array();
|
| 118 |
-
foreach ($this->cookies as $k=>$v)
|
| 119 |
-
$rawCookies[] = "$k=$v";
|
| 120 |
-
$rawCookies = implode(';', $rawCookies);
|
| 121 |
-
curl_setopt($ch, CURLOPT_COOKIE, $rawCookies);
|
| 122 |
-
|
| 123 |
-
$data = curl_exec($ch);
|
| 124 |
-
|
| 125 |
-
if ($data === false)
|
| 126 |
-
throw new Exception('Cannot execute request: '.curl_error($ch));
|
| 127 |
-
|
| 128 |
-
// Store received cookies
|
| 129 |
-
preg_match_all('/Set-Cookie: ([^=]+)=(.*?);/i', $data, $matches, PREG_SET_ORDER);
|
| 130 |
-
foreach ($matches as $match)
|
| 131 |
-
$this->cookies[$match[1]] = $match[2];
|
| 132 |
-
|
| 133 |
-
curl_close($ch);
|
| 134 |
-
|
| 135 |
-
return $data;
|
| 136 |
-
}
|
| 137 |
-
|
| 138 |
-
protected function extractToken($html, $formAction) {
|
| 139 |
-
if (!preg_match('/<form [^>]*'.preg_quote($formAction, '/').'[^>]*>.*?(<input [^>]*name="t" [^>]*value="(.*?)"[^>]*>).*?<\/form>/is', $html, $matches) || !isset($matches[2]))
|
| 140 |
-
throw new Exception("Cannot extract token! (form action=$formAction)");
|
| 141 |
-
return $matches[2];
|
| 142 |
-
}
|
| 143 |
-
|
| 144 |
-
}
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Dropbox Uploader
|
| 4 |
+
*
|
| 5 |
+
* Copyright (c) 2009 Jaka Jancar
|
| 6 |
+
*
|
| 7 |
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 8 |
+
* of this software and associated documentation files (the "Software"), to deal
|
| 9 |
+
* in the Software without restriction, including without limitation the rights
|
| 10 |
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 11 |
+
* copies of the Software, and to permit persons to whom the Software is
|
| 12 |
+
* furnished to do so, subject to the following conditions:
|
| 13 |
+
*
|
| 14 |
+
* The above copyright notice and this permission notice shall be included in
|
| 15 |
+
* all copies or substantial portions of the Software.
|
| 16 |
+
*
|
| 17 |
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 18 |
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 19 |
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 20 |
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 21 |
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 22 |
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
| 23 |
+
* THE SOFTWARE.
|
| 24 |
+
*
|
| 25 |
+
* @author Jaka Jancar [jaka@kubje.org] [http://jaka.kubje.org/]
|
| 26 |
+
* @version 1.1.5
|
| 27 |
+
*/
|
| 28 |
+
class DropboxUploader {
|
| 29 |
+
protected $email;
|
| 30 |
+
protected $password;
|
| 31 |
+
protected $caCertSourceType = self::CACERT_SOURCE_SYSTEM;
|
| 32 |
+
const CACERT_SOURCE_SYSTEM = 0;
|
| 33 |
+
const CACERT_SOURCE_FILE = 1;
|
| 34 |
+
const CACERT_SOURCE_DIR = 2;
|
| 35 |
+
protected $caCertSource;
|
| 36 |
+
protected $loggedIn = false;
|
| 37 |
+
protected $cookies = array();
|
| 38 |
+
|
| 39 |
+
/**
|
| 40 |
+
* Constructor
|
| 41 |
+
*
|
| 42 |
+
* @param string $email
|
| 43 |
+
* @param string|null $password
|
| 44 |
+
*/
|
| 45 |
+
public function __construct($email, $password) {
|
| 46 |
+
// Check requirements
|
| 47 |
+
if (!extension_loaded('curl'))
|
| 48 |
+
throw new Exception('DropboxUploader requires the cURL extension.');
|
| 49 |
+
|
| 50 |
+
$this->email = $email;
|
| 51 |
+
$this->password = $password;
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
public function setCaCertificateFile($file)
|
| 55 |
+
{
|
| 56 |
+
$this->caCertSourceType = self::CACERT_SOURCE_FILE;
|
| 57 |
+
$this->caCertSource = $file;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
public function setCaCertificateDir($dir)
|
| 61 |
+
{
|
| 62 |
+
$this->caCertSourceType = self::CACERT_SOURCE_DIR;
|
| 63 |
+
$this->caCertSource = $dir;
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
public function upload($filename, $remoteDir='/') {
|
| 67 |
+
if (!file_exists($filename) or !is_file($filename) or !is_readable($filename))
|
| 68 |
+
throw new Exception("File '$filename' does not exist or is not readable.");
|
| 69 |
+
|
| 70 |
+
if (!is_string($remoteDir))
|
| 71 |
+
throw new Exception("Remote directory must be a string, is ".gettype($remoteDir)." instead.");
|
| 72 |
+
|
| 73 |
+
if (!$this->loggedIn)
|
| 74 |
+
$this->login();
|
| 75 |
+
|
| 76 |
+
$data = $this->request('https://www.dropbox.com/home');
|
| 77 |
+
$token = $this->extractToken($data, 'https://dl-web.dropbox.com/upload');
|
| 78 |
+
|
| 79 |
+
$data = $this->request('https://dl-web.dropbox.com/upload', true, array('plain'=>'yes', 'file'=>'@'.$filename, 'dest'=>$remoteDir, 't'=>$token));
|
| 80 |
+
if (strpos($data, 'HTTP/1.1 302 FOUND') === false)
|
| 81 |
+
throw new Exception('Upload failed!');
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
protected function login() {
|
| 85 |
+
$data = $this->request('https://www.dropbox.com/login');
|
| 86 |
+
$token = $this->extractToken($data, '/login');
|
| 87 |
+
|
| 88 |
+
$data = $this->request('https://www.dropbox.com/login', true, array('login_email'=>$this->email, 'login_password'=>$this->password, 't'=>$token));
|
| 89 |
+
|
| 90 |
+
if (stripos($data, 'location: /home') === false)
|
| 91 |
+
throw new Exception('Login unsuccessful.');
|
| 92 |
+
|
| 93 |
+
$this->loggedIn = true;
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
protected function request($url, $post=false, $postData=array()) {
|
| 97 |
+
$ch = curl_init();
|
| 98 |
+
curl_setopt($ch, CURLOPT_URL, $url);
|
| 99 |
+
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
|
| 100 |
+
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
|
| 101 |
+
switch ($this->caCertSourceType) {
|
| 102 |
+
case self::CACERT_SOURCE_FILE:
|
| 103 |
+
curl_setopt($ch, CURLOPT_CAINFO, $this->caCertSource);
|
| 104 |
+
break;
|
| 105 |
+
case self::CACERT_SOURCE_DIR:
|
| 106 |
+
curl_setopt($ch, CURLOPT_CAPATH, $this->caCertSource);
|
| 107 |
+
break;
|
| 108 |
+
}
|
| 109 |
+
curl_setopt($ch, CURLOPT_HEADER, 1);
|
| 110 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
| 111 |
+
if ($post) {
|
| 112 |
+
curl_setopt($ch, CURLOPT_POST, $post);
|
| 113 |
+
curl_setopt($ch, CURLOPT_POSTFIELDS, array_map('stripcslashes', $postData));
|
| 114 |
+
}
|
| 115 |
+
|
| 116 |
+
// Send cookies
|
| 117 |
+
$rawCookies = array();
|
| 118 |
+
foreach ($this->cookies as $k=>$v)
|
| 119 |
+
$rawCookies[] = "$k=$v";
|
| 120 |
+
$rawCookies = implode(';', $rawCookies);
|
| 121 |
+
curl_setopt($ch, CURLOPT_COOKIE, $rawCookies);
|
| 122 |
+
|
| 123 |
+
$data = curl_exec($ch);
|
| 124 |
+
|
| 125 |
+
if ($data === false)
|
| 126 |
+
throw new Exception('Cannot execute request: '.curl_error($ch));
|
| 127 |
+
|
| 128 |
+
// Store received cookies
|
| 129 |
+
preg_match_all('/Set-Cookie: ([^=]+)=(.*?);/i', $data, $matches, PREG_SET_ORDER);
|
| 130 |
+
foreach ($matches as $match)
|
| 131 |
+
$this->cookies[$match[1]] = $match[2];
|
| 132 |
+
|
| 133 |
+
curl_close($ch);
|
| 134 |
+
|
| 135 |
+
return $data;
|
| 136 |
+
}
|
| 137 |
+
|
| 138 |
+
protected function extractToken($html, $formAction) {
|
| 139 |
+
if (!preg_match('/<form [^>]*'.preg_quote($formAction, '/').'[^>]*>.*?(<input [^>]*name="t" [^>]*value="(.*?)"[^>]*>).*?<\/form>/is', $html, $matches) || !isset($matches[2]))
|
| 140 |
+
throw new Exception("Cannot extract token! (form action=$formAction)");
|
| 141 |
+
return $matches[2];
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
}
|
lib/s3.php
CHANGED
|
@@ -1,1922 +1,1922 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/**
|
| 3 |
-
* $Id$
|
| 4 |
-
*
|
| 5 |
-
* Copyright (c) 2011, Donovan Schönknecht. All rights reserved.
|
| 6 |
-
*
|
| 7 |
-
* Redistribution and use in source and binary forms, with or without
|
| 8 |
-
* modification, are permitted provided that the following conditions are met:
|
| 9 |
-
*
|
| 10 |
-
* - Redistributions of source code must retain the above copyright notice,
|
| 11 |
-
* this list of conditions and the following disclaimer.
|
| 12 |
-
* - Redistributions in binary form must reproduce the above copyright
|
| 13 |
-
* notice, this list of conditions and the following disclaimer in the
|
| 14 |
-
* documentation and/or other materials provided with the distribution.
|
| 15 |
-
*
|
| 16 |
-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
| 17 |
-
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
| 18 |
-
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
| 19 |
-
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
| 20 |
-
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
| 21 |
-
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
| 22 |
-
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
| 23 |
-
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
| 24 |
-
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
| 25 |
-
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
| 26 |
-
* POSSIBILITY OF SUCH DAMAGE.
|
| 27 |
-
*
|
| 28 |
-
* Amazon S3 is a trademark of Amazon.com, Inc. or its affiliates.
|
| 29 |
-
*/
|
| 30 |
-
|
| 31 |
-
/**
|
| 32 |
-
* Amazon S3 PHP class
|
| 33 |
-
*
|
| 34 |
-
* @link http://undesigned.org.za/2007/10/22/amazon-s3-php-class
|
| 35 |
-
* @version 0.5.0-dev
|
| 36 |
-
*/
|
| 37 |
-
class S3
|
| 38 |
-
{
|
| 39 |
-
// ACL flags
|
| 40 |
-
const ACL_PRIVATE = 'private';
|
| 41 |
-
const ACL_PUBLIC_READ = 'public-read';
|
| 42 |
-
const ACL_PUBLIC_READ_WRITE = 'public-read-write';
|
| 43 |
-
const ACL_AUTHENTICATED_READ = 'authenticated-read';
|
| 44 |
-
|
| 45 |
-
const STORAGE_CLASS_STANDARD = 'STANDARD';
|
| 46 |
-
const STORAGE_CLASS_RRS = 'REDUCED_REDUNDANCY';
|
| 47 |
-
|
| 48 |
-
private static $__accessKey = null; // AWS Access key
|
| 49 |
-
private static $__secretKey = null; // AWS Secret key
|
| 50 |
-
private static $__sslKey = null;
|
| 51 |
-
|
| 52 |
-
public static $endpoint = 's3.amazonaws.com';
|
| 53 |
-
public static $proxy = null;
|
| 54 |
-
|
| 55 |
-
public static $useSSL = false;
|
| 56 |
-
public static $useSSLValidation = true;
|
| 57 |
-
public static $useExceptions = false;
|
| 58 |
-
|
| 59 |
-
// SSL CURL SSL options - only needed if you are experiencing problems with your OpenSSL configuration
|
| 60 |
-
public static $sslKey = null;
|
| 61 |
-
public static $sslCert = null;
|
| 62 |
-
public static $sslCACert = null;
|
| 63 |
-
|
| 64 |
-
private static $__signingKeyPairId = null; // AWS Key Pair ID
|
| 65 |
-
private static $__signingKeyResource = false; // Key resource, freeSigningKey() must be called to clear it from memory
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
/**
|
| 69 |
-
* Constructor - if you're not using the class statically
|
| 70 |
-
*
|
| 71 |
-
* @param string $accessKey Access key
|
| 72 |
-
* @param string $secretKey Secret key
|
| 73 |
-
* @param boolean $useSSL Enable SSL
|
| 74 |
-
* @return void
|
| 75 |
-
*/
|
| 76 |
-
public function __construct($accessKey = null, $secretKey = null, $useSSL = false, $endpoint = 's3.amazonaws.com')
|
| 77 |
-
{
|
| 78 |
-
if ($accessKey !== null && $secretKey !== null)
|
| 79 |
-
self::setAuth($accessKey, $secretKey);
|
| 80 |
-
self::$useSSL = $useSSL;
|
| 81 |
-
self::$endpoint = $endpoint;
|
| 82 |
-
}
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
/**
|
| 86 |
-
* Set the sertvice endpoint
|
| 87 |
-
*
|
| 88 |
-
* @param string $host Hostname
|
| 89 |
-
* @return void
|
| 90 |
-
*/
|
| 91 |
-
public function setEndpoint($host)
|
| 92 |
-
{
|
| 93 |
-
self::$endpoint = $host;
|
| 94 |
-
}
|
| 95 |
-
|
| 96 |
-
/**
|
| 97 |
-
* Set AWS access key and secret key
|
| 98 |
-
*
|
| 99 |
-
* @param string $accessKey Access key
|
| 100 |
-
* @param string $secretKey Secret key
|
| 101 |
-
* @return void
|
| 102 |
-
*/
|
| 103 |
-
public static function setAuth($accessKey, $secretKey)
|
| 104 |
-
{
|
| 105 |
-
self::$__accessKey = $accessKey;
|
| 106 |
-
self::$__secretKey = $secretKey;
|
| 107 |
-
}
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
/**
|
| 111 |
-
* Check if AWS keys have been set
|
| 112 |
-
*
|
| 113 |
-
* @return boolean
|
| 114 |
-
*/
|
| 115 |
-
public static function hasAuth() {
|
| 116 |
-
return (self::$__accessKey !== null && self::$__secretKey !== null);
|
| 117 |
-
}
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
/**
|
| 121 |
-
* Set SSL on or off
|
| 122 |
-
*
|
| 123 |
-
* @param boolean $enabled SSL enabled
|
| 124 |
-
* @param boolean $validate SSL certificate validation
|
| 125 |
-
* @return void
|
| 126 |
-
*/
|
| 127 |
-
public static function setSSL($enabled, $validate = true)
|
| 128 |
-
{
|
| 129 |
-
self::$useSSL = $enabled;
|
| 130 |
-
self::$useSSLValidation = $validate;
|
| 131 |
-
}
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
/**
|
| 135 |
-
* Set SSL client certificates (experimental)
|
| 136 |
-
*
|
| 137 |
-
* @param string $sslCert SSL client certificate
|
| 138 |
-
* @param string $sslKey SSL client key
|
| 139 |
-
* @param string $sslCACert SSL CA cert (only required if you are having problems with your system CA cert)
|
| 140 |
-
* @return void
|
| 141 |
-
*/
|
| 142 |
-
public static function setSSLAuth($sslCert = null, $sslKey = null, $sslCACert = null)
|
| 143 |
-
{
|
| 144 |
-
self::$sslCert = $sslCert;
|
| 145 |
-
self::$sslKey = $sslKey;
|
| 146 |
-
self::$sslCACert = $sslCACert;
|
| 147 |
-
}
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
/**
|
| 151 |
-
* Set proxy information
|
| 152 |
-
*
|
| 153 |
-
* @param string $host Proxy hostname and port (localhost:1234)
|
| 154 |
-
* @param string $user Proxy username
|
| 155 |
-
* @param string $pass Proxy password
|
| 156 |
-
* @param constant $type CURL proxy type
|
| 157 |
-
* @return void
|
| 158 |
-
*/
|
| 159 |
-
public static function setProxy($host, $user = null, $pass = null, $type = CURLPROXY_SOCKS5)
|
| 160 |
-
{
|
| 161 |
-
self::$proxy = array('host' => $host, 'type' => $type, 'user' => null, 'pass' => 'null');
|
| 162 |
-
}
|
| 163 |
-
|
| 164 |
-
|
| 165 |
-
/**
|
| 166 |
-
* Set the error mode to exceptions
|
| 167 |
-
*
|
| 168 |
-
* @param boolean $enabled Enable exceptions
|
| 169 |
-
* @return void
|
| 170 |
-
*/
|
| 171 |
-
public static function setExceptions($enabled = true)
|
| 172 |
-
{
|
| 173 |
-
self::$useExceptions = $enabled;
|
| 174 |
-
}
|
| 175 |
-
|
| 176 |
-
|
| 177 |
-
/**
|
| 178 |
-
* Set signing key
|
| 179 |
-
*
|
| 180 |
-
* @param string $keyPairId AWS Key Pair ID
|
| 181 |
-
* @param string $signingKey Private Key
|
| 182 |
-
* @param boolean $isFile Load private key from file, set to false to load string
|
| 183 |
-
* @return boolean
|
| 184 |
-
*/
|
| 185 |
-
public static function setSigningKey($keyPairId, $signingKey, $isFile = true)
|
| 186 |
-
{
|
| 187 |
-
self::$__signingKeyPairId = $keyPairId;
|
| 188 |
-
if ((self::$__signingKeyResource = openssl_pkey_get_private($isFile ?
|
| 189 |
-
file_get_contents($signingKey) : $signingKey)) !== false) return true;
|
| 190 |
-
self::__triggerError('S3::setSigningKey(): Unable to open load private key: '.$signingKey, __FILE__, __LINE__);
|
| 191 |
-
return false;
|
| 192 |
-
}
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
/**
|
| 196 |
-
* Free signing key from memory, MUST be called if you are using setSigningKey()
|
| 197 |
-
*
|
| 198 |
-
* @return void
|
| 199 |
-
*/
|
| 200 |
-
public static function freeSigningKey()
|
| 201 |
-
{
|
| 202 |
-
if (self::$__signingKeyResource !== false)
|
| 203 |
-
openssl_free_key(self::$__signingKeyResource);
|
| 204 |
-
}
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
/**
|
| 208 |
-
* Internal error handler
|
| 209 |
-
*
|
| 210 |
-
* @internal Internal error handler
|
| 211 |
-
* @param string $message Error message
|
| 212 |
-
* @param string $file Filename
|
| 213 |
-
* @param integer $line Line number
|
| 214 |
-
* @param integer $code Error code
|
| 215 |
-
* @return void
|
| 216 |
-
*/
|
| 217 |
-
private static function __triggerError($message, $file, $line, $code = 0)
|
| 218 |
-
{
|
| 219 |
-
if (self::$useExceptions)
|
| 220 |
-
throw new S3Exception($message, $file, $line, $code);
|
| 221 |
-
else
|
| 222 |
-
trigger_error($message, E_USER_WARNING);
|
| 223 |
-
}
|
| 224 |
-
|
| 225 |
-
|
| 226 |
-
/**
|
| 227 |
-
* Get a list of buckets
|
| 228 |
-
*
|
| 229 |
-
* @param boolean $detailed Returns detailed bucket list when true
|
| 230 |
-
* @return array | false
|
| 231 |
-
*/
|
| 232 |
-
public static function listBuckets($detailed = false)
|
| 233 |
-
{
|
| 234 |
-
$rest = new S3Request('GET', '', '', self::$endpoint);
|
| 235 |
-
$rest = $rest->getResponse();
|
| 236 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 237 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 238 |
-
if ($rest->error !== false)
|
| 239 |
-
{
|
| 240 |
-
self::__triggerError(sprintf("S3::listBuckets(): [%s] %s", $rest->error['code'],
|
| 241 |
-
$rest->error['message']), __FILE__, __LINE__);
|
| 242 |
-
return false;
|
| 243 |
-
}
|
| 244 |
-
$results = array();
|
| 245 |
-
if (!isset($rest->body->Buckets)) return $results;
|
| 246 |
-
|
| 247 |
-
if ($detailed)
|
| 248 |
-
{
|
| 249 |
-
if (isset($rest->body->Owner, $rest->body->Owner->ID, $rest->body->Owner->DisplayName))
|
| 250 |
-
$results['owner'] = array(
|
| 251 |
-
'id' => (string)$rest->body->Owner->ID, 'name' => (string)$rest->body->Owner->ID
|
| 252 |
-
);
|
| 253 |
-
$results['buckets'] = array();
|
| 254 |
-
foreach ($rest->body->Buckets->Bucket as $b)
|
| 255 |
-
$results['buckets'][] = array(
|
| 256 |
-
'name' => (string)$b->Name, 'time' => strtotime((string)$b->CreationDate)
|
| 257 |
-
);
|
| 258 |
-
} else
|
| 259 |
-
foreach ($rest->body->Buckets->Bucket as $b) $results[] = (string)$b->Name;
|
| 260 |
-
|
| 261 |
-
return $results;
|
| 262 |
-
}
|
| 263 |
-
|
| 264 |
-
|
| 265 |
-
/*
|
| 266 |
-
* Get contents for a bucket
|
| 267 |
-
*
|
| 268 |
-
* If maxKeys is null this method will loop through truncated result sets
|
| 269 |
-
*
|
| 270 |
-
* @param string $bucket Bucket name
|
| 271 |
-
* @param string $prefix Prefix
|
| 272 |
-
* @param string $marker Marker (last file listed)
|
| 273 |
-
* @param string $maxKeys Max keys (maximum number of keys to return)
|
| 274 |
-
* @param string $delimiter Delimiter
|
| 275 |
-
* @param boolean $returnCommonPrefixes Set to true to return CommonPrefixes
|
| 276 |
-
* @return array | false
|
| 277 |
-
*/
|
| 278 |
-
public static function getBucket($bucket, $prefix = null, $marker = null, $maxKeys = null, $delimiter = null, $returnCommonPrefixes = false)
|
| 279 |
-
{
|
| 280 |
-
$rest = new S3Request('GET', $bucket, '', self::$endpoint);
|
| 281 |
-
if ($maxKeys == 0) $maxKeys = null;
|
| 282 |
-
if ($prefix !== null && $prefix !== '') $rest->setParameter('prefix', $prefix);
|
| 283 |
-
if ($marker !== null && $marker !== '') $rest->setParameter('marker', $marker);
|
| 284 |
-
if ($maxKeys !== null && $maxKeys !== '') $rest->setParameter('max-keys', $maxKeys);
|
| 285 |
-
if ($delimiter !== null && $delimiter !== '') $rest->setParameter('delimiter', $delimiter);
|
| 286 |
-
$response = $rest->getResponse();
|
| 287 |
-
if ($response->error === false && $response->code !== 200)
|
| 288 |
-
$response->error = array('code' => $response->code, 'message' => 'Unexpected HTTP status');
|
| 289 |
-
if ($response->error !== false)
|
| 290 |
-
{
|
| 291 |
-
self::__triggerError(sprintf("S3::getBucket(): [%s] %s",
|
| 292 |
-
$response->error['code'], $response->error['message']), __FILE__, __LINE__);
|
| 293 |
-
return false;
|
| 294 |
-
}
|
| 295 |
-
|
| 296 |
-
$results = array();
|
| 297 |
-
|
| 298 |
-
$nextMarker = null;
|
| 299 |
-
if (isset($response->body, $response->body->Contents))
|
| 300 |
-
foreach ($response->body->Contents as $c)
|
| 301 |
-
{
|
| 302 |
-
$results[(string)$c->Key] = array(
|
| 303 |
-
'name' => (string)$c->Key,
|
| 304 |
-
'time' => strtotime((string)$c->LastModified),
|
| 305 |
-
'size' => (int)$c->Size,
|
| 306 |
-
'hash' => substr((string)$c->ETag, 1, -1)
|
| 307 |
-
);
|
| 308 |
-
$nextMarker = (string)$c->Key;
|
| 309 |
-
}
|
| 310 |
-
|
| 311 |
-
if ($returnCommonPrefixes && isset($response->body, $response->body->CommonPrefixes))
|
| 312 |
-
foreach ($response->body->CommonPrefixes as $c)
|
| 313 |
-
$results[(string)$c->Prefix] = array('prefix' => (string)$c->Prefix);
|
| 314 |
-
|
| 315 |
-
if (isset($response->body, $response->body->IsTruncated) &&
|
| 316 |
-
(string)$response->body->IsTruncated == 'false') return $results;
|
| 317 |
-
|
| 318 |
-
if (isset($response->body, $response->body->NextMarker))
|
| 319 |
-
$nextMarker = (string)$response->body->NextMarker;
|
| 320 |
-
|
| 321 |
-
// Loop through truncated results if maxKeys isn't specified
|
| 322 |
-
if ($maxKeys == null && $nextMarker !== null && (string)$response->body->IsTruncated == 'true')
|
| 323 |
-
do
|
| 324 |
-
{
|
| 325 |
-
$rest = new S3Request('GET', $bucket, '', self::$endpoint);
|
| 326 |
-
if ($prefix !== null && $prefix !== '') $rest->setParameter('prefix', $prefix);
|
| 327 |
-
$rest->setParameter('marker', $nextMarker);
|
| 328 |
-
if ($delimiter !== null && $delimiter !== '') $rest->setParameter('delimiter', $delimiter);
|
| 329 |
-
|
| 330 |
-
if (($response = $rest->getResponse(true)) == false || $response->code !== 200) break;
|
| 331 |
-
|
| 332 |
-
if (isset($response->body, $response->body->Contents))
|
| 333 |
-
foreach ($response->body->Contents as $c)
|
| 334 |
-
{
|
| 335 |
-
$results[(string)$c->Key] = array(
|
| 336 |
-
'name' => (string)$c->Key,
|
| 337 |
-
'time' => strtotime((string)$c->LastModified),
|
| 338 |
-
'size' => (int)$c->Size,
|
| 339 |
-
'hash' => substr((string)$c->ETag, 1, -1)
|
| 340 |
-
);
|
| 341 |
-
$nextMarker = (string)$c->Key;
|
| 342 |
-
}
|
| 343 |
-
|
| 344 |
-
if ($returnCommonPrefixes && isset($response->body, $response->body->CommonPrefixes))
|
| 345 |
-
foreach ($response->body->CommonPrefixes as $c)
|
| 346 |
-
$results[(string)$c->Prefix] = array('prefix' => (string)$c->Prefix);
|
| 347 |
-
|
| 348 |
-
if (isset($response->body, $response->body->NextMarker))
|
| 349 |
-
$nextMarker = (string)$response->body->NextMarker;
|
| 350 |
-
|
| 351 |
-
} while ($response !== false && (string)$response->body->IsTruncated == 'true');
|
| 352 |
-
|
| 353 |
-
return $results;
|
| 354 |
-
}
|
| 355 |
-
|
| 356 |
-
|
| 357 |
-
/**
|
| 358 |
-
* Put a bucket
|
| 359 |
-
*
|
| 360 |
-
* @param string $bucket Bucket name
|
| 361 |
-
* @param constant $acl ACL flag
|
| 362 |
-
* @param string $location Set as "EU" to create buckets hosted in Europe
|
| 363 |
-
* @return boolean
|
| 364 |
-
*/
|
| 365 |
-
public static function putBucket($bucket, $acl = self::ACL_PRIVATE, $location = false)
|
| 366 |
-
{
|
| 367 |
-
$rest = new S3Request('PUT', $bucket, '', self::$endpoint);
|
| 368 |
-
$rest->setAmzHeader('x-amz-acl', $acl);
|
| 369 |
-
|
| 370 |
-
if ($location !== false)
|
| 371 |
-
{
|
| 372 |
-
$dom = new DOMDocument;
|
| 373 |
-
$createBucketConfiguration = $dom->createElement('CreateBucketConfiguration');
|
| 374 |
-
$locationConstraint = $dom->createElement('LocationConstraint', strtoupper($location));
|
| 375 |
-
$createBucketConfiguration->appendChild($locationConstraint);
|
| 376 |
-
$dom->appendChild($createBucketConfiguration);
|
| 377 |
-
$rest->data = $dom->saveXML();
|
| 378 |
-
$rest->size = strlen($rest->data);
|
| 379 |
-
$rest->setHeader('Content-Type', 'application/xml');
|
| 380 |
-
}
|
| 381 |
-
$rest = $rest->getResponse();
|
| 382 |
-
|
| 383 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 384 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 385 |
-
if ($rest->error !== false)
|
| 386 |
-
{
|
| 387 |
-
self::__triggerError(sprintf("S3::putBucket({$bucket}, {$acl}, {$location}): [%s] %s",
|
| 388 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 389 |
-
return false;
|
| 390 |
-
}
|
| 391 |
-
return true;
|
| 392 |
-
}
|
| 393 |
-
|
| 394 |
-
|
| 395 |
-
/**
|
| 396 |
-
* Delete an empty bucket
|
| 397 |
-
*
|
| 398 |
-
* @param string $bucket Bucket name
|
| 399 |
-
* @return boolean
|
| 400 |
-
*/
|
| 401 |
-
public static function deleteBucket($bucket)
|
| 402 |
-
{
|
| 403 |
-
$rest = new S3Request('DELETE', $bucket, '', self::$endpoint);
|
| 404 |
-
$rest = $rest->getResponse();
|
| 405 |
-
if ($rest->error === false && $rest->code !== 204)
|
| 406 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 407 |
-
if ($rest->error !== false)
|
| 408 |
-
{
|
| 409 |
-
self::__triggerError(sprintf("S3::deleteBucket({$bucket}): [%s] %s",
|
| 410 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 411 |
-
return false;
|
| 412 |
-
}
|
| 413 |
-
return true;
|
| 414 |
-
}
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
/**
|
| 418 |
-
* Create input info array for putObject()
|
| 419 |
-
*
|
| 420 |
-
* @param string $file Input file
|
| 421 |
-
* @param mixed $md5sum Use MD5 hash (supply a string if you want to use your own)
|
| 422 |
-
* @return array | false
|
| 423 |
-
*/
|
| 424 |
-
public static function inputFile($file, $md5sum = true)
|
| 425 |
-
{
|
| 426 |
-
if (!file_exists($file) || !is_file($file) || !is_readable($file))
|
| 427 |
-
{
|
| 428 |
-
self::__triggerError('S3::inputFile(): Unable to open input file: '.$file, __FILE__, __LINE__);
|
| 429 |
-
return false;
|
| 430 |
-
}
|
| 431 |
-
return array('file' => $file, 'size' => filesize($file), 'md5sum' => $md5sum !== false ?
|
| 432 |
-
(is_string($md5sum) ? $md5sum : base64_encode(md5_file($file, true))) : '');
|
| 433 |
-
}
|
| 434 |
-
|
| 435 |
-
|
| 436 |
-
/**
|
| 437 |
-
* Create input array info for putObject() with a resource
|
| 438 |
-
*
|
| 439 |
-
* @param string $resource Input resource to read from
|
| 440 |
-
* @param integer $bufferSize Input byte size
|
| 441 |
-
* @param string $md5sum MD5 hash to send (optional)
|
| 442 |
-
* @return array | false
|
| 443 |
-
*/
|
| 444 |
-
public static function inputResource(&$resource, $bufferSize, $md5sum = '')
|
| 445 |
-
{
|
| 446 |
-
if (!is_resource($resource) || $bufferSize < 0)
|
| 447 |
-
{
|
| 448 |
-
self::__triggerError('S3::inputResource(): Invalid resource or buffer size', __FILE__, __LINE__);
|
| 449 |
-
return false;
|
| 450 |
-
}
|
| 451 |
-
$input = array('size' => $bufferSize, 'md5sum' => $md5sum);
|
| 452 |
-
$input['fp'] =& $resource;
|
| 453 |
-
return $input;
|
| 454 |
-
}
|
| 455 |
-
|
| 456 |
-
|
| 457 |
-
/**
|
| 458 |
-
* Put an object
|
| 459 |
-
*
|
| 460 |
-
* @param mixed $input Input data
|
| 461 |
-
* @param string $bucket Bucket name
|
| 462 |
-
* @param string $uri Object URI
|
| 463 |
-
* @param constant $acl ACL constant
|
| 464 |
-
* @param array $metaHeaders Array of x-amz-meta-* headers
|
| 465 |
-
* @param array $requestHeaders Array of request headers or content type as a string
|
| 466 |
-
* @param constant $storageClass Storage class constant
|
| 467 |
-
* @return boolean
|
| 468 |
-
*/
|
| 469 |
-
public static function putObject($input, $bucket, $uri, $acl = self::ACL_PRIVATE, $metaHeaders = array(), $requestHeaders = array(), $storageClass = self::STORAGE_CLASS_STANDARD)
|
| 470 |
-
{
|
| 471 |
-
if ($input === false) return false;
|
| 472 |
-
$rest = new S3Request('PUT', $bucket, $uri, self::$endpoint);
|
| 473 |
-
|
| 474 |
-
if (is_string($input)) $input = array(
|
| 475 |
-
'data' => $input, 'size' => strlen($input),
|
| 476 |
-
'md5sum' => base64_encode(md5($input, true))
|
| 477 |
-
);
|
| 478 |
-
|
| 479 |
-
// Data
|
| 480 |
-
if (isset($input['fp']))
|
| 481 |
-
$rest->fp =& $input['fp'];
|
| 482 |
-
elseif (isset($input['file']))
|
| 483 |
-
$rest->fp = @fopen($input['file'], 'rb');
|
| 484 |
-
elseif (isset($input['data']))
|
| 485 |
-
$rest->data = $input['data'];
|
| 486 |
-
|
| 487 |
-
// Content-Length (required)
|
| 488 |
-
if (isset($input['size']) && $input['size'] >= 0)
|
| 489 |
-
$rest->size = $input['size'];
|
| 490 |
-
else {
|
| 491 |
-
if (isset($input['file']))
|
| 492 |
-
$rest->size = filesize($input['file']);
|
| 493 |
-
elseif (isset($input['data']))
|
| 494 |
-
$rest->size = strlen($input['data']);
|
| 495 |
-
}
|
| 496 |
-
|
| 497 |
-
// Custom request headers (Content-Type, Content-Disposition, Content-Encoding)
|
| 498 |
-
if (is_array($requestHeaders))
|
| 499 |
-
foreach ($requestHeaders as $h => $v) $rest->setHeader($h, $v);
|
| 500 |
-
elseif (is_string($requestHeaders)) // Support for legacy contentType parameter
|
| 501 |
-
$input['type'] = $requestHeaders;
|
| 502 |
-
|
| 503 |
-
// Content-Type
|
| 504 |
-
if (!isset($input['type']))
|
| 505 |
-
{
|
| 506 |
-
if (isset($requestHeaders['Content-Type']))
|
| 507 |
-
$input['type'] =& $requestHeaders['Content-Type'];
|
| 508 |
-
elseif (isset($input['file']))
|
| 509 |
-
$input['type'] = self::__getMimeType($input['file']);
|
| 510 |
-
else
|
| 511 |
-
$input['type'] = 'application/octet-stream';
|
| 512 |
-
}
|
| 513 |
-
|
| 514 |
-
if ($storageClass !== self::STORAGE_CLASS_STANDARD) // Storage class
|
| 515 |
-
$rest->setAmzHeader('x-amz-storage-class', $storageClass);
|
| 516 |
-
|
| 517 |
-
// We need to post with Content-Length and Content-Type, MD5 is optional
|
| 518 |
-
if ($rest->size >= 0 && ($rest->fp !== false || $rest->data !== false))
|
| 519 |
-
{
|
| 520 |
-
$rest->setHeader('Content-Type', $input['type']);
|
| 521 |
-
if (isset($input['md5sum'])) $rest->setHeader('Content-MD5', $input['md5sum']);
|
| 522 |
-
|
| 523 |
-
$rest->setAmzHeader('x-amz-acl', $acl);
|
| 524 |
-
foreach ($metaHeaders as $h => $v) $rest->setAmzHeader('x-amz-meta-'.$h, $v);
|
| 525 |
-
$rest->getResponse();
|
| 526 |
-
} else
|
| 527 |
-
$rest->response->error = array('code' => 0, 'message' => 'Missing input parameters');
|
| 528 |
-
|
| 529 |
-
if ($rest->response->error === false && $rest->response->code !== 200)
|
| 530 |
-
$rest->response->error = array('code' => $rest->response->code, 'message' => 'Unexpected HTTP status');
|
| 531 |
-
if ($rest->response->error !== false)
|
| 532 |
-
{
|
| 533 |
-
self::__triggerError(sprintf("S3::putObject(): [%s] %s",
|
| 534 |
-
$rest->response->error['code'], $rest->response->error['message']), __FILE__, __LINE__);
|
| 535 |
-
return false;
|
| 536 |
-
}
|
| 537 |
-
return true;
|
| 538 |
-
}
|
| 539 |
-
|
| 540 |
-
|
| 541 |
-
/**
|
| 542 |
-
* Put an object from a file (legacy function)
|
| 543 |
-
*
|
| 544 |
-
* @param string $file Input file path
|
| 545 |
-
* @param string $bucket Bucket name
|
| 546 |
-
* @param string $uri Object URI
|
| 547 |
-
* @param constant $acl ACL constant
|
| 548 |
-
* @param array $metaHeaders Array of x-amz-meta-* headers
|
| 549 |
-
* @param string $contentType Content type
|
| 550 |
-
* @return boolean
|
| 551 |
-
*/
|
| 552 |
-
public static function putObjectFile($file, $bucket, $uri, $acl = self::ACL_PRIVATE, $metaHeaders = array(), $contentType = null)
|
| 553 |
-
{
|
| 554 |
-
return self::putObject(self::inputFile($file), $bucket, $uri, $acl, $metaHeaders, $contentType);
|
| 555 |
-
}
|
| 556 |
-
|
| 557 |
-
|
| 558 |
-
/**
|
| 559 |
-
* Put an object from a string (legacy function)
|
| 560 |
-
*
|
| 561 |
-
* @param string $string Input data
|
| 562 |
-
* @param string $bucket Bucket name
|
| 563 |
-
* @param string $uri Object URI
|
| 564 |
-
* @param constant $acl ACL constant
|
| 565 |
-
* @param array $metaHeaders Array of x-amz-meta-* headers
|
| 566 |
-
* @param string $contentType Content type
|
| 567 |
-
* @return boolean
|
| 568 |
-
*/
|
| 569 |
-
public static function putObjectString($string, $bucket, $uri, $acl = self::ACL_PRIVATE, $metaHeaders = array(), $contentType = 'text/plain')
|
| 570 |
-
{
|
| 571 |
-
return self::putObject($string, $bucket, $uri, $acl, $metaHeaders, $contentType);
|
| 572 |
-
}
|
| 573 |
-
|
| 574 |
-
|
| 575 |
-
/**
|
| 576 |
-
* Get an object
|
| 577 |
-
*
|
| 578 |
-
* @param string $bucket Bucket name
|
| 579 |
-
* @param string $uri Object URI
|
| 580 |
-
* @param mixed $saveTo Filename or resource to write to
|
| 581 |
-
* @return mixed
|
| 582 |
-
*/
|
| 583 |
-
public static function getObject($bucket, $uri, $saveTo = false)
|
| 584 |
-
{
|
| 585 |
-
$rest = new S3Request('GET', $bucket, $uri, self::$endpoint);
|
| 586 |
-
if ($saveTo !== false)
|
| 587 |
-
{
|
| 588 |
-
if (is_resource($saveTo))
|
| 589 |
-
$rest->fp =& $saveTo;
|
| 590 |
-
else
|
| 591 |
-
if (($rest->fp = @fopen($saveTo, 'wb')) !== false)
|
| 592 |
-
$rest->file = realpath($saveTo);
|
| 593 |
-
else
|
| 594 |
-
$rest->response->error = array('code' => 0, 'message' => 'Unable to open save file for writing: '.$saveTo);
|
| 595 |
-
}
|
| 596 |
-
if ($rest->response->error === false) $rest->getResponse();
|
| 597 |
-
|
| 598 |
-
if ($rest->response->error === false && $rest->response->code !== 200)
|
| 599 |
-
$rest->response->error = array('code' => $rest->response->code, 'message' => 'Unexpected HTTP status');
|
| 600 |
-
if ($rest->response->error !== false)
|
| 601 |
-
{
|
| 602 |
-
self::__triggerError(sprintf("S3::getObject({$bucket}, {$uri}): [%s] %s",
|
| 603 |
-
$rest->response->error['code'], $rest->response->error['message']), __FILE__, __LINE__);
|
| 604 |
-
return false;
|
| 605 |
-
}
|
| 606 |
-
return $rest->response;
|
| 607 |
-
}
|
| 608 |
-
|
| 609 |
-
|
| 610 |
-
/**
|
| 611 |
-
* Get object information
|
| 612 |
-
*
|
| 613 |
-
* @param string $bucket Bucket name
|
| 614 |
-
* @param string $uri Object URI
|
| 615 |
-
* @param boolean $returnInfo Return response information
|
| 616 |
-
* @return mixed | false
|
| 617 |
-
*/
|
| 618 |
-
public static function getObjectInfo($bucket, $uri, $returnInfo = true)
|
| 619 |
-
{
|
| 620 |
-
$rest = new S3Request('HEAD', $bucket, $uri, self::$endpoint);
|
| 621 |
-
$rest = $rest->getResponse();
|
| 622 |
-
if ($rest->error === false && ($rest->code !== 200 && $rest->code !== 404))
|
| 623 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 624 |
-
if ($rest->error !== false)
|
| 625 |
-
{
|
| 626 |
-
self::__triggerError(sprintf("S3::getObjectInfo({$bucket}, {$uri}): [%s] %s",
|
| 627 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 628 |
-
return false;
|
| 629 |
-
}
|
| 630 |
-
return $rest->code == 200 ? $returnInfo ? $rest->headers : true : false;
|
| 631 |
-
}
|
| 632 |
-
|
| 633 |
-
|
| 634 |
-
/**
|
| 635 |
-
* Copy an object
|
| 636 |
-
*
|
| 637 |
-
* @param string $bucket Source bucket name
|
| 638 |
-
* @param string $uri Source object URI
|
| 639 |
-
* @param string $bucket Destination bucket name
|
| 640 |
-
* @param string $uri Destination object URI
|
| 641 |
-
* @param constant $acl ACL constant
|
| 642 |
-
* @param array $metaHeaders Optional array of x-amz-meta-* headers
|
| 643 |
-
* @param array $requestHeaders Optional array of request headers (content type, disposition, etc.)
|
| 644 |
-
* @param constant $storageClass Storage class constant
|
| 645 |
-
* @return mixed | false
|
| 646 |
-
*/
|
| 647 |
-
public static function copyObject($srcBucket, $srcUri, $bucket, $uri, $acl = self::ACL_PRIVATE, $metaHeaders = array(), $requestHeaders = array(), $storageClass = self::STORAGE_CLASS_STANDARD)
|
| 648 |
-
{
|
| 649 |
-
$rest = new S3Request('PUT', $bucket, $uri, self::$endpoint);
|
| 650 |
-
$rest->setHeader('Content-Length', 0);
|
| 651 |
-
foreach ($requestHeaders as $h => $v) $rest->setHeader($h, $v);
|
| 652 |
-
foreach ($metaHeaders as $h => $v) $rest->setAmzHeader('x-amz-meta-'.$h, $v);
|
| 653 |
-
if ($storageClass !== self::STORAGE_CLASS_STANDARD) // Storage class
|
| 654 |
-
$rest->setAmzHeader('x-amz-storage-class', $storageClass);
|
| 655 |
-
$rest->setAmzHeader('x-amz-acl', $acl); // Added rawurlencode() for $srcUri (thanks a.yamanoi)
|
| 656 |
-
$rest->setAmzHeader('x-amz-copy-source', sprintf('/%s/%s', $srcBucket, rawurlencode($srcUri)));
|
| 657 |
-
if (sizeof($requestHeaders) > 0 || sizeof($metaHeaders) > 0)
|
| 658 |
-
$rest->setAmzHeader('x-amz-metadata-directive', 'REPLACE');
|
| 659 |
-
|
| 660 |
-
$rest = $rest->getResponse();
|
| 661 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 662 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 663 |
-
if ($rest->error !== false)
|
| 664 |
-
{
|
| 665 |
-
self::__triggerError(sprintf("S3::copyObject({$srcBucket}, {$srcUri}, {$bucket}, {$uri}): [%s] %s",
|
| 666 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 667 |
-
return false;
|
| 668 |
-
}
|
| 669 |
-
return isset($rest->body->LastModified, $rest->body->ETag) ? array(
|
| 670 |
-
'time' => strtotime((string)$rest->body->LastModified),
|
| 671 |
-
'hash' => substr((string)$rest->body->ETag, 1, -1)
|
| 672 |
-
) : false;
|
| 673 |
-
}
|
| 674 |
-
|
| 675 |
-
|
| 676 |
-
/**
|
| 677 |
-
* Set logging for a bucket
|
| 678 |
-
*
|
| 679 |
-
* @param string $bucket Bucket name
|
| 680 |
-
* @param string $targetBucket Target bucket (where logs are stored)
|
| 681 |
-
* @param string $targetPrefix Log prefix (e,g; domain.com-)
|
| 682 |
-
* @return boolean
|
| 683 |
-
*/
|
| 684 |
-
public static function setBucketLogging($bucket, $targetBucket, $targetPrefix = null)
|
| 685 |
-
{
|
| 686 |
-
// The S3 log delivery group has to be added to the target bucket's ACP
|
| 687 |
-
if ($targetBucket !== null && ($acp = self::getAccessControlPolicy($targetBucket, '')) !== false)
|
| 688 |
-
{
|
| 689 |
-
// Only add permissions to the target bucket when they do not exist
|
| 690 |
-
$aclWriteSet = false;
|
| 691 |
-
$aclReadSet = false;
|
| 692 |
-
foreach ($acp['acl'] as $acl)
|
| 693 |
-
if ($acl['type'] == 'Group' && $acl['uri'] == 'http://acs.amazonaws.com/groups/s3/LogDelivery')
|
| 694 |
-
{
|
| 695 |
-
if ($acl['permission'] == 'WRITE') $aclWriteSet = true;
|
| 696 |
-
elseif ($acl['permission'] == 'READ_ACP') $aclReadSet = true;
|
| 697 |
-
}
|
| 698 |
-
if (!$aclWriteSet) $acp['acl'][] = array(
|
| 699 |
-
'type' => 'Group', 'uri' => 'http://acs.amazonaws.com/groups/s3/LogDelivery', 'permission' => 'WRITE'
|
| 700 |
-
);
|
| 701 |
-
if (!$aclReadSet) $acp['acl'][] = array(
|
| 702 |
-
'type' => 'Group', 'uri' => 'http://acs.amazonaws.com/groups/s3/LogDelivery', 'permission' => 'READ_ACP'
|
| 703 |
-
);
|
| 704 |
-
if (!$aclReadSet || !$aclWriteSet) self::setAccessControlPolicy($targetBucket, '', $acp);
|
| 705 |
-
}
|
| 706 |
-
|
| 707 |
-
$dom = new DOMDocument;
|
| 708 |
-
$bucketLoggingStatus = $dom->createElement('BucketLoggingStatus');
|
| 709 |
-
$bucketLoggingStatus->setAttribute('xmlns', 'http://s3.amazonaws.com/doc/2006-03-01/');
|
| 710 |
-
if ($targetBucket !== null)
|
| 711 |
-
{
|
| 712 |
-
if ($targetPrefix == null) $targetPrefix = $bucket . '-';
|
| 713 |
-
$loggingEnabled = $dom->createElement('LoggingEnabled');
|
| 714 |
-
$loggingEnabled->appendChild($dom->createElement('TargetBucket', $targetBucket));
|
| 715 |
-
$loggingEnabled->appendChild($dom->createElement('TargetPrefix', $targetPrefix));
|
| 716 |
-
// TODO: Add TargetGrants?
|
| 717 |
-
$bucketLoggingStatus->appendChild($loggingEnabled);
|
| 718 |
-
}
|
| 719 |
-
$dom->appendChild($bucketLoggingStatus);
|
| 720 |
-
|
| 721 |
-
$rest = new S3Request('PUT', $bucket, '', self::$endpoint);
|
| 722 |
-
$rest->setParameter('logging', null);
|
| 723 |
-
$rest->data = $dom->saveXML();
|
| 724 |
-
$rest->size = strlen($rest->data);
|
| 725 |
-
$rest->setHeader('Content-Type', 'application/xml');
|
| 726 |
-
$rest = $rest->getResponse();
|
| 727 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 728 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 729 |
-
if ($rest->error !== false)
|
| 730 |
-
{
|
| 731 |
-
self::__triggerError(sprintf("S3::setBucketLogging({$bucket}, {$uri}): [%s] %s",
|
| 732 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 733 |
-
return false;
|
| 734 |
-
}
|
| 735 |
-
return true;
|
| 736 |
-
}
|
| 737 |
-
|
| 738 |
-
|
| 739 |
-
/**
|
| 740 |
-
* Get logging status for a bucket
|
| 741 |
-
*
|
| 742 |
-
* This will return false if logging is not enabled.
|
| 743 |
-
* Note: To enable logging, you also need to grant write access to the log group
|
| 744 |
-
*
|
| 745 |
-
* @param string $bucket Bucket name
|
| 746 |
-
* @return array | false
|
| 747 |
-
*/
|
| 748 |
-
public static function getBucketLogging($bucket)
|
| 749 |
-
{
|
| 750 |
-
$rest = new S3Request('GET', $bucket, '', self::$endpoint);
|
| 751 |
-
$rest->setParameter('logging', null);
|
| 752 |
-
$rest = $rest->getResponse();
|
| 753 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 754 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 755 |
-
if ($rest->error !== false)
|
| 756 |
-
{
|
| 757 |
-
self::__triggerError(sprintf("S3::getBucketLogging({$bucket}): [%s] %s",
|
| 758 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 759 |
-
return false;
|
| 760 |
-
}
|
| 761 |
-
if (!isset($rest->body->LoggingEnabled)) return false; // No logging
|
| 762 |
-
return array(
|
| 763 |
-
'targetBucket' => (string)$rest->body->LoggingEnabled->TargetBucket,
|
| 764 |
-
'targetPrefix' => (string)$rest->body->LoggingEnabled->TargetPrefix,
|
| 765 |
-
);
|
| 766 |
-
}
|
| 767 |
-
|
| 768 |
-
|
| 769 |
-
/**
|
| 770 |
-
* Disable bucket logging
|
| 771 |
-
*
|
| 772 |
-
* @param string $bucket Bucket name
|
| 773 |
-
* @return boolean
|
| 774 |
-
*/
|
| 775 |
-
public static function disableBucketLogging($bucket)
|
| 776 |
-
{
|
| 777 |
-
return self::setBucketLogging($bucket, null);
|
| 778 |
-
}
|
| 779 |
-
|
| 780 |
-
|
| 781 |
-
/**
|
| 782 |
-
* Get a bucket's location
|
| 783 |
-
*
|
| 784 |
-
* @param string $bucket Bucket name
|
| 785 |
-
* @return string | false
|
| 786 |
-
*/
|
| 787 |
-
public static function getBucketLocation($bucket)
|
| 788 |
-
{
|
| 789 |
-
$rest = new S3Request('GET', $bucket, '', self::$endpoint);
|
| 790 |
-
$rest->setParameter('location', null);
|
| 791 |
-
$rest = $rest->getResponse();
|
| 792 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 793 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 794 |
-
if ($rest->error !== false)
|
| 795 |
-
{
|
| 796 |
-
self::__triggerError(sprintf("S3::getBucketLocation({$bucket}): [%s] %s",
|
| 797 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 798 |
-
return false;
|
| 799 |
-
}
|
| 800 |
-
return (isset($rest->body[0]) && (string)$rest->body[0] !== '') ? (string)$rest->body[0] : 'US';
|
| 801 |
-
}
|
| 802 |
-
|
| 803 |
-
|
| 804 |
-
/**
|
| 805 |
-
* Set object or bucket Access Control Policy
|
| 806 |
-
*
|
| 807 |
-
* @param string $bucket Bucket name
|
| 808 |
-
* @param string $uri Object URI
|
| 809 |
-
* @param array $acp Access Control Policy Data (same as the data returned from getAccessControlPolicy)
|
| 810 |
-
* @return boolean
|
| 811 |
-
*/
|
| 812 |
-
public static function setAccessControlPolicy($bucket, $uri = '', $acp = array())
|
| 813 |
-
{
|
| 814 |
-
$dom = new DOMDocument;
|
| 815 |
-
$dom->formatOutput = true;
|
| 816 |
-
$accessControlPolicy = $dom->createElement('AccessControlPolicy');
|
| 817 |
-
$accessControlList = $dom->createElement('AccessControlList');
|
| 818 |
-
|
| 819 |
-
// It seems the owner has to be passed along too
|
| 820 |
-
$owner = $dom->createElement('Owner');
|
| 821 |
-
$owner->appendChild($dom->createElement('ID', $acp['owner']['id']));
|
| 822 |
-
$owner->appendChild($dom->createElement('DisplayName', $acp['owner']['name']));
|
| 823 |
-
$accessControlPolicy->appendChild($owner);
|
| 824 |
-
|
| 825 |
-
foreach ($acp['acl'] as $g)
|
| 826 |
-
{
|
| 827 |
-
$grant = $dom->createElement('Grant');
|
| 828 |
-
$grantee = $dom->createElement('Grantee');
|
| 829 |
-
$grantee->setAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance');
|
| 830 |
-
if (isset($g['id']))
|
| 831 |
-
{ // CanonicalUser (DisplayName is omitted)
|
| 832 |
-
$grantee->setAttribute('xsi:type', 'CanonicalUser');
|
| 833 |
-
$grantee->appendChild($dom->createElement('ID', $g['id']));
|
| 834 |
-
}
|
| 835 |
-
elseif (isset($g['email']))
|
| 836 |
-
{ // AmazonCustomerByEmail
|
| 837 |
-
$grantee->setAttribute('xsi:type', 'AmazonCustomerByEmail');
|
| 838 |
-
$grantee->appendChild($dom->createElement('EmailAddress', $g['email']));
|
| 839 |
-
}
|
| 840 |
-
elseif ($g['type'] == 'Group')
|
| 841 |
-
{ // Group
|
| 842 |
-
$grantee->setAttribute('xsi:type', 'Group');
|
| 843 |
-
$grantee->appendChild($dom->createElement('URI', $g['uri']));
|
| 844 |
-
}
|
| 845 |
-
$grant->appendChild($grantee);
|
| 846 |
-
$grant->appendChild($dom->createElement('Permission', $g['permission']));
|
| 847 |
-
$accessControlList->appendChild($grant);
|
| 848 |
-
}
|
| 849 |
-
|
| 850 |
-
$accessControlPolicy->appendChild($accessControlList);
|
| 851 |
-
$dom->appendChild($accessControlPolicy);
|
| 852 |
-
|
| 853 |
-
$rest = new S3Request('PUT', $bucket, $uri, self::$endpoint);
|
| 854 |
-
$rest->setParameter('acl', null);
|
| 855 |
-
$rest->data = $dom->saveXML();
|
| 856 |
-
$rest->size = strlen($rest->data);
|
| 857 |
-
$rest->setHeader('Content-Type', 'application/xml');
|
| 858 |
-
$rest = $rest->getResponse();
|
| 859 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 860 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 861 |
-
if ($rest->error !== false)
|
| 862 |
-
{
|
| 863 |
-
self::__triggerError(sprintf("S3::setAccessControlPolicy({$bucket}, {$uri}): [%s] %s",
|
| 864 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 865 |
-
return false;
|
| 866 |
-
}
|
| 867 |
-
return true;
|
| 868 |
-
}
|
| 869 |
-
|
| 870 |
-
|
| 871 |
-
/**
|
| 872 |
-
* Get object or bucket Access Control Policy
|
| 873 |
-
*
|
| 874 |
-
* @param string $bucket Bucket name
|
| 875 |
-
* @param string $uri Object URI
|
| 876 |
-
* @return mixed | false
|
| 877 |
-
*/
|
| 878 |
-
public static function getAccessControlPolicy($bucket, $uri = '')
|
| 879 |
-
{
|
| 880 |
-
$rest = new S3Request('GET', $bucket, $uri, self::$endpoint);
|
| 881 |
-
$rest->setParameter('acl', null);
|
| 882 |
-
$rest = $rest->getResponse();
|
| 883 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 884 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 885 |
-
if ($rest->error !== false)
|
| 886 |
-
{
|
| 887 |
-
self::__triggerError(sprintf("S3::getAccessControlPolicy({$bucket}, {$uri}): [%s] %s",
|
| 888 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 889 |
-
return false;
|
| 890 |
-
}
|
| 891 |
-
|
| 892 |
-
$acp = array();
|
| 893 |
-
if (isset($rest->body->Owner, $rest->body->Owner->ID, $rest->body->Owner->DisplayName))
|
| 894 |
-
$acp['owner'] = array(
|
| 895 |
-
'id' => (string)$rest->body->Owner->ID, 'name' => (string)$rest->body->Owner->DisplayName
|
| 896 |
-
);
|
| 897 |
-
|
| 898 |
-
if (isset($rest->body->AccessControlList))
|
| 899 |
-
{
|
| 900 |
-
$acp['acl'] = array();
|
| 901 |
-
foreach ($rest->body->AccessControlList->Grant as $grant)
|
| 902 |
-
{
|
| 903 |
-
foreach ($grant->Grantee as $grantee)
|
| 904 |
-
{
|
| 905 |
-
if (isset($grantee->ID, $grantee->DisplayName)) // CanonicalUser
|
| 906 |
-
$acp['acl'][] = array(
|
| 907 |
-
'type' => 'CanonicalUser',
|
| 908 |
-
'id' => (string)$grantee->ID,
|
| 909 |
-
'name' => (string)$grantee->DisplayName,
|
| 910 |
-
'permission' => (string)$grant->Permission
|
| 911 |
-
);
|
| 912 |
-
elseif (isset($grantee->EmailAddress)) // AmazonCustomerByEmail
|
| 913 |
-
$acp['acl'][] = array(
|
| 914 |
-
'type' => 'AmazonCustomerByEmail',
|
| 915 |
-
'email' => (string)$grantee->EmailAddress,
|
| 916 |
-
'permission' => (string)$grant->Permission
|
| 917 |
-
);
|
| 918 |
-
elseif (isset($grantee->URI)) // Group
|
| 919 |
-
$acp['acl'][] = array(
|
| 920 |
-
'type' => 'Group',
|
| 921 |
-
'uri' => (string)$grantee->URI,
|
| 922 |
-
'permission' => (string)$grant->Permission
|
| 923 |
-
);
|
| 924 |
-
else continue;
|
| 925 |
-
}
|
| 926 |
-
}
|
| 927 |
-
}
|
| 928 |
-
return $acp;
|
| 929 |
-
}
|
| 930 |
-
|
| 931 |
-
|
| 932 |
-
/**
|
| 933 |
-
* Delete an object
|
| 934 |
-
*
|
| 935 |
-
* @param string $bucket Bucket name
|
| 936 |
-
* @param string $uri Object URI
|
| 937 |
-
* @return boolean
|
| 938 |
-
*/
|
| 939 |
-
public static function deleteObject($bucket, $uri)
|
| 940 |
-
{
|
| 941 |
-
$rest = new S3Request('DELETE', $bucket, $uri, self::$endpoint);
|
| 942 |
-
$rest = $rest->getResponse();
|
| 943 |
-
if ($rest->error === false && $rest->code !== 204)
|
| 944 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 945 |
-
if ($rest->error !== false)
|
| 946 |
-
{
|
| 947 |
-
self::__triggerError(sprintf("S3::deleteObject(): [%s] %s",
|
| 948 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 949 |
-
return false;
|
| 950 |
-
}
|
| 951 |
-
return true;
|
| 952 |
-
}
|
| 953 |
-
|
| 954 |
-
|
| 955 |
-
/**
|
| 956 |
-
* Get a query string authenticated URL
|
| 957 |
-
*
|
| 958 |
-
* @param string $bucket Bucket name
|
| 959 |
-
* @param string $uri Object URI
|
| 960 |
-
* @param integer $lifetime Lifetime in seconds
|
| 961 |
-
* @param boolean $hostBucket Use the bucket name as the hostname
|
| 962 |
-
* @param boolean $https Use HTTPS ($hostBucket should be false for SSL verification)
|
| 963 |
-
* @return string
|
| 964 |
-
*/
|
| 965 |
-
public static function getAuthenticatedURL($bucket, $uri, $lifetime, $hostBucket = false, $https = false)
|
| 966 |
-
{
|
| 967 |
-
$expires = time() + $lifetime;
|
| 968 |
-
$uri = str_replace('%2F', '/', rawurlencode($uri)); // URI should be encoded (thanks Sean O'Dea)
|
| 969 |
-
return sprintf(($https ? 'https' : 'http').'://%s/%s?AWSAccessKeyId=%s&Expires=%u&Signature=%s',
|
| 970 |
-
$hostBucket ? $bucket : $bucket.'.s3.amazonaws.com', $uri, self::$__accessKey, $expires,
|
| 971 |
-
urlencode(self::__getHash("GET\n\n\n{$expires}\n/{$bucket}/{$uri}")));
|
| 972 |
-
}
|
| 973 |
-
|
| 974 |
-
|
| 975 |
-
/**
|
| 976 |
-
* Get a CloudFront signed policy URL
|
| 977 |
-
*
|
| 978 |
-
* @param array $policy Policy
|
| 979 |
-
* @return string
|
| 980 |
-
*/
|
| 981 |
-
public static function getSignedPolicyURL($policy)
|
| 982 |
-
{
|
| 983 |
-
$data = json_encode($policy);
|
| 984 |
-
$signature = '';
|
| 985 |
-
if (!openssl_sign($data, $signature, self::$__signingKeyResource)) return false;
|
| 986 |
-
|
| 987 |
-
$encoded = str_replace(array('+', '='), array('-', '_', '~'), base64_encode($data));
|
| 988 |
-
$signature = str_replace(array('+', '='), array('-', '_', '~'), base64_encode($signature));
|
| 989 |
-
|
| 990 |
-
$url = $policy['Statement'][0]['Resource'] . '?';
|
| 991 |
-
|
| 992 |
-
foreach (array('Policy' => $encoded, 'Signature' => $signature, 'Key-Pair-Id' => self::$__signingKeyPairId) as $k => $v)
|
| 993 |
-
$url .= $k.'='.str_replace('%2F', '/', rawurlencode($v)).'&';
|
| 994 |
-
return substr($url, 0, -1);
|
| 995 |
-
}
|
| 996 |
-
|
| 997 |
-
|
| 998 |
-
/**
|
| 999 |
-
* Get a CloudFront canned policy URL
|
| 1000 |
-
*
|
| 1001 |
-
* @param string $string URL to sign
|
| 1002 |
-
* @param integer $lifetime URL lifetime
|
| 1003 |
-
* @return string
|
| 1004 |
-
*/
|
| 1005 |
-
public static function getSignedCannedURL($url, $lifetime)
|
| 1006 |
-
{
|
| 1007 |
-
return self::getSignedPolicyURL(array(
|
| 1008 |
-
'Statement' => array(
|
| 1009 |
-
array('Resource' => $url, 'Condition' => array(
|
| 1010 |
-
'DateLessThan' => array('AWS:EpochTime' => time() + $lifetime)
|
| 1011 |
-
))
|
| 1012 |
-
)
|
| 1013 |
-
));
|
| 1014 |
-
}
|
| 1015 |
-
|
| 1016 |
-
|
| 1017 |
-
/**
|
| 1018 |
-
* Get upload POST parameters for form uploads
|
| 1019 |
-
*
|
| 1020 |
-
* @param string $bucket Bucket name
|
| 1021 |
-
* @param string $uriPrefix Object URI prefix
|
| 1022 |
-
* @param constant $acl ACL constant
|
| 1023 |
-
* @param integer $lifetime Lifetime in seconds
|
| 1024 |
-
* @param integer $maxFileSize Maximum filesize in bytes (default 5MB)
|
| 1025 |
-
* @param string $successRedirect Redirect URL or 200 / 201 status code
|
| 1026 |
-
* @param array $amzHeaders Array of x-amz-meta-* headers
|
| 1027 |
-
* @param array $headers Array of request headers or content type as a string
|
| 1028 |
-
* @param boolean $flashVars Includes additional "Filename" variable posted by Flash
|
| 1029 |
-
* @return object
|
| 1030 |
-
*/
|
| 1031 |
-
public static function getHttpUploadPostParams($bucket, $uriPrefix = '', $acl = self::ACL_PRIVATE, $lifetime = 3600,
|
| 1032 |
-
$maxFileSize = 5242880, $successRedirect = "201", $amzHeaders = array(), $headers = array(), $flashVars = false)
|
| 1033 |
-
{
|
| 1034 |
-
// Create policy object
|
| 1035 |
-
$policy = new stdClass;
|
| 1036 |
-
$policy->expiration = gmdate('Y-m-d\TH:i:s\Z', (time() + $lifetime));
|
| 1037 |
-
$policy->conditions = array();
|
| 1038 |
-
$obj = new stdClass; $obj->bucket = $bucket; array_push($policy->conditions, $obj);
|
| 1039 |
-
$obj = new stdClass; $obj->acl = $acl; array_push($policy->conditions, $obj);
|
| 1040 |
-
|
| 1041 |
-
$obj = new stdClass; // 200 for non-redirect uploads
|
| 1042 |
-
if (is_numeric($successRedirect) && in_array((int)$successRedirect, array(200, 201)))
|
| 1043 |
-
$obj->success_action_status = (string)$successRedirect;
|
| 1044 |
-
else // URL
|
| 1045 |
-
$obj->success_action_redirect = $successRedirect;
|
| 1046 |
-
array_push($policy->conditions, $obj);
|
| 1047 |
-
|
| 1048 |
-
if ($acl !== self::ACL_PUBLIC_READ)
|
| 1049 |
-
array_push($policy->conditions, array('eq', '$acl', $acl));
|
| 1050 |
-
|
| 1051 |
-
array_push($policy->conditions, array('starts-with', '$key', $uriPrefix));
|
| 1052 |
-
if ($flashVars) array_push($policy->conditions, array('starts-with', '$Filename', ''));
|
| 1053 |
-
foreach (array_keys($headers) as $headerKey)
|
| 1054 |
-
array_push($policy->conditions, array('starts-with', '$'.$headerKey, ''));
|
| 1055 |
-
foreach ($amzHeaders as $headerKey => $headerVal)
|
| 1056 |
-
{
|
| 1057 |
-
$obj = new stdClass;
|
| 1058 |
-
$obj->{$headerKey} = (string)$headerVal;
|
| 1059 |
-
array_push($policy->conditions, $obj);
|
| 1060 |
-
}
|
| 1061 |
-
array_push($policy->conditions, array('content-length-range', 0, $maxFileSize));
|
| 1062 |
-
$policy = base64_encode(str_replace('\/', '/', json_encode($policy)));
|
| 1063 |
-
|
| 1064 |
-
// Create parameters
|
| 1065 |
-
$params = new stdClass;
|
| 1066 |
-
$params->AWSAccessKeyId = self::$__accessKey;
|
| 1067 |
-
$params->key = $uriPrefix.'${filename}';
|
| 1068 |
-
$params->acl = $acl;
|
| 1069 |
-
$params->policy = $policy; unset($policy);
|
| 1070 |
-
$params->signature = self::__getHash($params->policy);
|
| 1071 |
-
if (is_numeric($successRedirect) && in_array((int)$successRedirect, array(200, 201)))
|
| 1072 |
-
$params->success_action_status = (string)$successRedirect;
|
| 1073 |
-
else
|
| 1074 |
-
$params->success_action_redirect = $successRedirect;
|
| 1075 |
-
foreach ($headers as $headerKey => $headerVal) $params->{$headerKey} = (string)$headerVal;
|
| 1076 |
-
foreach ($amzHeaders as $headerKey => $headerVal) $params->{$headerKey} = (string)$headerVal;
|
| 1077 |
-
return $params;
|
| 1078 |
-
}
|
| 1079 |
-
|
| 1080 |
-
|
| 1081 |
-
/**
|
| 1082 |
-
* Create a CloudFront distribution
|
| 1083 |
-
*
|
| 1084 |
-
* @param string $bucket Bucket name
|
| 1085 |
-
* @param boolean $enabled Enabled (true/false)
|
| 1086 |
-
* @param array $cnames Array containing CNAME aliases
|
| 1087 |
-
* @param string $comment Use the bucket name as the hostname
|
| 1088 |
-
* @param string $defaultRootObject Default root object
|
| 1089 |
-
* @param string $originAccessIdentity Origin access identity
|
| 1090 |
-
* @param array $trustedSigners Array of trusted signers
|
| 1091 |
-
* @return array | false
|
| 1092 |
-
*/
|
| 1093 |
-
public static function createDistribution($bucket, $enabled = true, $cnames = array(), $comment = null, $defaultRootObject = null, $originAccessIdentity = null, $trustedSigners = array())
|
| 1094 |
-
{
|
| 1095 |
-
if (!extension_loaded('openssl'))
|
| 1096 |
-
{
|
| 1097 |
-
self::__triggerError(sprintf("S3::createDistribution({$bucket}, ".(int)$enabled.", [], '$comment'): %s",
|
| 1098 |
-
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1099 |
-
return false;
|
| 1100 |
-
}
|
| 1101 |
-
$useSSL = self::$useSSL;
|
| 1102 |
-
|
| 1103 |
-
self::$useSSL = true; // CloudFront requires SSL
|
| 1104 |
-
$rest = new S3Request('POST', '', '2010-11-01/distribution', 'cloudfront.amazonaws.com');
|
| 1105 |
-
$rest->data = self::__getCloudFrontDistributionConfigXML(
|
| 1106 |
-
$bucket.'.s3.amazonaws.com',
|
| 1107 |
-
$enabled,
|
| 1108 |
-
(string)$comment,
|
| 1109 |
-
(string)microtime(true),
|
| 1110 |
-
$cnames,
|
| 1111 |
-
$defaultRootObject,
|
| 1112 |
-
$originAccessIdentity,
|
| 1113 |
-
$trustedSigners
|
| 1114 |
-
);
|
| 1115 |
-
|
| 1116 |
-
$rest->size = strlen($rest->data);
|
| 1117 |
-
$rest->setHeader('Content-Type', 'application/xml');
|
| 1118 |
-
$rest = self::__getCloudFrontResponse($rest);
|
| 1119 |
-
|
| 1120 |
-
self::$useSSL = $useSSL;
|
| 1121 |
-
|
| 1122 |
-
if ($rest->error === false && $rest->code !== 201)
|
| 1123 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1124 |
-
if ($rest->error !== false)
|
| 1125 |
-
{
|
| 1126 |
-
self::__triggerError(sprintf("S3::createDistribution({$bucket}, ".(int)$enabled.", [], '$comment'): [%s] %s",
|
| 1127 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 1128 |
-
return false;
|
| 1129 |
-
} elseif ($rest->body instanceof SimpleXMLElement)
|
| 1130 |
-
return self::__parseCloudFrontDistributionConfig($rest->body);
|
| 1131 |
-
return false;
|
| 1132 |
-
}
|
| 1133 |
-
|
| 1134 |
-
|
| 1135 |
-
/**
|
| 1136 |
-
* Get CloudFront distribution info
|
| 1137 |
-
*
|
| 1138 |
-
* @param string $distributionId Distribution ID from listDistributions()
|
| 1139 |
-
* @return array | false
|
| 1140 |
-
*/
|
| 1141 |
-
public static function getDistribution($distributionId)
|
| 1142 |
-
{
|
| 1143 |
-
if (!extension_loaded('openssl'))
|
| 1144 |
-
{
|
| 1145 |
-
self::__triggerError(sprintf("S3::getDistribution($distributionId): %s",
|
| 1146 |
-
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1147 |
-
return false;
|
| 1148 |
-
}
|
| 1149 |
-
$useSSL = self::$useSSL;
|
| 1150 |
-
|
| 1151 |
-
self::$useSSL = true; // CloudFront requires SSL
|
| 1152 |
-
$rest = new S3Request('GET', '', '2010-11-01/distribution/'.$distributionId, 'cloudfront.amazonaws.com');
|
| 1153 |
-
$rest = self::__getCloudFrontResponse($rest);
|
| 1154 |
-
|
| 1155 |
-
self::$useSSL = $useSSL;
|
| 1156 |
-
|
| 1157 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 1158 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1159 |
-
if ($rest->error !== false)
|
| 1160 |
-
{
|
| 1161 |
-
self::__triggerError(sprintf("S3::getDistribution($distributionId): [%s] %s",
|
| 1162 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 1163 |
-
return false;
|
| 1164 |
-
}
|
| 1165 |
-
elseif ($rest->body instanceof SimpleXMLElement)
|
| 1166 |
-
{
|
| 1167 |
-
$dist = self::__parseCloudFrontDistributionConfig($rest->body);
|
| 1168 |
-
$dist['hash'] = $rest->headers['hash'];
|
| 1169 |
-
$dist['id'] = $distributionId;
|
| 1170 |
-
return $dist;
|
| 1171 |
-
}
|
| 1172 |
-
return false;
|
| 1173 |
-
}
|
| 1174 |
-
|
| 1175 |
-
|
| 1176 |
-
/**
|
| 1177 |
-
* Update a CloudFront distribution
|
| 1178 |
-
*
|
| 1179 |
-
* @param array $dist Distribution array info identical to output of getDistribution()
|
| 1180 |
-
* @return array | false
|
| 1181 |
-
*/
|
| 1182 |
-
public static function updateDistribution($dist)
|
| 1183 |
-
{
|
| 1184 |
-
if (!extension_loaded('openssl'))
|
| 1185 |
-
{
|
| 1186 |
-
self::__triggerError(sprintf("S3::updateDistribution({$dist['id']}): %s",
|
| 1187 |
-
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1188 |
-
return false;
|
| 1189 |
-
}
|
| 1190 |
-
|
| 1191 |
-
$useSSL = self::$useSSL;
|
| 1192 |
-
|
| 1193 |
-
self::$useSSL = true; // CloudFront requires SSL
|
| 1194 |
-
$rest = new S3Request('PUT', '', '2010-11-01/distribution/'.$dist['id'].'/config', 'cloudfront.amazonaws.com');
|
| 1195 |
-
$rest->data = self::__getCloudFrontDistributionConfigXML(
|
| 1196 |
-
$dist['origin'],
|
| 1197 |
-
$dist['enabled'],
|
| 1198 |
-
$dist['comment'],
|
| 1199 |
-
$dist['callerReference'],
|
| 1200 |
-
$dist['cnames'],
|
| 1201 |
-
$dist['defaultRootObject'],
|
| 1202 |
-
$dist['originAccessIdentity'],
|
| 1203 |
-
$dist['trustedSigners']
|
| 1204 |
-
);
|
| 1205 |
-
|
| 1206 |
-
$rest->size = strlen($rest->data);
|
| 1207 |
-
$rest->setHeader('If-Match', $dist['hash']);
|
| 1208 |
-
$rest = self::__getCloudFrontResponse($rest);
|
| 1209 |
-
|
| 1210 |
-
self::$useSSL = $useSSL;
|
| 1211 |
-
|
| 1212 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 1213 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1214 |
-
if ($rest->error !== false)
|
| 1215 |
-
{
|
| 1216 |
-
self::__triggerError(sprintf("S3::updateDistribution({$dist['id']}): [%s] %s",
|
| 1217 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 1218 |
-
return false;
|
| 1219 |
-
} else {
|
| 1220 |
-
$dist = self::__parseCloudFrontDistributionConfig($rest->body);
|
| 1221 |
-
$dist['hash'] = $rest->headers['hash'];
|
| 1222 |
-
return $dist;
|
| 1223 |
-
}
|
| 1224 |
-
return false;
|
| 1225 |
-
}
|
| 1226 |
-
|
| 1227 |
-
|
| 1228 |
-
/**
|
| 1229 |
-
* Delete a CloudFront distribution
|
| 1230 |
-
*
|
| 1231 |
-
* @param array $dist Distribution array info identical to output of getDistribution()
|
| 1232 |
-
* @return boolean
|
| 1233 |
-
*/
|
| 1234 |
-
public static function deleteDistribution($dist)
|
| 1235 |
-
{
|
| 1236 |
-
if (!extension_loaded('openssl'))
|
| 1237 |
-
{
|
| 1238 |
-
self::__triggerError(sprintf("S3::deleteDistribution({$dist['id']}): %s",
|
| 1239 |
-
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1240 |
-
return false;
|
| 1241 |
-
}
|
| 1242 |
-
|
| 1243 |
-
$useSSL = self::$useSSL;
|
| 1244 |
-
|
| 1245 |
-
self::$useSSL = true; // CloudFront requires SSL
|
| 1246 |
-
$rest = new S3Request('DELETE', '', '2008-06-30/distribution/'.$dist['id'], 'cloudfront.amazonaws.com');
|
| 1247 |
-
$rest->setHeader('If-Match', $dist['hash']);
|
| 1248 |
-
$rest = self::__getCloudFrontResponse($rest);
|
| 1249 |
-
|
| 1250 |
-
self::$useSSL = $useSSL;
|
| 1251 |
-
|
| 1252 |
-
if ($rest->error === false && $rest->code !== 204)
|
| 1253 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1254 |
-
if ($rest->error !== false)
|
| 1255 |
-
{
|
| 1256 |
-
self::__triggerError(sprintf("S3::deleteDistribution({$dist['id']}): [%s] %s",
|
| 1257 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 1258 |
-
return false;
|
| 1259 |
-
}
|
| 1260 |
-
return true;
|
| 1261 |
-
}
|
| 1262 |
-
|
| 1263 |
-
|
| 1264 |
-
/**
|
| 1265 |
-
* Get a list of CloudFront distributions
|
| 1266 |
-
*
|
| 1267 |
-
* @return array
|
| 1268 |
-
*/
|
| 1269 |
-
public static function listDistributions()
|
| 1270 |
-
{
|
| 1271 |
-
if (!extension_loaded('openssl'))
|
| 1272 |
-
{
|
| 1273 |
-
self::__triggerError(sprintf("S3::listDistributions(): [%s] %s",
|
| 1274 |
-
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1275 |
-
return false;
|
| 1276 |
-
}
|
| 1277 |
-
|
| 1278 |
-
$useSSL = self::$useSSL;
|
| 1279 |
-
self::$useSSL = true; // CloudFront requires SSL
|
| 1280 |
-
$rest = new S3Request('GET', '', '2010-11-01/distribution', 'cloudfront.amazonaws.com');
|
| 1281 |
-
$rest = self::__getCloudFrontResponse($rest);
|
| 1282 |
-
self::$useSSL = $useSSL;
|
| 1283 |
-
|
| 1284 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 1285 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1286 |
-
if ($rest->error !== false)
|
| 1287 |
-
{
|
| 1288 |
-
self::__triggerError(sprintf("S3::listDistributions(): [%s] %s",
|
| 1289 |
-
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 1290 |
-
return false;
|
| 1291 |
-
}
|
| 1292 |
-
elseif ($rest->body instanceof SimpleXMLElement && isset($rest->body->DistributionSummary))
|
| 1293 |
-
{
|
| 1294 |
-
$list = array();
|
| 1295 |
-
if (isset($rest->body->Marker, $rest->body->MaxItems, $rest->body->IsTruncated))
|
| 1296 |
-
{
|
| 1297 |
-
//$info['marker'] = (string)$rest->body->Marker;
|
| 1298 |
-
//$info['maxItems'] = (int)$rest->body->MaxItems;
|
| 1299 |
-
//$info['isTruncated'] = (string)$rest->body->IsTruncated == 'true' ? true : false;
|
| 1300 |
-
}
|
| 1301 |
-
foreach ($rest->body->DistributionSummary as $summary)
|
| 1302 |
-
$list[(string)$summary->Id] = self::__parseCloudFrontDistributionConfig($summary);
|
| 1303 |
-
|
| 1304 |
-
return $list;
|
| 1305 |
-
}
|
| 1306 |
-
return array();
|
| 1307 |
-
}
|
| 1308 |
-
|
| 1309 |
-
/**
|
| 1310 |
-
* List CloudFront Origin Access Identities
|
| 1311 |
-
*
|
| 1312 |
-
* @return array
|
| 1313 |
-
*/
|
| 1314 |
-
public static function listOriginAccessIdentities()
|
| 1315 |
-
{
|
| 1316 |
-
if (!extension_loaded('openssl'))
|
| 1317 |
-
{
|
| 1318 |
-
self::__triggerError(sprintf("S3::listOriginAccessIdentities(): [%s] %s",
|
| 1319 |
-
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1320 |
-
return false;
|
| 1321 |
-
}
|
| 1322 |
-
|
| 1323 |
-
self::$useSSL = true; // CloudFront requires SSL
|
| 1324 |
-
$rest = new S3Request('GET', '', '2010-11-01/origin-access-identity/cloudfront', 'cloudfront.amazonaws.com');
|
| 1325 |
-
$rest = self::__getCloudFrontResponse($rest);
|
| 1326 |
-
$useSSL = self::$useSSL;
|
| 1327 |
-
|
| 1328 |
-
if ($rest->error === false && $rest->code !== 200)
|
| 1329 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1330 |
-
if ($rest->error !== false)
|
| 1331 |
-
{
|
| 1332 |
-
trigger_error(sprintf("S3::listOriginAccessIdentities(): [%s] %s",
|
| 1333 |
-
$rest->error['code'], $rest->error['message']), E_USER_WARNING);
|
| 1334 |
-
return false;
|
| 1335 |
-
}
|
| 1336 |
-
|
| 1337 |
-
if (isset($rest->body->CloudFrontOriginAccessIdentitySummary))
|
| 1338 |
-
{
|
| 1339 |
-
$identities = array();
|
| 1340 |
-
foreach ($rest->body->CloudFrontOriginAccessIdentitySummary as $identity)
|
| 1341 |
-
if (isset($identity->S3CanonicalUserId))
|
| 1342 |
-
$identities[(string)$identity->Id] = array('id' => (string)$identity->Id, 's3CanonicalUserId' => (string)$identity->S3CanonicalUserId);
|
| 1343 |
-
return $identities;
|
| 1344 |
-
}
|
| 1345 |
-
return false;
|
| 1346 |
-
}
|
| 1347 |
-
|
| 1348 |
-
|
| 1349 |
-
/**
|
| 1350 |
-
* Invalidate objects in a CloudFront distribution
|
| 1351 |
-
*
|
| 1352 |
-
* Thanks to Martin Lindkvist for S3::invalidateDistribution()
|
| 1353 |
-
*
|
| 1354 |
-
* @param string $distributionId Distribution ID from listDistributions()
|
| 1355 |
-
* @param array $paths Array of object paths to invalidate
|
| 1356 |
-
* @return boolean
|
| 1357 |
-
*/
|
| 1358 |
-
public static function invalidateDistribution($distributionId, $paths)
|
| 1359 |
-
{
|
| 1360 |
-
if (!extension_loaded('openssl'))
|
| 1361 |
-
{
|
| 1362 |
-
self::__triggerError(sprintf("S3::invalidateDistribution(): [%s] %s",
|
| 1363 |
-
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1364 |
-
return false;
|
| 1365 |
-
}
|
| 1366 |
-
|
| 1367 |
-
$useSSL = self::$useSSL;
|
| 1368 |
-
self::$useSSL = true; // CloudFront requires SSL
|
| 1369 |
-
$rest = new S3Request('POST', '', '2010-08-01/distribution/'.$distributionId.'/invalidation', 'cloudfront.amazonaws.com');
|
| 1370 |
-
$rest->data = self::__getCloudFrontInvalidationBatchXML($paths, (string)microtime(true));
|
| 1371 |
-
$rest->size = strlen($rest->data);
|
| 1372 |
-
$rest = self::__getCloudFrontResponse($rest);
|
| 1373 |
-
self::$useSSL = $useSSL;
|
| 1374 |
-
|
| 1375 |
-
if ($rest->error === false && $rest->code !== 201)
|
| 1376 |
-
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1377 |
-
if ($rest->error !== false)
|
| 1378 |
-
{
|
| 1379 |
-
trigger_error(sprintf("S3::invalidate('{$distributionId}',{$paths}): [%s] %s",
|
| 1380 |
-
$rest->error['code'], $rest->error['message']), E_USER_WARNING);
|
| 1381 |
-
return false;
|
| 1382 |
-
}
|
| 1383 |
-
return true;
|
| 1384 |
-
}
|
| 1385 |
-
|
| 1386 |
-
|
| 1387 |
-
/**
|
| 1388 |
-
* Get a InvalidationBatch DOMDocument
|
| 1389 |
-
*
|
| 1390 |
-
* @internal Used to create XML in invalidateDistribution()
|
| 1391 |
-
* @param array $paths Paths to objects to invalidateDistribution
|
| 1392 |
-
* @return string
|
| 1393 |
-
*/
|
| 1394 |
-
private static function __getCloudFrontInvalidationBatchXML($paths, $callerReference = '0') {
|
| 1395 |
-
$dom = new DOMDocument('1.0', 'UTF-8');
|
| 1396 |
-
$dom->formatOutput = true;
|
| 1397 |
-
$invalidationBatch = $dom->createElement('InvalidationBatch');
|
| 1398 |
-
foreach ($paths as $path)
|
| 1399 |
-
$invalidationBatch->appendChild($dom->createElement('Path', $path));
|
| 1400 |
-
|
| 1401 |
-
$invalidationBatch->appendChild($dom->createElement('CallerReference', $callerReference));
|
| 1402 |
-
$dom->appendChild($invalidationBatch);
|
| 1403 |
-
return $dom->saveXML();
|
| 1404 |
-
}
|
| 1405 |
-
|
| 1406 |
-
|
| 1407 |
-
/**
|
| 1408 |
-
* Get a DistributionConfig DOMDocument
|
| 1409 |
-
*
|
| 1410 |
-
* http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/index.html?PutConfig.html
|
| 1411 |
-
*
|
| 1412 |
-
* @internal Used to create XML in createDistribution() and updateDistribution()
|
| 1413 |
-
* @param string $bucket S3 Origin bucket
|
| 1414 |
-
* @param boolean $enabled Enabled (true/false)
|
| 1415 |
-
* @param string $comment Comment to append
|
| 1416 |
-
* @param string $callerReference Caller reference
|
| 1417 |
-
* @param array $cnames Array of CNAME aliases
|
| 1418 |
-
* @param string $defaultRootObject Default root object
|
| 1419 |
-
* @param string $originAccessIdentity Origin access identity
|
| 1420 |
-
* @param array $trustedSigners Array of trusted signers
|
| 1421 |
-
* @return string
|
| 1422 |
-
*/
|
| 1423 |
-
private static function __getCloudFrontDistributionConfigXML($bucket, $enabled, $comment, $callerReference = '0', $cnames = array(), $defaultRootObject = null, $originAccessIdentity = null, $trustedSigners = array())
|
| 1424 |
-
{
|
| 1425 |
-
$dom = new DOMDocument('1.0', 'UTF-8');
|
| 1426 |
-
$dom->formatOutput = true;
|
| 1427 |
-
$distributionConfig = $dom->createElement('DistributionConfig');
|
| 1428 |
-
$distributionConfig->setAttribute('xmlns', 'http://cloudfront.amazonaws.com/doc/2010-11-01/');
|
| 1429 |
-
|
| 1430 |
-
$origin = $dom->createElement('S3Origin');
|
| 1431 |
-
$origin->appendChild($dom->createElement('DNSName', $bucket));
|
| 1432 |
-
if ($originAccessIdentity !== null) $origin->appendChild($dom->createElement('OriginAccessIdentity', $originAccessIdentity));
|
| 1433 |
-
$distributionConfig->appendChild($origin);
|
| 1434 |
-
|
| 1435 |
-
if ($defaultRootObject !== null) $distributionConfig->appendChild($dom->createElement('DefaultRootObject', $defaultRootObject));
|
| 1436 |
-
|
| 1437 |
-
$distributionConfig->appendChild($dom->createElement('CallerReference', $callerReference));
|
| 1438 |
-
foreach ($cnames as $cname)
|
| 1439 |
-
$distributionConfig->appendChild($dom->createElement('CNAME', $cname));
|
| 1440 |
-
if ($comment !== '') $distributionConfig->appendChild($dom->createElement('Comment', $comment));
|
| 1441 |
-
$distributionConfig->appendChild($dom->createElement('Enabled', $enabled ? 'true' : 'false'));
|
| 1442 |
-
|
| 1443 |
-
$trusted = $dom->createElement('TrustedSigners');
|
| 1444 |
-
foreach ($trustedSigners as $id => $type)
|
| 1445 |
-
$trusted->appendChild($id !== '' ? $dom->createElement($type, $id) : $dom->createElement($type));
|
| 1446 |
-
$distributionConfig->appendChild($trusted);
|
| 1447 |
-
|
| 1448 |
-
$dom->appendChild($distributionConfig);
|
| 1449 |
-
//var_dump($dom->saveXML());
|
| 1450 |
-
return $dom->saveXML();
|
| 1451 |
-
}
|
| 1452 |
-
|
| 1453 |
-
|
| 1454 |
-
/**
|
| 1455 |
-
* Parse a CloudFront distribution config
|
| 1456 |
-
*
|
| 1457 |
-
* See http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/index.html?GetDistribution.html
|
| 1458 |
-
*
|
| 1459 |
-
* @internal Used to parse the CloudFront DistributionConfig node to an array
|
| 1460 |
-
* @param object &$node DOMNode
|
| 1461 |
-
* @return array
|
| 1462 |
-
*/
|
| 1463 |
-
private static function __parseCloudFrontDistributionConfig(&$node)
|
| 1464 |
-
{
|
| 1465 |
-
if (isset($node->DistributionConfig))
|
| 1466 |
-
return self::__parseCloudFrontDistributionConfig($node->DistributionConfig);
|
| 1467 |
-
|
| 1468 |
-
$dist = array();
|
| 1469 |
-
if (isset($node->Id, $node->Status, $node->LastModifiedTime, $node->DomainName))
|
| 1470 |
-
{
|
| 1471 |
-
$dist['id'] = (string)$node->Id;
|
| 1472 |
-
$dist['status'] = (string)$node->Status;
|
| 1473 |
-
$dist['time'] = strtotime((string)$node->LastModifiedTime);
|
| 1474 |
-
$dist['domain'] = (string)$node->DomainName;
|
| 1475 |
-
}
|
| 1476 |
-
|
| 1477 |
-
if (isset($node->CallerReference))
|
| 1478 |
-
$dist['callerReference'] = (string)$node->CallerReference;
|
| 1479 |
-
|
| 1480 |
-
if (isset($node->Enabled))
|
| 1481 |
-
$dist['enabled'] = (string)$node->Enabled == 'true' ? true : false;
|
| 1482 |
-
|
| 1483 |
-
if (isset($node->S3Origin))
|
| 1484 |
-
{
|
| 1485 |
-
if (isset($node->S3Origin->DNSName))
|
| 1486 |
-
$dist['origin'] = (string)$node->S3Origin->DNSName;
|
| 1487 |
-
|
| 1488 |
-
$dist['originAccessIdentity'] = isset($node->S3Origin->OriginAccessIdentity) ?
|
| 1489 |
-
(string)$node->S3Origin->OriginAccessIdentity : null;
|
| 1490 |
-
}
|
| 1491 |
-
|
| 1492 |
-
$dist['defaultRootObject'] = isset($node->DefaultRootObject) ? (string)$node->DefaultRootObject : null;
|
| 1493 |
-
|
| 1494 |
-
$dist['cnames'] = array();
|
| 1495 |
-
if (isset($node->CNAME))
|
| 1496 |
-
foreach ($node->CNAME as $cname)
|
| 1497 |
-
$dist['cnames'][(string)$cname] = (string)$cname;
|
| 1498 |
-
|
| 1499 |
-
$dist['trustedSigners'] = array();
|
| 1500 |
-
if (isset($node->TrustedSigners))
|
| 1501 |
-
foreach ($node->TrustedSigners as $signer)
|
| 1502 |
-
{
|
| 1503 |
-
if (isset($signer->Self))
|
| 1504 |
-
$dist['trustedSigners'][''] = 'Self';
|
| 1505 |
-
elseif (isset($signer->KeyPairId))
|
| 1506 |
-
$dist['trustedSigners'][(string)$signer->KeyPairId] = 'KeyPairId';
|
| 1507 |
-
elseif (isset($signer->AwsAccountNumber))
|
| 1508 |
-
$dist['trustedSigners'][(string)$signer->AwsAccountNumber] = 'AwsAccountNumber';
|
| 1509 |
-
}
|
| 1510 |
-
|
| 1511 |
-
$dist['comment'] = isset($node->Comment) ? (string)$node->Comment : null;
|
| 1512 |
-
return $dist;
|
| 1513 |
-
}
|
| 1514 |
-
|
| 1515 |
-
|
| 1516 |
-
/**
|
| 1517 |
-
* Grab CloudFront response
|
| 1518 |
-
*
|
| 1519 |
-
* @internal Used to parse the CloudFront S3Request::getResponse() output
|
| 1520 |
-
* @param object &$rest S3Request instance
|
| 1521 |
-
* @return object
|
| 1522 |
-
*/
|
| 1523 |
-
private static function __getCloudFrontResponse(&$rest)
|
| 1524 |
-
{
|
| 1525 |
-
$rest->getResponse();
|
| 1526 |
-
if ($rest->response->error === false && isset($rest->response->body) &&
|
| 1527 |
-
is_string($rest->response->body) && substr($rest->response->body, 0, 5) == '<?xml')
|
| 1528 |
-
{
|
| 1529 |
-
$rest->response->body = simplexml_load_string($rest->response->body);
|
| 1530 |
-
// Grab CloudFront errors
|
| 1531 |
-
if (isset($rest->response->body->Error, $rest->response->body->Error->Code,
|
| 1532 |
-
$rest->response->body->Error->Message))
|
| 1533 |
-
{
|
| 1534 |
-
$rest->response->error = array(
|
| 1535 |
-
'code' => (string)$rest->response->body->Error->Code,
|
| 1536 |
-
'message' => (string)$rest->response->body->Error->Message
|
| 1537 |
-
);
|
| 1538 |
-
unset($rest->response->body);
|
| 1539 |
-
}
|
| 1540 |
-
}
|
| 1541 |
-
return $rest->response;
|
| 1542 |
-
}
|
| 1543 |
-
|
| 1544 |
-
|
| 1545 |
-
/**
|
| 1546 |
-
* Get MIME type for file
|
| 1547 |
-
*
|
| 1548 |
-
* @internal Used to get mime types
|
| 1549 |
-
* @param string &$file File path
|
| 1550 |
-
* @return string
|
| 1551 |
-
*/
|
| 1552 |
-
public static function __getMimeType(&$file)
|
| 1553 |
-
{
|
| 1554 |
-
$type = false;
|
| 1555 |
-
// Fileinfo documentation says fileinfo_open() will use the
|
| 1556 |
-
// MAGIC env var for the magic file
|
| 1557 |
-
if (extension_loaded('fileinfo') && isset($_ENV['MAGIC']) &&
|
| 1558 |
-
($finfo = finfo_open(FILEINFO_MIME, $_ENV['MAGIC'])) !== false)
|
| 1559 |
-
{
|
| 1560 |
-
if (($type = finfo_file($finfo, $file)) !== false)
|
| 1561 |
-
{
|
| 1562 |
-
// Remove the charset and grab the last content-type
|
| 1563 |
-
$type = explode(' ', str_replace('; charset=', ';charset=', $type));
|
| 1564 |
-
$type = array_pop($type);
|
| 1565 |
-
$type = explode(';', $type);
|
| 1566 |
-
$type = trim(array_shift($type));
|
| 1567 |
-
}
|
| 1568 |
-
finfo_close($finfo);
|
| 1569 |
-
|
| 1570 |
-
// If anyone is still using mime_content_type()
|
| 1571 |
-
} elseif (function_exists('mime_content_type'))
|
| 1572 |
-
$type = trim(mime_content_type($file));
|
| 1573 |
-
|
| 1574 |
-
if ($type !== false && strlen($type) > 0) return $type;
|
| 1575 |
-
|
| 1576 |
-
// Otherwise do it the old fashioned way
|
| 1577 |
-
static $exts = array(
|
| 1578 |
-
'jpg' => 'image/jpeg', 'gif' => 'image/gif', 'png' => 'image/png',
|
| 1579 |
-
'tif' => 'image/tiff', 'tiff' => 'image/tiff', 'ico' => 'image/x-icon',
|
| 1580 |
-
'swf' => 'application/x-shockwave-flash', 'pdf' => 'application/pdf',
|
| 1581 |
-
'zip' => 'application/zip', 'gz' => 'application/x-gzip',
|
| 1582 |
-
'tar' => 'application/x-tar', 'bz' => 'application/x-bzip',
|
| 1583 |
-
'bz2' => 'application/x-bzip2', 'txt' => 'text/plain',
|
| 1584 |
-
'asc' => 'text/plain', 'htm' => 'text/html', 'html' => 'text/html',
|
| 1585 |
-
'css' => 'text/css', 'js' => 'text/javascript',
|
| 1586 |
-
'xml' => 'text/xml', 'xsl' => 'application/xsl+xml',
|
| 1587 |
-
'ogg' => 'application/ogg', 'mp3' => 'audio/mpeg', 'wav' => 'audio/x-wav',
|
| 1588 |
-
'avi' => 'video/x-msvideo', 'mpg' => 'video/mpeg', 'mpeg' => 'video/mpeg',
|
| 1589 |
-
'mov' => 'video/quicktime', 'flv' => 'video/x-flv', 'php' => 'text/x-php'
|
| 1590 |
-
);
|
| 1591 |
-
$ext = strtolower(pathInfo($file, PATHINFO_EXTENSION));
|
| 1592 |
-
return isset($exts[$ext]) ? $exts[$ext] : 'application/octet-stream';
|
| 1593 |
-
}
|
| 1594 |
-
|
| 1595 |
-
|
| 1596 |
-
/**
|
| 1597 |
-
* Generate the auth string: "AWS AccessKey:Signature"
|
| 1598 |
-
*
|
| 1599 |
-
* @internal Used by S3Request::getResponse()
|
| 1600 |
-
* @param string $string String to sign
|
| 1601 |
-
* @return string
|
| 1602 |
-
*/
|
| 1603 |
-
public static function __getSignature($string)
|
| 1604 |
-
{
|
| 1605 |
-
return 'AWS '.self::$__accessKey.':'.self::__getHash($string);
|
| 1606 |
-
}
|
| 1607 |
-
|
| 1608 |
-
|
| 1609 |
-
/**
|
| 1610 |
-
* Creates a HMAC-SHA1 hash
|
| 1611 |
-
*
|
| 1612 |
-
* This uses the hash extension if loaded
|
| 1613 |
-
*
|
| 1614 |
-
* @internal Used by __getSignature()
|
| 1615 |
-
* @param string $string String to sign
|
| 1616 |
-
* @return string
|
| 1617 |
-
*/
|
| 1618 |
-
private static function __getHash($string)
|
| 1619 |
-
{
|
| 1620 |
-
return base64_encode(extension_loaded('hash') ?
|
| 1621 |
-
hash_hmac('sha1', $string, self::$__secretKey, true) : pack('H*', sha1(
|
| 1622 |
-
(str_pad(self::$__secretKey, 64, chr(0x00)) ^ (str_repeat(chr(0x5c), 64))) .
|
| 1623 |
-
pack('H*', sha1((str_pad(self::$__secretKey, 64, chr(0x00)) ^
|
| 1624 |
-
(str_repeat(chr(0x36), 64))) . $string)))));
|
| 1625 |
-
}
|
| 1626 |
-
|
| 1627 |
-
}
|
| 1628 |
-
|
| 1629 |
-
final class S3Request
|
| 1630 |
-
{
|
| 1631 |
-
private $endpoint, $verb, $bucket, $uri, $resource = '', $parameters = array(),
|
| 1632 |
-
$amzHeaders = array(), $headers = array(
|
| 1633 |
-
'Host' => '', 'Date' => '', 'Content-MD5' => '', 'Content-Type' => ''
|
| 1634 |
-
);
|
| 1635 |
-
public $fp = false, $size = 0, $data = false, $response;
|
| 1636 |
-
|
| 1637 |
-
|
| 1638 |
-
/**
|
| 1639 |
-
* Constructor
|
| 1640 |
-
*
|
| 1641 |
-
* @param string $verb Verb
|
| 1642 |
-
* @param string $bucket Bucket name
|
| 1643 |
-
* @param string $uri Object URI
|
| 1644 |
-
* @return mixed
|
| 1645 |
-
*/
|
| 1646 |
-
function __construct($verb, $bucket = '', $uri = '', $endpoint = 's3.amazonaws.com')
|
| 1647 |
-
{
|
| 1648 |
-
$this->endpoint = $endpoint;
|
| 1649 |
-
$this->verb = $verb;
|
| 1650 |
-
$this->bucket = $bucket;
|
| 1651 |
-
$this->uri = $uri !== '' ? '/'.str_replace('%2F', '/', rawurlencode($uri)) : '/';
|
| 1652 |
-
|
| 1653 |
-
if ($this->bucket !== '')
|
| 1654 |
-
{
|
| 1655 |
-
$this->headers['Host'] = $this->bucket.'.'.$this->endpoint;
|
| 1656 |
-
$this->resource = '/'.$this->bucket.$this->uri;
|
| 1657 |
-
}
|
| 1658 |
-
else
|
| 1659 |
-
{
|
| 1660 |
-
$this->headers['Host'] = $this->endpoint;
|
| 1661 |
-
$this->resource = $this->uri;
|
| 1662 |
-
}
|
| 1663 |
-
$this->headers['Date'] = gmdate('D, d M Y H:i:s T');
|
| 1664 |
-
|
| 1665 |
-
$this->response = new STDClass;
|
| 1666 |
-
$this->response->error = false;
|
| 1667 |
-
}
|
| 1668 |
-
|
| 1669 |
-
|
| 1670 |
-
/**
|
| 1671 |
-
* Set request parameter
|
| 1672 |
-
*
|
| 1673 |
-
* @param string $key Key
|
| 1674 |
-
* @param string $value Value
|
| 1675 |
-
* @return void
|
| 1676 |
-
*/
|
| 1677 |
-
public function setParameter($key, $value)
|
| 1678 |
-
{
|
| 1679 |
-
$this->parameters[$key] = $value;
|
| 1680 |
-
}
|
| 1681 |
-
|
| 1682 |
-
|
| 1683 |
-
/**
|
| 1684 |
-
* Set request header
|
| 1685 |
-
*
|
| 1686 |
-
* @param string $key Key
|
| 1687 |
-
* @param string $value Value
|
| 1688 |
-
* @return void
|
| 1689 |
-
*/
|
| 1690 |
-
public function setHeader($key, $value)
|
| 1691 |
-
{
|
| 1692 |
-
$this->headers[$key] = $value;
|
| 1693 |
-
}
|
| 1694 |
-
|
| 1695 |
-
|
| 1696 |
-
/**
|
| 1697 |
-
* Set x-amz-meta-* header
|
| 1698 |
-
*
|
| 1699 |
-
* @param string $key Key
|
| 1700 |
-
* @param string $value Value
|
| 1701 |
-
* @return void
|
| 1702 |
-
*/
|
| 1703 |
-
public function setAmzHeader($key, $value)
|
| 1704 |
-
{
|
| 1705 |
-
$this->amzHeaders[$key] = $value;
|
| 1706 |
-
}
|
| 1707 |
-
|
| 1708 |
-
|
| 1709 |
-
/**
|
| 1710 |
-
* Get the S3 response
|
| 1711 |
-
*
|
| 1712 |
-
* @return object | false
|
| 1713 |
-
*/
|
| 1714 |
-
public function getResponse()
|
| 1715 |
-
{
|
| 1716 |
-
$query = '';
|
| 1717 |
-
if (sizeof($this->parameters) > 0)
|
| 1718 |
-
{
|
| 1719 |
-
$query = substr($this->uri, -1) !== '?' ? '?' : '&';
|
| 1720 |
-
foreach ($this->parameters as $var => $value)
|
| 1721 |
-
if ($value == null || $value == '') $query .= $var.'&';
|
| 1722 |
-
// Parameters should be encoded (thanks Sean O'Dea)
|
| 1723 |
-
else $query .= $var.'='.rawurlencode($value).'&';
|
| 1724 |
-
$query = substr($query, 0, -1);
|
| 1725 |
-
$this->uri .= $query;
|
| 1726 |
-
|
| 1727 |
-
if (array_key_exists('acl', $this->parameters) ||
|
| 1728 |
-
array_key_exists('location', $this->parameters) ||
|
| 1729 |
-
array_key_exists('torrent', $this->parameters) ||
|
| 1730 |
-
array_key_exists('logging', $this->parameters))
|
| 1731 |
-
$this->resource .= $query;
|
| 1732 |
-
}
|
| 1733 |
-
$url = (S3::$useSSL ? 'https://' : 'http://') . $this->headers['Host'].$this->uri;
|
| 1734 |
-
//var_dump($this->bucket, $this->uri, $this->resource, $url);
|
| 1735 |
-
|
| 1736 |
-
// Basic setup
|
| 1737 |
-
$curl = curl_init();
|
| 1738 |
-
curl_setopt($curl, CURLOPT_USERAGENT, 'S3/php');
|
| 1739 |
-
|
| 1740 |
-
if (S3::$useSSL)
|
| 1741 |
-
{
|
| 1742 |
-
// SSL Validation can now be optional for those with broken OpenSSL installations
|
| 1743 |
-
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, S3::$useSSLValidation ? 1 : 0);
|
| 1744 |
-
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, S3::$useSSLValidation ? 1 : 0);
|
| 1745 |
-
|
| 1746 |
-
if (S3::$sslKey !== null) curl_setopt($curl, CURLOPT_SSLKEY, S3::$sslKey);
|
| 1747 |
-
if (S3::$sslCert !== null) curl_setopt($curl, CURLOPT_SSLCERT, S3::$sslCert);
|
| 1748 |
-
if (S3::$sslCACert !== null) curl_setopt($curl, CURLOPT_CAINFO, S3::$sslCACert);
|
| 1749 |
-
}
|
| 1750 |
-
|
| 1751 |
-
curl_setopt($curl, CURLOPT_URL, $url);
|
| 1752 |
-
|
| 1753 |
-
if (S3::$proxy != null && isset(S3::$proxy['host']))
|
| 1754 |
-
{
|
| 1755 |
-
curl_setopt($curl, CURLOPT_PROXY, S3::$proxy['host']);
|
| 1756 |
-
curl_setopt($curl, CURLOPT_PROXYTYPE, S3::$proxy['type']);
|
| 1757 |
-
if (isset(S3::$proxy['user'], S3::$proxy['pass']) && $proxy['user'] != null && $proxy['pass'] != null)
|
| 1758 |
-
curl_setopt($curl, CURLOPT_PROXYUSERPWD, sprintf('%s:%s', S3::$proxy['user'], S3::$proxy['pass']));
|
| 1759 |
-
}
|
| 1760 |
-
|
| 1761 |
-
// Headers
|
| 1762 |
-
$headers = array(); $amz = array();
|
| 1763 |
-
foreach ($this->amzHeaders as $header => $value)
|
| 1764 |
-
if (strlen($value) > 0) $headers[] = $header.': '.$value;
|
| 1765 |
-
foreach ($this->headers as $header => $value)
|
| 1766 |
-
if (strlen($value) > 0) $headers[] = $header.': '.$value;
|
| 1767 |
-
|
| 1768 |
-
// Collect AMZ headers for signature
|
| 1769 |
-
foreach ($this->amzHeaders as $header => $value)
|
| 1770 |
-
if (strlen($value) > 0) $amz[] = strtolower($header).':'.$value;
|
| 1771 |
-
|
| 1772 |
-
// AMZ headers must be sorted
|
| 1773 |
-
if (sizeof($amz) > 0)
|
| 1774 |
-
{
|
| 1775 |
-
sort($amz);
|
| 1776 |
-
$amz = "\n".implode("\n", $amz);
|
| 1777 |
-
} else $amz = '';
|
| 1778 |
-
|
| 1779 |
-
if (S3::hasAuth())
|
| 1780 |
-
{
|
| 1781 |
-
// Authorization string (CloudFront stringToSign should only contain a date)
|
| 1782 |
-
$headers[] = 'Authorization: ' . S3::__getSignature(
|
| 1783 |
-
$this->headers['Host'] == 'cloudfront.amazonaws.com' ? $this->headers['Date'] :
|
| 1784 |
-
$this->verb."\n".$this->headers['Content-MD5']."\n".
|
| 1785 |
-
$this->headers['Content-Type']."\n".$this->headers['Date'].$amz."\n".$this->resource
|
| 1786 |
-
);
|
| 1787 |
-
}
|
| 1788 |
-
|
| 1789 |
-
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
|
| 1790 |
-
curl_setopt($curl, CURLOPT_HEADER, false);
|
| 1791 |
-
curl_setopt($curl, CURLOPT_RETURNTRANSFER, false);
|
| 1792 |
-
curl_setopt($curl, CURLOPT_WRITEFUNCTION, array(&$this, '__responseWriteCallback'));
|
| 1793 |
-
curl_setopt($curl, CURLOPT_HEADERFUNCTION, array(&$this, '__responseHeaderCallback'));
|
| 1794 |
-
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
|
| 1795 |
-
|
| 1796 |
-
// Request types
|
| 1797 |
-
switch ($this->verb)
|
| 1798 |
-
{
|
| 1799 |
-
case 'GET': break;
|
| 1800 |
-
case 'PUT': case 'POST': // POST only used for CloudFront
|
| 1801 |
-
if ($this->fp !== false)
|
| 1802 |
-
{
|
| 1803 |
-
curl_setopt($curl, CURLOPT_PUT, true);
|
| 1804 |
-
curl_setopt($curl, CURLOPT_INFILE, $this->fp);
|
| 1805 |
-
if ($this->size >= 0)
|
| 1806 |
-
curl_setopt($curl, CURLOPT_INFILESIZE, $this->size);
|
| 1807 |
-
}
|
| 1808 |
-
elseif ($this->data !== false)
|
| 1809 |
-
{
|
| 1810 |
-
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $this->verb);
|
| 1811 |
-
curl_setopt($curl, CURLOPT_POSTFIELDS, $this->data);
|
| 1812 |
-
}
|
| 1813 |
-
else
|
| 1814 |
-
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $this->verb);
|
| 1815 |
-
break;
|
| 1816 |
-
case 'HEAD':
|
| 1817 |
-
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'HEAD');
|
| 1818 |
-
curl_setopt($curl, CURLOPT_NOBODY, true);
|
| 1819 |
-
break;
|
| 1820 |
-
case 'DELETE':
|
| 1821 |
-
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'DELETE');
|
| 1822 |
-
break;
|
| 1823 |
-
default: break;
|
| 1824 |
-
}
|
| 1825 |
-
|
| 1826 |
-
// Execute, grab errors
|
| 1827 |
-
if (curl_exec($curl))
|
| 1828 |
-
$this->response->code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
|
| 1829 |
-
else
|
| 1830 |
-
$this->response->error = array(
|
| 1831 |
-
'code' => curl_errno($curl),
|
| 1832 |
-
'message' => curl_error($curl),
|
| 1833 |
-
'resource' => $this->resource
|
| 1834 |
-
);
|
| 1835 |
-
|
| 1836 |
-
@curl_close($curl);
|
| 1837 |
-
|
| 1838 |
-
// Parse body into XML
|
| 1839 |
-
if ($this->response->error === false && isset($this->response->headers['type']) &&
|
| 1840 |
-
$this->response->headers['type'] == 'application/xml' && isset($this->response->body))
|
| 1841 |
-
{
|
| 1842 |
-
$this->response->body = simplexml_load_string($this->response->body);
|
| 1843 |
-
|
| 1844 |
-
// Grab S3 errors
|
| 1845 |
-
if (!in_array($this->response->code, array(200, 204, 206)) &&
|
| 1846 |
-
isset($this->response->body->Code, $this->response->body->Message))
|
| 1847 |
-
{
|
| 1848 |
-
$this->response->error = array(
|
| 1849 |
-
'code' => (string)$this->response->body->Code,
|
| 1850 |
-
'message' => (string)$this->response->body->Message
|
| 1851 |
-
);
|
| 1852 |
-
if (isset($this->response->body->Resource))
|
| 1853 |
-
$this->response->error['resource'] = (string)$this->response->body->Resource;
|
| 1854 |
-
unset($this->response->body);
|
| 1855 |
-
}
|
| 1856 |
-
}
|
| 1857 |
-
|
| 1858 |
-
// Clean up file resources
|
| 1859 |
-
if ($this->fp !== false && is_resource($this->fp)) fclose($this->fp);
|
| 1860 |
-
|
| 1861 |
-
return $this->response;
|
| 1862 |
-
}
|
| 1863 |
-
|
| 1864 |
-
|
| 1865 |
-
/**
|
| 1866 |
-
* CURL write callback
|
| 1867 |
-
*
|
| 1868 |
-
* @param resource &$curl CURL resource
|
| 1869 |
-
* @param string &$data Data
|
| 1870 |
-
* @return integer
|
| 1871 |
-
*/
|
| 1872 |
-
private function __responseWriteCallback(&$curl, &$data)
|
| 1873 |
-
{
|
| 1874 |
-
if (in_array($this->response->code, array(200, 206)) && $this->fp !== false)
|
| 1875 |
-
return fwrite($this->fp, $data);
|
| 1876 |
-
else
|
| 1877 |
-
$this->response->body .= $data;
|
| 1878 |
-
return strlen($data);
|
| 1879 |
-
}
|
| 1880 |
-
|
| 1881 |
-
|
| 1882 |
-
/**
|
| 1883 |
-
* CURL header callback
|
| 1884 |
-
*
|
| 1885 |
-
* @param resource &$curl CURL resource
|
| 1886 |
-
* @param string &$data Data
|
| 1887 |
-
* @return integer
|
| 1888 |
-
*/
|
| 1889 |
-
private function __responseHeaderCallback(&$curl, &$data)
|
| 1890 |
-
{
|
| 1891 |
-
if (($strlen = strlen($data)) <= 2) return $strlen;
|
| 1892 |
-
if (substr($data, 0, 4) == 'HTTP')
|
| 1893 |
-
$this->response->code = (int)substr($data, 9, 3);
|
| 1894 |
-
else
|
| 1895 |
-
{
|
| 1896 |
-
$data = trim($data);
|
| 1897 |
-
if (strpos($data, ': ') === false) return $strlen;
|
| 1898 |
-
list($header, $value) = explode(': ', $data, 2);
|
| 1899 |
-
if ($header == 'Last-Modified')
|
| 1900 |
-
$this->response->headers['time'] = strtotime($value);
|
| 1901 |
-
elseif ($header == 'Content-Length')
|
| 1902 |
-
$this->response->headers['size'] = (int)$value;
|
| 1903 |
-
elseif ($header == 'Content-Type')
|
| 1904 |
-
$this->response->headers['type'] = $value;
|
| 1905 |
-
elseif ($header == 'ETag')
|
| 1906 |
-
$this->response->headers['hash'] = $value{0} == '"' ? substr($value, 1, -1) : $value;
|
| 1907 |
-
elseif (preg_match('/^x-amz-meta-.*$/', $header))
|
| 1908 |
-
$this->response->headers[$header] = is_numeric($value) ? (int)$value : $value;
|
| 1909 |
-
}
|
| 1910 |
-
return $strlen;
|
| 1911 |
-
}
|
| 1912 |
-
|
| 1913 |
-
}
|
| 1914 |
-
|
| 1915 |
-
class S3Exception extends Exception {
|
| 1916 |
-
function __construct($message, $file, $line, $code = 0)
|
| 1917 |
-
{
|
| 1918 |
-
parent::__construct($message, $code);
|
| 1919 |
-
$this->file = $file;
|
| 1920 |
-
$this->line = $line;
|
| 1921 |
-
}
|
| 1922 |
-
}
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* $Id$
|
| 4 |
+
*
|
| 5 |
+
* Copyright (c) 2011, Donovan Schönknecht. All rights reserved.
|
| 6 |
+
*
|
| 7 |
+
* Redistribution and use in source and binary forms, with or without
|
| 8 |
+
* modification, are permitted provided that the following conditions are met:
|
| 9 |
+
*
|
| 10 |
+
* - Redistributions of source code must retain the above copyright notice,
|
| 11 |
+
* this list of conditions and the following disclaimer.
|
| 12 |
+
* - Redistributions in binary form must reproduce the above copyright
|
| 13 |
+
* notice, this list of conditions and the following disclaimer in the
|
| 14 |
+
* documentation and/or other materials provided with the distribution.
|
| 15 |
+
*
|
| 16 |
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
| 17 |
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
| 18 |
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
| 19 |
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
| 20 |
+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
| 21 |
+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
| 22 |
+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
| 23 |
+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
| 24 |
+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
| 25 |
+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
| 26 |
+
* POSSIBILITY OF SUCH DAMAGE.
|
| 27 |
+
*
|
| 28 |
+
* Amazon S3 is a trademark of Amazon.com, Inc. or its affiliates.
|
| 29 |
+
*/
|
| 30 |
+
|
| 31 |
+
/**
|
| 32 |
+
* Amazon S3 PHP class
|
| 33 |
+
*
|
| 34 |
+
* @link http://undesigned.org.za/2007/10/22/amazon-s3-php-class
|
| 35 |
+
* @version 0.5.0-dev
|
| 36 |
+
*/
|
| 37 |
+
class S3
|
| 38 |
+
{
|
| 39 |
+
// ACL flags
|
| 40 |
+
const ACL_PRIVATE = 'private';
|
| 41 |
+
const ACL_PUBLIC_READ = 'public-read';
|
| 42 |
+
const ACL_PUBLIC_READ_WRITE = 'public-read-write';
|
| 43 |
+
const ACL_AUTHENTICATED_READ = 'authenticated-read';
|
| 44 |
+
|
| 45 |
+
const STORAGE_CLASS_STANDARD = 'STANDARD';
|
| 46 |
+
const STORAGE_CLASS_RRS = 'REDUCED_REDUNDANCY';
|
| 47 |
+
|
| 48 |
+
private static $__accessKey = null; // AWS Access key
|
| 49 |
+
private static $__secretKey = null; // AWS Secret key
|
| 50 |
+
private static $__sslKey = null;
|
| 51 |
+
|
| 52 |
+
public static $endpoint = 's3.amazonaws.com';
|
| 53 |
+
public static $proxy = null;
|
| 54 |
+
|
| 55 |
+
public static $useSSL = false;
|
| 56 |
+
public static $useSSLValidation = true;
|
| 57 |
+
public static $useExceptions = false;
|
| 58 |
+
|
| 59 |
+
// SSL CURL SSL options - only needed if you are experiencing problems with your OpenSSL configuration
|
| 60 |
+
public static $sslKey = null;
|
| 61 |
+
public static $sslCert = null;
|
| 62 |
+
public static $sslCACert = null;
|
| 63 |
+
|
| 64 |
+
private static $__signingKeyPairId = null; // AWS Key Pair ID
|
| 65 |
+
private static $__signingKeyResource = false; // Key resource, freeSigningKey() must be called to clear it from memory
|
| 66 |
+
|
| 67 |
+
|
| 68 |
+
/**
|
| 69 |
+
* Constructor - if you're not using the class statically
|
| 70 |
+
*
|
| 71 |
+
* @param string $accessKey Access key
|
| 72 |
+
* @param string $secretKey Secret key
|
| 73 |
+
* @param boolean $useSSL Enable SSL
|
| 74 |
+
* @return void
|
| 75 |
+
*/
|
| 76 |
+
public function __construct($accessKey = null, $secretKey = null, $useSSL = false, $endpoint = 's3.amazonaws.com')
|
| 77 |
+
{
|
| 78 |
+
if ($accessKey !== null && $secretKey !== null)
|
| 79 |
+
self::setAuth($accessKey, $secretKey);
|
| 80 |
+
self::$useSSL = $useSSL;
|
| 81 |
+
self::$endpoint = $endpoint;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
/**
|
| 86 |
+
* Set the sertvice endpoint
|
| 87 |
+
*
|
| 88 |
+
* @param string $host Hostname
|
| 89 |
+
* @return void
|
| 90 |
+
*/
|
| 91 |
+
public function setEndpoint($host)
|
| 92 |
+
{
|
| 93 |
+
self::$endpoint = $host;
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
/**
|
| 97 |
+
* Set AWS access key and secret key
|
| 98 |
+
*
|
| 99 |
+
* @param string $accessKey Access key
|
| 100 |
+
* @param string $secretKey Secret key
|
| 101 |
+
* @return void
|
| 102 |
+
*/
|
| 103 |
+
public static function setAuth($accessKey, $secretKey)
|
| 104 |
+
{
|
| 105 |
+
self::$__accessKey = $accessKey;
|
| 106 |
+
self::$__secretKey = $secretKey;
|
| 107 |
+
}
|
| 108 |
+
|
| 109 |
+
|
| 110 |
+
/**
|
| 111 |
+
* Check if AWS keys have been set
|
| 112 |
+
*
|
| 113 |
+
* @return boolean
|
| 114 |
+
*/
|
| 115 |
+
public static function hasAuth() {
|
| 116 |
+
return (self::$__accessKey !== null && self::$__secretKey !== null);
|
| 117 |
+
}
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
/**
|
| 121 |
+
* Set SSL on or off
|
| 122 |
+
*
|
| 123 |
+
* @param boolean $enabled SSL enabled
|
| 124 |
+
* @param boolean $validate SSL certificate validation
|
| 125 |
+
* @return void
|
| 126 |
+
*/
|
| 127 |
+
public static function setSSL($enabled, $validate = true)
|
| 128 |
+
{
|
| 129 |
+
self::$useSSL = $enabled;
|
| 130 |
+
self::$useSSLValidation = $validate;
|
| 131 |
+
}
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
/**
|
| 135 |
+
* Set SSL client certificates (experimental)
|
| 136 |
+
*
|
| 137 |
+
* @param string $sslCert SSL client certificate
|
| 138 |
+
* @param string $sslKey SSL client key
|
| 139 |
+
* @param string $sslCACert SSL CA cert (only required if you are having problems with your system CA cert)
|
| 140 |
+
* @return void
|
| 141 |
+
*/
|
| 142 |
+
public static function setSSLAuth($sslCert = null, $sslKey = null, $sslCACert = null)
|
| 143 |
+
{
|
| 144 |
+
self::$sslCert = $sslCert;
|
| 145 |
+
self::$sslKey = $sslKey;
|
| 146 |
+
self::$sslCACert = $sslCACert;
|
| 147 |
+
}
|
| 148 |
+
|
| 149 |
+
|
| 150 |
+
/**
|
| 151 |
+
* Set proxy information
|
| 152 |
+
*
|
| 153 |
+
* @param string $host Proxy hostname and port (localhost:1234)
|
| 154 |
+
* @param string $user Proxy username
|
| 155 |
+
* @param string $pass Proxy password
|
| 156 |
+
* @param constant $type CURL proxy type
|
| 157 |
+
* @return void
|
| 158 |
+
*/
|
| 159 |
+
public static function setProxy($host, $user = null, $pass = null, $type = CURLPROXY_SOCKS5)
|
| 160 |
+
{
|
| 161 |
+
self::$proxy = array('host' => $host, 'type' => $type, 'user' => null, 'pass' => 'null');
|
| 162 |
+
}
|
| 163 |
+
|
| 164 |
+
|
| 165 |
+
/**
|
| 166 |
+
* Set the error mode to exceptions
|
| 167 |
+
*
|
| 168 |
+
* @param boolean $enabled Enable exceptions
|
| 169 |
+
* @return void
|
| 170 |
+
*/
|
| 171 |
+
public static function setExceptions($enabled = true)
|
| 172 |
+
{
|
| 173 |
+
self::$useExceptions = $enabled;
|
| 174 |
+
}
|
| 175 |
+
|
| 176 |
+
|
| 177 |
+
/**
|
| 178 |
+
* Set signing key
|
| 179 |
+
*
|
| 180 |
+
* @param string $keyPairId AWS Key Pair ID
|
| 181 |
+
* @param string $signingKey Private Key
|
| 182 |
+
* @param boolean $isFile Load private key from file, set to false to load string
|
| 183 |
+
* @return boolean
|
| 184 |
+
*/
|
| 185 |
+
public static function setSigningKey($keyPairId, $signingKey, $isFile = true)
|
| 186 |
+
{
|
| 187 |
+
self::$__signingKeyPairId = $keyPairId;
|
| 188 |
+
if ((self::$__signingKeyResource = openssl_pkey_get_private($isFile ?
|
| 189 |
+
file_get_contents($signingKey) : $signingKey)) !== false) return true;
|
| 190 |
+
self::__triggerError('S3::setSigningKey(): Unable to open load private key: '.$signingKey, __FILE__, __LINE__);
|
| 191 |
+
return false;
|
| 192 |
+
}
|
| 193 |
+
|
| 194 |
+
|
| 195 |
+
/**
|
| 196 |
+
* Free signing key from memory, MUST be called if you are using setSigningKey()
|
| 197 |
+
*
|
| 198 |
+
* @return void
|
| 199 |
+
*/
|
| 200 |
+
public static function freeSigningKey()
|
| 201 |
+
{
|
| 202 |
+
if (self::$__signingKeyResource !== false)
|
| 203 |
+
openssl_free_key(self::$__signingKeyResource);
|
| 204 |
+
}
|
| 205 |
+
|
| 206 |
+
|
| 207 |
+
/**
|
| 208 |
+
* Internal error handler
|
| 209 |
+
*
|
| 210 |
+
* @internal Internal error handler
|
| 211 |
+
* @param string $message Error message
|
| 212 |
+
* @param string $file Filename
|
| 213 |
+
* @param integer $line Line number
|
| 214 |
+
* @param integer $code Error code
|
| 215 |
+
* @return void
|
| 216 |
+
*/
|
| 217 |
+
private static function __triggerError($message, $file, $line, $code = 0)
|
| 218 |
+
{
|
| 219 |
+
if (self::$useExceptions)
|
| 220 |
+
throw new S3Exception($message, $file, $line, $code);
|
| 221 |
+
else
|
| 222 |
+
trigger_error($message, E_USER_WARNING);
|
| 223 |
+
}
|
| 224 |
+
|
| 225 |
+
|
| 226 |
+
/**
|
| 227 |
+
* Get a list of buckets
|
| 228 |
+
*
|
| 229 |
+
* @param boolean $detailed Returns detailed bucket list when true
|
| 230 |
+
* @return array | false
|
| 231 |
+
*/
|
| 232 |
+
public static function listBuckets($detailed = false)
|
| 233 |
+
{
|
| 234 |
+
$rest = new S3Request('GET', '', '', self::$endpoint);
|
| 235 |
+
$rest = $rest->getResponse();
|
| 236 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 237 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 238 |
+
if ($rest->error !== false)
|
| 239 |
+
{
|
| 240 |
+
self::__triggerError(sprintf("S3::listBuckets(): [%s] %s", $rest->error['code'],
|
| 241 |
+
$rest->error['message']), __FILE__, __LINE__);
|
| 242 |
+
return false;
|
| 243 |
+
}
|
| 244 |
+
$results = array();
|
| 245 |
+
if (!isset($rest->body->Buckets)) return $results;
|
| 246 |
+
|
| 247 |
+
if ($detailed)
|
| 248 |
+
{
|
| 249 |
+
if (isset($rest->body->Owner, $rest->body->Owner->ID, $rest->body->Owner->DisplayName))
|
| 250 |
+
$results['owner'] = array(
|
| 251 |
+
'id' => (string)$rest->body->Owner->ID, 'name' => (string)$rest->body->Owner->ID
|
| 252 |
+
);
|
| 253 |
+
$results['buckets'] = array();
|
| 254 |
+
foreach ($rest->body->Buckets->Bucket as $b)
|
| 255 |
+
$results['buckets'][] = array(
|
| 256 |
+
'name' => (string)$b->Name, 'time' => strtotime((string)$b->CreationDate)
|
| 257 |
+
);
|
| 258 |
+
} else
|
| 259 |
+
foreach ($rest->body->Buckets->Bucket as $b) $results[] = (string)$b->Name;
|
| 260 |
+
|
| 261 |
+
return $results;
|
| 262 |
+
}
|
| 263 |
+
|
| 264 |
+
|
| 265 |
+
/*
|
| 266 |
+
* Get contents for a bucket
|
| 267 |
+
*
|
| 268 |
+
* If maxKeys is null this method will loop through truncated result sets
|
| 269 |
+
*
|
| 270 |
+
* @param string $bucket Bucket name
|
| 271 |
+
* @param string $prefix Prefix
|
| 272 |
+
* @param string $marker Marker (last file listed)
|
| 273 |
+
* @param string $maxKeys Max keys (maximum number of keys to return)
|
| 274 |
+
* @param string $delimiter Delimiter
|
| 275 |
+
* @param boolean $returnCommonPrefixes Set to true to return CommonPrefixes
|
| 276 |
+
* @return array | false
|
| 277 |
+
*/
|
| 278 |
+
public static function getBucket($bucket, $prefix = null, $marker = null, $maxKeys = null, $delimiter = null, $returnCommonPrefixes = false)
|
| 279 |
+
{
|
| 280 |
+
$rest = new S3Request('GET', $bucket, '', self::$endpoint);
|
| 281 |
+
if ($maxKeys == 0) $maxKeys = null;
|
| 282 |
+
if ($prefix !== null && $prefix !== '') $rest->setParameter('prefix', $prefix);
|
| 283 |
+
if ($marker !== null && $marker !== '') $rest->setParameter('marker', $marker);
|
| 284 |
+
if ($maxKeys !== null && $maxKeys !== '') $rest->setParameter('max-keys', $maxKeys);
|
| 285 |
+
if ($delimiter !== null && $delimiter !== '') $rest->setParameter('delimiter', $delimiter);
|
| 286 |
+
$response = $rest->getResponse();
|
| 287 |
+
if ($response->error === false && $response->code !== 200)
|
| 288 |
+
$response->error = array('code' => $response->code, 'message' => 'Unexpected HTTP status');
|
| 289 |
+
if ($response->error !== false)
|
| 290 |
+
{
|
| 291 |
+
self::__triggerError(sprintf("S3::getBucket(): [%s] %s",
|
| 292 |
+
$response->error['code'], $response->error['message']), __FILE__, __LINE__);
|
| 293 |
+
return false;
|
| 294 |
+
}
|
| 295 |
+
|
| 296 |
+
$results = array();
|
| 297 |
+
|
| 298 |
+
$nextMarker = null;
|
| 299 |
+
if (isset($response->body, $response->body->Contents))
|
| 300 |
+
foreach ($response->body->Contents as $c)
|
| 301 |
+
{
|
| 302 |
+
$results[(string)$c->Key] = array(
|
| 303 |
+
'name' => (string)$c->Key,
|
| 304 |
+
'time' => strtotime((string)$c->LastModified),
|
| 305 |
+
'size' => (int)$c->Size,
|
| 306 |
+
'hash' => substr((string)$c->ETag, 1, -1)
|
| 307 |
+
);
|
| 308 |
+
$nextMarker = (string)$c->Key;
|
| 309 |
+
}
|
| 310 |
+
|
| 311 |
+
if ($returnCommonPrefixes && isset($response->body, $response->body->CommonPrefixes))
|
| 312 |
+
foreach ($response->body->CommonPrefixes as $c)
|
| 313 |
+
$results[(string)$c->Prefix] = array('prefix' => (string)$c->Prefix);
|
| 314 |
+
|
| 315 |
+
if (isset($response->body, $response->body->IsTruncated) &&
|
| 316 |
+
(string)$response->body->IsTruncated == 'false') return $results;
|
| 317 |
+
|
| 318 |
+
if (isset($response->body, $response->body->NextMarker))
|
| 319 |
+
$nextMarker = (string)$response->body->NextMarker;
|
| 320 |
+
|
| 321 |
+
// Loop through truncated results if maxKeys isn't specified
|
| 322 |
+
if ($maxKeys == null && $nextMarker !== null && (string)$response->body->IsTruncated == 'true')
|
| 323 |
+
do
|
| 324 |
+
{
|
| 325 |
+
$rest = new S3Request('GET', $bucket, '', self::$endpoint);
|
| 326 |
+
if ($prefix !== null && $prefix !== '') $rest->setParameter('prefix', $prefix);
|
| 327 |
+
$rest->setParameter('marker', $nextMarker);
|
| 328 |
+
if ($delimiter !== null && $delimiter !== '') $rest->setParameter('delimiter', $delimiter);
|
| 329 |
+
|
| 330 |
+
if (($response = $rest->getResponse(true)) == false || $response->code !== 200) break;
|
| 331 |
+
|
| 332 |
+
if (isset($response->body, $response->body->Contents))
|
| 333 |
+
foreach ($response->body->Contents as $c)
|
| 334 |
+
{
|
| 335 |
+
$results[(string)$c->Key] = array(
|
| 336 |
+
'name' => (string)$c->Key,
|
| 337 |
+
'time' => strtotime((string)$c->LastModified),
|
| 338 |
+
'size' => (int)$c->Size,
|
| 339 |
+
'hash' => substr((string)$c->ETag, 1, -1)
|
| 340 |
+
);
|
| 341 |
+
$nextMarker = (string)$c->Key;
|
| 342 |
+
}
|
| 343 |
+
|
| 344 |
+
if ($returnCommonPrefixes && isset($response->body, $response->body->CommonPrefixes))
|
| 345 |
+
foreach ($response->body->CommonPrefixes as $c)
|
| 346 |
+
$results[(string)$c->Prefix] = array('prefix' => (string)$c->Prefix);
|
| 347 |
+
|
| 348 |
+
if (isset($response->body, $response->body->NextMarker))
|
| 349 |
+
$nextMarker = (string)$response->body->NextMarker;
|
| 350 |
+
|
| 351 |
+
} while ($response !== false && (string)$response->body->IsTruncated == 'true');
|
| 352 |
+
|
| 353 |
+
return $results;
|
| 354 |
+
}
|
| 355 |
+
|
| 356 |
+
|
| 357 |
+
/**
|
| 358 |
+
* Put a bucket
|
| 359 |
+
*
|
| 360 |
+
* @param string $bucket Bucket name
|
| 361 |
+
* @param constant $acl ACL flag
|
| 362 |
+
* @param string $location Set as "EU" to create buckets hosted in Europe
|
| 363 |
+
* @return boolean
|
| 364 |
+
*/
|
| 365 |
+
public static function putBucket($bucket, $acl = self::ACL_PRIVATE, $location = false)
|
| 366 |
+
{
|
| 367 |
+
$rest = new S3Request('PUT', $bucket, '', self::$endpoint);
|
| 368 |
+
$rest->setAmzHeader('x-amz-acl', $acl);
|
| 369 |
+
|
| 370 |
+
if ($location !== false)
|
| 371 |
+
{
|
| 372 |
+
$dom = new DOMDocument;
|
| 373 |
+
$createBucketConfiguration = $dom->createElement('CreateBucketConfiguration');
|
| 374 |
+
$locationConstraint = $dom->createElement('LocationConstraint', strtoupper($location));
|
| 375 |
+
$createBucketConfiguration->appendChild($locationConstraint);
|
| 376 |
+
$dom->appendChild($createBucketConfiguration);
|
| 377 |
+
$rest->data = $dom->saveXML();
|
| 378 |
+
$rest->size = strlen($rest->data);
|
| 379 |
+
$rest->setHeader('Content-Type', 'application/xml');
|
| 380 |
+
}
|
| 381 |
+
$rest = $rest->getResponse();
|
| 382 |
+
|
| 383 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 384 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 385 |
+
if ($rest->error !== false)
|
| 386 |
+
{
|
| 387 |
+
self::__triggerError(sprintf("S3::putBucket({$bucket}, {$acl}, {$location}): [%s] %s",
|
| 388 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 389 |
+
return false;
|
| 390 |
+
}
|
| 391 |
+
return true;
|
| 392 |
+
}
|
| 393 |
+
|
| 394 |
+
|
| 395 |
+
/**
|
| 396 |
+
* Delete an empty bucket
|
| 397 |
+
*
|
| 398 |
+
* @param string $bucket Bucket name
|
| 399 |
+
* @return boolean
|
| 400 |
+
*/
|
| 401 |
+
public static function deleteBucket($bucket)
|
| 402 |
+
{
|
| 403 |
+
$rest = new S3Request('DELETE', $bucket, '', self::$endpoint);
|
| 404 |
+
$rest = $rest->getResponse();
|
| 405 |
+
if ($rest->error === false && $rest->code !== 204)
|
| 406 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 407 |
+
if ($rest->error !== false)
|
| 408 |
+
{
|
| 409 |
+
self::__triggerError(sprintf("S3::deleteBucket({$bucket}): [%s] %s",
|
| 410 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 411 |
+
return false;
|
| 412 |
+
}
|
| 413 |
+
return true;
|
| 414 |
+
}
|
| 415 |
+
|
| 416 |
+
|
| 417 |
+
/**
|
| 418 |
+
* Create input info array for putObject()
|
| 419 |
+
*
|
| 420 |
+
* @param string $file Input file
|
| 421 |
+
* @param mixed $md5sum Use MD5 hash (supply a string if you want to use your own)
|
| 422 |
+
* @return array | false
|
| 423 |
+
*/
|
| 424 |
+
public static function inputFile($file, $md5sum = true)
|
| 425 |
+
{
|
| 426 |
+
if (!file_exists($file) || !is_file($file) || !is_readable($file))
|
| 427 |
+
{
|
| 428 |
+
self::__triggerError('S3::inputFile(): Unable to open input file: '.$file, __FILE__, __LINE__);
|
| 429 |
+
return false;
|
| 430 |
+
}
|
| 431 |
+
return array('file' => $file, 'size' => filesize($file), 'md5sum' => $md5sum !== false ?
|
| 432 |
+
(is_string($md5sum) ? $md5sum : base64_encode(md5_file($file, true))) : '');
|
| 433 |
+
}
|
| 434 |
+
|
| 435 |
+
|
| 436 |
+
/**
|
| 437 |
+
* Create input array info for putObject() with a resource
|
| 438 |
+
*
|
| 439 |
+
* @param string $resource Input resource to read from
|
| 440 |
+
* @param integer $bufferSize Input byte size
|
| 441 |
+
* @param string $md5sum MD5 hash to send (optional)
|
| 442 |
+
* @return array | false
|
| 443 |
+
*/
|
| 444 |
+
public static function inputResource(&$resource, $bufferSize, $md5sum = '')
|
| 445 |
+
{
|
| 446 |
+
if (!is_resource($resource) || $bufferSize < 0)
|
| 447 |
+
{
|
| 448 |
+
self::__triggerError('S3::inputResource(): Invalid resource or buffer size', __FILE__, __LINE__);
|
| 449 |
+
return false;
|
| 450 |
+
}
|
| 451 |
+
$input = array('size' => $bufferSize, 'md5sum' => $md5sum);
|
| 452 |
+
$input['fp'] =& $resource;
|
| 453 |
+
return $input;
|
| 454 |
+
}
|
| 455 |
+
|
| 456 |
+
|
| 457 |
+
/**
|
| 458 |
+
* Put an object
|
| 459 |
+
*
|
| 460 |
+
* @param mixed $input Input data
|
| 461 |
+
* @param string $bucket Bucket name
|
| 462 |
+
* @param string $uri Object URI
|
| 463 |
+
* @param constant $acl ACL constant
|
| 464 |
+
* @param array $metaHeaders Array of x-amz-meta-* headers
|
| 465 |
+
* @param array $requestHeaders Array of request headers or content type as a string
|
| 466 |
+
* @param constant $storageClass Storage class constant
|
| 467 |
+
* @return boolean
|
| 468 |
+
*/
|
| 469 |
+
public static function putObject($input, $bucket, $uri, $acl = self::ACL_PRIVATE, $metaHeaders = array(), $requestHeaders = array(), $storageClass = self::STORAGE_CLASS_STANDARD)
|
| 470 |
+
{
|
| 471 |
+
if ($input === false) return false;
|
| 472 |
+
$rest = new S3Request('PUT', $bucket, $uri, self::$endpoint);
|
| 473 |
+
|
| 474 |
+
if (is_string($input)) $input = array(
|
| 475 |
+
'data' => $input, 'size' => strlen($input),
|
| 476 |
+
'md5sum' => base64_encode(md5($input, true))
|
| 477 |
+
);
|
| 478 |
+
|
| 479 |
+
// Data
|
| 480 |
+
if (isset($input['fp']))
|
| 481 |
+
$rest->fp =& $input['fp'];
|
| 482 |
+
elseif (isset($input['file']))
|
| 483 |
+
$rest->fp = @fopen($input['file'], 'rb');
|
| 484 |
+
elseif (isset($input['data']))
|
| 485 |
+
$rest->data = $input['data'];
|
| 486 |
+
|
| 487 |
+
// Content-Length (required)
|
| 488 |
+
if (isset($input['size']) && $input['size'] >= 0)
|
| 489 |
+
$rest->size = $input['size'];
|
| 490 |
+
else {
|
| 491 |
+
if (isset($input['file']))
|
| 492 |
+
$rest->size = filesize($input['file']);
|
| 493 |
+
elseif (isset($input['data']))
|
| 494 |
+
$rest->size = strlen($input['data']);
|
| 495 |
+
}
|
| 496 |
+
|
| 497 |
+
// Custom request headers (Content-Type, Content-Disposition, Content-Encoding)
|
| 498 |
+
if (is_array($requestHeaders))
|
| 499 |
+
foreach ($requestHeaders as $h => $v) $rest->setHeader($h, $v);
|
| 500 |
+
elseif (is_string($requestHeaders)) // Support for legacy contentType parameter
|
| 501 |
+
$input['type'] = $requestHeaders;
|
| 502 |
+
|
| 503 |
+
// Content-Type
|
| 504 |
+
if (!isset($input['type']))
|
| 505 |
+
{
|
| 506 |
+
if (isset($requestHeaders['Content-Type']))
|
| 507 |
+
$input['type'] =& $requestHeaders['Content-Type'];
|
| 508 |
+
elseif (isset($input['file']))
|
| 509 |
+
$input['type'] = self::__getMimeType($input['file']);
|
| 510 |
+
else
|
| 511 |
+
$input['type'] = 'application/octet-stream';
|
| 512 |
+
}
|
| 513 |
+
|
| 514 |
+
if ($storageClass !== self::STORAGE_CLASS_STANDARD) // Storage class
|
| 515 |
+
$rest->setAmzHeader('x-amz-storage-class', $storageClass);
|
| 516 |
+
|
| 517 |
+
// We need to post with Content-Length and Content-Type, MD5 is optional
|
| 518 |
+
if ($rest->size >= 0 && ($rest->fp !== false || $rest->data !== false))
|
| 519 |
+
{
|
| 520 |
+
$rest->setHeader('Content-Type', $input['type']);
|
| 521 |
+
if (isset($input['md5sum'])) $rest->setHeader('Content-MD5', $input['md5sum']);
|
| 522 |
+
|
| 523 |
+
$rest->setAmzHeader('x-amz-acl', $acl);
|
| 524 |
+
foreach ($metaHeaders as $h => $v) $rest->setAmzHeader('x-amz-meta-'.$h, $v);
|
| 525 |
+
$rest->getResponse();
|
| 526 |
+
} else
|
| 527 |
+
$rest->response->error = array('code' => 0, 'message' => 'Missing input parameters');
|
| 528 |
+
|
| 529 |
+
if ($rest->response->error === false && $rest->response->code !== 200)
|
| 530 |
+
$rest->response->error = array('code' => $rest->response->code, 'message' => 'Unexpected HTTP status');
|
| 531 |
+
if ($rest->response->error !== false)
|
| 532 |
+
{
|
| 533 |
+
self::__triggerError(sprintf("S3::putObject(): [%s] %s",
|
| 534 |
+
$rest->response->error['code'], $rest->response->error['message']), __FILE__, __LINE__);
|
| 535 |
+
return false;
|
| 536 |
+
}
|
| 537 |
+
return true;
|
| 538 |
+
}
|
| 539 |
+
|
| 540 |
+
|
| 541 |
+
/**
|
| 542 |
+
* Put an object from a file (legacy function)
|
| 543 |
+
*
|
| 544 |
+
* @param string $file Input file path
|
| 545 |
+
* @param string $bucket Bucket name
|
| 546 |
+
* @param string $uri Object URI
|
| 547 |
+
* @param constant $acl ACL constant
|
| 548 |
+
* @param array $metaHeaders Array of x-amz-meta-* headers
|
| 549 |
+
* @param string $contentType Content type
|
| 550 |
+
* @return boolean
|
| 551 |
+
*/
|
| 552 |
+
public static function putObjectFile($file, $bucket, $uri, $acl = self::ACL_PRIVATE, $metaHeaders = array(), $contentType = null)
|
| 553 |
+
{
|
| 554 |
+
return self::putObject(self::inputFile($file), $bucket, $uri, $acl, $metaHeaders, $contentType);
|
| 555 |
+
}
|
| 556 |
+
|
| 557 |
+
|
| 558 |
+
/**
|
| 559 |
+
* Put an object from a string (legacy function)
|
| 560 |
+
*
|
| 561 |
+
* @param string $string Input data
|
| 562 |
+
* @param string $bucket Bucket name
|
| 563 |
+
* @param string $uri Object URI
|
| 564 |
+
* @param constant $acl ACL constant
|
| 565 |
+
* @param array $metaHeaders Array of x-amz-meta-* headers
|
| 566 |
+
* @param string $contentType Content type
|
| 567 |
+
* @return boolean
|
| 568 |
+
*/
|
| 569 |
+
public static function putObjectString($string, $bucket, $uri, $acl = self::ACL_PRIVATE, $metaHeaders = array(), $contentType = 'text/plain')
|
| 570 |
+
{
|
| 571 |
+
return self::putObject($string, $bucket, $uri, $acl, $metaHeaders, $contentType);
|
| 572 |
+
}
|
| 573 |
+
|
| 574 |
+
|
| 575 |
+
/**
|
| 576 |
+
* Get an object
|
| 577 |
+
*
|
| 578 |
+
* @param string $bucket Bucket name
|
| 579 |
+
* @param string $uri Object URI
|
| 580 |
+
* @param mixed $saveTo Filename or resource to write to
|
| 581 |
+
* @return mixed
|
| 582 |
+
*/
|
| 583 |
+
public static function getObject($bucket, $uri, $saveTo = false)
|
| 584 |
+
{
|
| 585 |
+
$rest = new S3Request('GET', $bucket, $uri, self::$endpoint);
|
| 586 |
+
if ($saveTo !== false)
|
| 587 |
+
{
|
| 588 |
+
if (is_resource($saveTo))
|
| 589 |
+
$rest->fp =& $saveTo;
|
| 590 |
+
else
|
| 591 |
+
if (($rest->fp = @fopen($saveTo, 'wb')) !== false)
|
| 592 |
+
$rest->file = realpath($saveTo);
|
| 593 |
+
else
|
| 594 |
+
$rest->response->error = array('code' => 0, 'message' => 'Unable to open save file for writing: '.$saveTo);
|
| 595 |
+
}
|
| 596 |
+
if ($rest->response->error === false) $rest->getResponse();
|
| 597 |
+
|
| 598 |
+
if ($rest->response->error === false && $rest->response->code !== 200)
|
| 599 |
+
$rest->response->error = array('code' => $rest->response->code, 'message' => 'Unexpected HTTP status');
|
| 600 |
+
if ($rest->response->error !== false)
|
| 601 |
+
{
|
| 602 |
+
self::__triggerError(sprintf("S3::getObject({$bucket}, {$uri}): [%s] %s",
|
| 603 |
+
$rest->response->error['code'], $rest->response->error['message']), __FILE__, __LINE__);
|
| 604 |
+
return false;
|
| 605 |
+
}
|
| 606 |
+
return $rest->response;
|
| 607 |
+
}
|
| 608 |
+
|
| 609 |
+
|
| 610 |
+
/**
|
| 611 |
+
* Get object information
|
| 612 |
+
*
|
| 613 |
+
* @param string $bucket Bucket name
|
| 614 |
+
* @param string $uri Object URI
|
| 615 |
+
* @param boolean $returnInfo Return response information
|
| 616 |
+
* @return mixed | false
|
| 617 |
+
*/
|
| 618 |
+
public static function getObjectInfo($bucket, $uri, $returnInfo = true)
|
| 619 |
+
{
|
| 620 |
+
$rest = new S3Request('HEAD', $bucket, $uri, self::$endpoint);
|
| 621 |
+
$rest = $rest->getResponse();
|
| 622 |
+
if ($rest->error === false && ($rest->code !== 200 && $rest->code !== 404))
|
| 623 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 624 |
+
if ($rest->error !== false)
|
| 625 |
+
{
|
| 626 |
+
self::__triggerError(sprintf("S3::getObjectInfo({$bucket}, {$uri}): [%s] %s",
|
| 627 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 628 |
+
return false;
|
| 629 |
+
}
|
| 630 |
+
return $rest->code == 200 ? $returnInfo ? $rest->headers : true : false;
|
| 631 |
+
}
|
| 632 |
+
|
| 633 |
+
|
| 634 |
+
/**
|
| 635 |
+
* Copy an object
|
| 636 |
+
*
|
| 637 |
+
* @param string $bucket Source bucket name
|
| 638 |
+
* @param string $uri Source object URI
|
| 639 |
+
* @param string $bucket Destination bucket name
|
| 640 |
+
* @param string $uri Destination object URI
|
| 641 |
+
* @param constant $acl ACL constant
|
| 642 |
+
* @param array $metaHeaders Optional array of x-amz-meta-* headers
|
| 643 |
+
* @param array $requestHeaders Optional array of request headers (content type, disposition, etc.)
|
| 644 |
+
* @param constant $storageClass Storage class constant
|
| 645 |
+
* @return mixed | false
|
| 646 |
+
*/
|
| 647 |
+
public static function copyObject($srcBucket, $srcUri, $bucket, $uri, $acl = self::ACL_PRIVATE, $metaHeaders = array(), $requestHeaders = array(), $storageClass = self::STORAGE_CLASS_STANDARD)
|
| 648 |
+
{
|
| 649 |
+
$rest = new S3Request('PUT', $bucket, $uri, self::$endpoint);
|
| 650 |
+
$rest->setHeader('Content-Length', 0);
|
| 651 |
+
foreach ($requestHeaders as $h => $v) $rest->setHeader($h, $v);
|
| 652 |
+
foreach ($metaHeaders as $h => $v) $rest->setAmzHeader('x-amz-meta-'.$h, $v);
|
| 653 |
+
if ($storageClass !== self::STORAGE_CLASS_STANDARD) // Storage class
|
| 654 |
+
$rest->setAmzHeader('x-amz-storage-class', $storageClass);
|
| 655 |
+
$rest->setAmzHeader('x-amz-acl', $acl); // Added rawurlencode() for $srcUri (thanks a.yamanoi)
|
| 656 |
+
$rest->setAmzHeader('x-amz-copy-source', sprintf('/%s/%s', $srcBucket, rawurlencode($srcUri)));
|
| 657 |
+
if (sizeof($requestHeaders) > 0 || sizeof($metaHeaders) > 0)
|
| 658 |
+
$rest->setAmzHeader('x-amz-metadata-directive', 'REPLACE');
|
| 659 |
+
|
| 660 |
+
$rest = $rest->getResponse();
|
| 661 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 662 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 663 |
+
if ($rest->error !== false)
|
| 664 |
+
{
|
| 665 |
+
self::__triggerError(sprintf("S3::copyObject({$srcBucket}, {$srcUri}, {$bucket}, {$uri}): [%s] %s",
|
| 666 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 667 |
+
return false;
|
| 668 |
+
}
|
| 669 |
+
return isset($rest->body->LastModified, $rest->body->ETag) ? array(
|
| 670 |
+
'time' => strtotime((string)$rest->body->LastModified),
|
| 671 |
+
'hash' => substr((string)$rest->body->ETag, 1, -1)
|
| 672 |
+
) : false;
|
| 673 |
+
}
|
| 674 |
+
|
| 675 |
+
|
| 676 |
+
/**
|
| 677 |
+
* Set logging for a bucket
|
| 678 |
+
*
|
| 679 |
+
* @param string $bucket Bucket name
|
| 680 |
+
* @param string $targetBucket Target bucket (where logs are stored)
|
| 681 |
+
* @param string $targetPrefix Log prefix (e,g; domain.com-)
|
| 682 |
+
* @return boolean
|
| 683 |
+
*/
|
| 684 |
+
public static function setBucketLogging($bucket, $targetBucket, $targetPrefix = null)
|
| 685 |
+
{
|
| 686 |
+
// The S3 log delivery group has to be added to the target bucket's ACP
|
| 687 |
+
if ($targetBucket !== null && ($acp = self::getAccessControlPolicy($targetBucket, '')) !== false)
|
| 688 |
+
{
|
| 689 |
+
// Only add permissions to the target bucket when they do not exist
|
| 690 |
+
$aclWriteSet = false;
|
| 691 |
+
$aclReadSet = false;
|
| 692 |
+
foreach ($acp['acl'] as $acl)
|
| 693 |
+
if ($acl['type'] == 'Group' && $acl['uri'] == 'http://acs.amazonaws.com/groups/s3/LogDelivery')
|
| 694 |
+
{
|
| 695 |
+
if ($acl['permission'] == 'WRITE') $aclWriteSet = true;
|
| 696 |
+
elseif ($acl['permission'] == 'READ_ACP') $aclReadSet = true;
|
| 697 |
+
}
|
| 698 |
+
if (!$aclWriteSet) $acp['acl'][] = array(
|
| 699 |
+
'type' => 'Group', 'uri' => 'http://acs.amazonaws.com/groups/s3/LogDelivery', 'permission' => 'WRITE'
|
| 700 |
+
);
|
| 701 |
+
if (!$aclReadSet) $acp['acl'][] = array(
|
| 702 |
+
'type' => 'Group', 'uri' => 'http://acs.amazonaws.com/groups/s3/LogDelivery', 'permission' => 'READ_ACP'
|
| 703 |
+
);
|
| 704 |
+
if (!$aclReadSet || !$aclWriteSet) self::setAccessControlPolicy($targetBucket, '', $acp);
|
| 705 |
+
}
|
| 706 |
+
|
| 707 |
+
$dom = new DOMDocument;
|
| 708 |
+
$bucketLoggingStatus = $dom->createElement('BucketLoggingStatus');
|
| 709 |
+
$bucketLoggingStatus->setAttribute('xmlns', 'http://s3.amazonaws.com/doc/2006-03-01/');
|
| 710 |
+
if ($targetBucket !== null)
|
| 711 |
+
{
|
| 712 |
+
if ($targetPrefix == null) $targetPrefix = $bucket . '-';
|
| 713 |
+
$loggingEnabled = $dom->createElement('LoggingEnabled');
|
| 714 |
+
$loggingEnabled->appendChild($dom->createElement('TargetBucket', $targetBucket));
|
| 715 |
+
$loggingEnabled->appendChild($dom->createElement('TargetPrefix', $targetPrefix));
|
| 716 |
+
// TODO: Add TargetGrants?
|
| 717 |
+
$bucketLoggingStatus->appendChild($loggingEnabled);
|
| 718 |
+
}
|
| 719 |
+
$dom->appendChild($bucketLoggingStatus);
|
| 720 |
+
|
| 721 |
+
$rest = new S3Request('PUT', $bucket, '', self::$endpoint);
|
| 722 |
+
$rest->setParameter('logging', null);
|
| 723 |
+
$rest->data = $dom->saveXML();
|
| 724 |
+
$rest->size = strlen($rest->data);
|
| 725 |
+
$rest->setHeader('Content-Type', 'application/xml');
|
| 726 |
+
$rest = $rest->getResponse();
|
| 727 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 728 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 729 |
+
if ($rest->error !== false)
|
| 730 |
+
{
|
| 731 |
+
self::__triggerError(sprintf("S3::setBucketLogging({$bucket}, {$uri}): [%s] %s",
|
| 732 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 733 |
+
return false;
|
| 734 |
+
}
|
| 735 |
+
return true;
|
| 736 |
+
}
|
| 737 |
+
|
| 738 |
+
|
| 739 |
+
/**
|
| 740 |
+
* Get logging status for a bucket
|
| 741 |
+
*
|
| 742 |
+
* This will return false if logging is not enabled.
|
| 743 |
+
* Note: To enable logging, you also need to grant write access to the log group
|
| 744 |
+
*
|
| 745 |
+
* @param string $bucket Bucket name
|
| 746 |
+
* @return array | false
|
| 747 |
+
*/
|
| 748 |
+
public static function getBucketLogging($bucket)
|
| 749 |
+
{
|
| 750 |
+
$rest = new S3Request('GET', $bucket, '', self::$endpoint);
|
| 751 |
+
$rest->setParameter('logging', null);
|
| 752 |
+
$rest = $rest->getResponse();
|
| 753 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 754 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 755 |
+
if ($rest->error !== false)
|
| 756 |
+
{
|
| 757 |
+
self::__triggerError(sprintf("S3::getBucketLogging({$bucket}): [%s] %s",
|
| 758 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 759 |
+
return false;
|
| 760 |
+
}
|
| 761 |
+
if (!isset($rest->body->LoggingEnabled)) return false; // No logging
|
| 762 |
+
return array(
|
| 763 |
+
'targetBucket' => (string)$rest->body->LoggingEnabled->TargetBucket,
|
| 764 |
+
'targetPrefix' => (string)$rest->body->LoggingEnabled->TargetPrefix,
|
| 765 |
+
);
|
| 766 |
+
}
|
| 767 |
+
|
| 768 |
+
|
| 769 |
+
/**
|
| 770 |
+
* Disable bucket logging
|
| 771 |
+
*
|
| 772 |
+
* @param string $bucket Bucket name
|
| 773 |
+
* @return boolean
|
| 774 |
+
*/
|
| 775 |
+
public static function disableBucketLogging($bucket)
|
| 776 |
+
{
|
| 777 |
+
return self::setBucketLogging($bucket, null);
|
| 778 |
+
}
|
| 779 |
+
|
| 780 |
+
|
| 781 |
+
/**
|
| 782 |
+
* Get a bucket's location
|
| 783 |
+
*
|
| 784 |
+
* @param string $bucket Bucket name
|
| 785 |
+
* @return string | false
|
| 786 |
+
*/
|
| 787 |
+
public static function getBucketLocation($bucket)
|
| 788 |
+
{
|
| 789 |
+
$rest = new S3Request('GET', $bucket, '', self::$endpoint);
|
| 790 |
+
$rest->setParameter('location', null);
|
| 791 |
+
$rest = $rest->getResponse();
|
| 792 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 793 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 794 |
+
if ($rest->error !== false)
|
| 795 |
+
{
|
| 796 |
+
self::__triggerError(sprintf("S3::getBucketLocation({$bucket}): [%s] %s",
|
| 797 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 798 |
+
return false;
|
| 799 |
+
}
|
| 800 |
+
return (isset($rest->body[0]) && (string)$rest->body[0] !== '') ? (string)$rest->body[0] : 'US';
|
| 801 |
+
}
|
| 802 |
+
|
| 803 |
+
|
| 804 |
+
/**
|
| 805 |
+
* Set object or bucket Access Control Policy
|
| 806 |
+
*
|
| 807 |
+
* @param string $bucket Bucket name
|
| 808 |
+
* @param string $uri Object URI
|
| 809 |
+
* @param array $acp Access Control Policy Data (same as the data returned from getAccessControlPolicy)
|
| 810 |
+
* @return boolean
|
| 811 |
+
*/
|
| 812 |
+
public static function setAccessControlPolicy($bucket, $uri = '', $acp = array())
|
| 813 |
+
{
|
| 814 |
+
$dom = new DOMDocument;
|
| 815 |
+
$dom->formatOutput = true;
|
| 816 |
+
$accessControlPolicy = $dom->createElement('AccessControlPolicy');
|
| 817 |
+
$accessControlList = $dom->createElement('AccessControlList');
|
| 818 |
+
|
| 819 |
+
// It seems the owner has to be passed along too
|
| 820 |
+
$owner = $dom->createElement('Owner');
|
| 821 |
+
$owner->appendChild($dom->createElement('ID', $acp['owner']['id']));
|
| 822 |
+
$owner->appendChild($dom->createElement('DisplayName', $acp['owner']['name']));
|
| 823 |
+
$accessControlPolicy->appendChild($owner);
|
| 824 |
+
|
| 825 |
+
foreach ($acp['acl'] as $g)
|
| 826 |
+
{
|
| 827 |
+
$grant = $dom->createElement('Grant');
|
| 828 |
+
$grantee = $dom->createElement('Grantee');
|
| 829 |
+
$grantee->setAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance');
|
| 830 |
+
if (isset($g['id']))
|
| 831 |
+
{ // CanonicalUser (DisplayName is omitted)
|
| 832 |
+
$grantee->setAttribute('xsi:type', 'CanonicalUser');
|
| 833 |
+
$grantee->appendChild($dom->createElement('ID', $g['id']));
|
| 834 |
+
}
|
| 835 |
+
elseif (isset($g['email']))
|
| 836 |
+
{ // AmazonCustomerByEmail
|
| 837 |
+
$grantee->setAttribute('xsi:type', 'AmazonCustomerByEmail');
|
| 838 |
+
$grantee->appendChild($dom->createElement('EmailAddress', $g['email']));
|
| 839 |
+
}
|
| 840 |
+
elseif ($g['type'] == 'Group')
|
| 841 |
+
{ // Group
|
| 842 |
+
$grantee->setAttribute('xsi:type', 'Group');
|
| 843 |
+
$grantee->appendChild($dom->createElement('URI', $g['uri']));
|
| 844 |
+
}
|
| 845 |
+
$grant->appendChild($grantee);
|
| 846 |
+
$grant->appendChild($dom->createElement('Permission', $g['permission']));
|
| 847 |
+
$accessControlList->appendChild($grant);
|
| 848 |
+
}
|
| 849 |
+
|
| 850 |
+
$accessControlPolicy->appendChild($accessControlList);
|
| 851 |
+
$dom->appendChild($accessControlPolicy);
|
| 852 |
+
|
| 853 |
+
$rest = new S3Request('PUT', $bucket, $uri, self::$endpoint);
|
| 854 |
+
$rest->setParameter('acl', null);
|
| 855 |
+
$rest->data = $dom->saveXML();
|
| 856 |
+
$rest->size = strlen($rest->data);
|
| 857 |
+
$rest->setHeader('Content-Type', 'application/xml');
|
| 858 |
+
$rest = $rest->getResponse();
|
| 859 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 860 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 861 |
+
if ($rest->error !== false)
|
| 862 |
+
{
|
| 863 |
+
self::__triggerError(sprintf("S3::setAccessControlPolicy({$bucket}, {$uri}): [%s] %s",
|
| 864 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 865 |
+
return false;
|
| 866 |
+
}
|
| 867 |
+
return true;
|
| 868 |
+
}
|
| 869 |
+
|
| 870 |
+
|
| 871 |
+
/**
|
| 872 |
+
* Get object or bucket Access Control Policy
|
| 873 |
+
*
|
| 874 |
+
* @param string $bucket Bucket name
|
| 875 |
+
* @param string $uri Object URI
|
| 876 |
+
* @return mixed | false
|
| 877 |
+
*/
|
| 878 |
+
public static function getAccessControlPolicy($bucket, $uri = '')
|
| 879 |
+
{
|
| 880 |
+
$rest = new S3Request('GET', $bucket, $uri, self::$endpoint);
|
| 881 |
+
$rest->setParameter('acl', null);
|
| 882 |
+
$rest = $rest->getResponse();
|
| 883 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 884 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 885 |
+
if ($rest->error !== false)
|
| 886 |
+
{
|
| 887 |
+
self::__triggerError(sprintf("S3::getAccessControlPolicy({$bucket}, {$uri}): [%s] %s",
|
| 888 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 889 |
+
return false;
|
| 890 |
+
}
|
| 891 |
+
|
| 892 |
+
$acp = array();
|
| 893 |
+
if (isset($rest->body->Owner, $rest->body->Owner->ID, $rest->body->Owner->DisplayName))
|
| 894 |
+
$acp['owner'] = array(
|
| 895 |
+
'id' => (string)$rest->body->Owner->ID, 'name' => (string)$rest->body->Owner->DisplayName
|
| 896 |
+
);
|
| 897 |
+
|
| 898 |
+
if (isset($rest->body->AccessControlList))
|
| 899 |
+
{
|
| 900 |
+
$acp['acl'] = array();
|
| 901 |
+
foreach ($rest->body->AccessControlList->Grant as $grant)
|
| 902 |
+
{
|
| 903 |
+
foreach ($grant->Grantee as $grantee)
|
| 904 |
+
{
|
| 905 |
+
if (isset($grantee->ID, $grantee->DisplayName)) // CanonicalUser
|
| 906 |
+
$acp['acl'][] = array(
|
| 907 |
+
'type' => 'CanonicalUser',
|
| 908 |
+
'id' => (string)$grantee->ID,
|
| 909 |
+
'name' => (string)$grantee->DisplayName,
|
| 910 |
+
'permission' => (string)$grant->Permission
|
| 911 |
+
);
|
| 912 |
+
elseif (isset($grantee->EmailAddress)) // AmazonCustomerByEmail
|
| 913 |
+
$acp['acl'][] = array(
|
| 914 |
+
'type' => 'AmazonCustomerByEmail',
|
| 915 |
+
'email' => (string)$grantee->EmailAddress,
|
| 916 |
+
'permission' => (string)$grant->Permission
|
| 917 |
+
);
|
| 918 |
+
elseif (isset($grantee->URI)) // Group
|
| 919 |
+
$acp['acl'][] = array(
|
| 920 |
+
'type' => 'Group',
|
| 921 |
+
'uri' => (string)$grantee->URI,
|
| 922 |
+
'permission' => (string)$grant->Permission
|
| 923 |
+
);
|
| 924 |
+
else continue;
|
| 925 |
+
}
|
| 926 |
+
}
|
| 927 |
+
}
|
| 928 |
+
return $acp;
|
| 929 |
+
}
|
| 930 |
+
|
| 931 |
+
|
| 932 |
+
/**
|
| 933 |
+
* Delete an object
|
| 934 |
+
*
|
| 935 |
+
* @param string $bucket Bucket name
|
| 936 |
+
* @param string $uri Object URI
|
| 937 |
+
* @return boolean
|
| 938 |
+
*/
|
| 939 |
+
public static function deleteObject($bucket, $uri)
|
| 940 |
+
{
|
| 941 |
+
$rest = new S3Request('DELETE', $bucket, $uri, self::$endpoint);
|
| 942 |
+
$rest = $rest->getResponse();
|
| 943 |
+
if ($rest->error === false && $rest->code !== 204)
|
| 944 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 945 |
+
if ($rest->error !== false)
|
| 946 |
+
{
|
| 947 |
+
self::__triggerError(sprintf("S3::deleteObject(): [%s] %s",
|
| 948 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 949 |
+
return false;
|
| 950 |
+
}
|
| 951 |
+
return true;
|
| 952 |
+
}
|
| 953 |
+
|
| 954 |
+
|
| 955 |
+
/**
|
| 956 |
+
* Get a query string authenticated URL
|
| 957 |
+
*
|
| 958 |
+
* @param string $bucket Bucket name
|
| 959 |
+
* @param string $uri Object URI
|
| 960 |
+
* @param integer $lifetime Lifetime in seconds
|
| 961 |
+
* @param boolean $hostBucket Use the bucket name as the hostname
|
| 962 |
+
* @param boolean $https Use HTTPS ($hostBucket should be false for SSL verification)
|
| 963 |
+
* @return string
|
| 964 |
+
*/
|
| 965 |
+
public static function getAuthenticatedURL($bucket, $uri, $lifetime, $hostBucket = false, $https = false)
|
| 966 |
+
{
|
| 967 |
+
$expires = time() + $lifetime;
|
| 968 |
+
$uri = str_replace('%2F', '/', rawurlencode($uri)); // URI should be encoded (thanks Sean O'Dea)
|
| 969 |
+
return sprintf(($https ? 'https' : 'http').'://%s/%s?AWSAccessKeyId=%s&Expires=%u&Signature=%s',
|
| 970 |
+
$hostBucket ? $bucket : $bucket.'.s3.amazonaws.com', $uri, self::$__accessKey, $expires,
|
| 971 |
+
urlencode(self::__getHash("GET\n\n\n{$expires}\n/{$bucket}/{$uri}")));
|
| 972 |
+
}
|
| 973 |
+
|
| 974 |
+
|
| 975 |
+
/**
|
| 976 |
+
* Get a CloudFront signed policy URL
|
| 977 |
+
*
|
| 978 |
+
* @param array $policy Policy
|
| 979 |
+
* @return string
|
| 980 |
+
*/
|
| 981 |
+
public static function getSignedPolicyURL($policy)
|
| 982 |
+
{
|
| 983 |
+
$data = json_encode($policy);
|
| 984 |
+
$signature = '';
|
| 985 |
+
if (!openssl_sign($data, $signature, self::$__signingKeyResource)) return false;
|
| 986 |
+
|
| 987 |
+
$encoded = str_replace(array('+', '='), array('-', '_', '~'), base64_encode($data));
|
| 988 |
+
$signature = str_replace(array('+', '='), array('-', '_', '~'), base64_encode($signature));
|
| 989 |
+
|
| 990 |
+
$url = $policy['Statement'][0]['Resource'] . '?';
|
| 991 |
+
|
| 992 |
+
foreach (array('Policy' => $encoded, 'Signature' => $signature, 'Key-Pair-Id' => self::$__signingKeyPairId) as $k => $v)
|
| 993 |
+
$url .= $k.'='.str_replace('%2F', '/', rawurlencode($v)).'&';
|
| 994 |
+
return substr($url, 0, -1);
|
| 995 |
+
}
|
| 996 |
+
|
| 997 |
+
|
| 998 |
+
/**
|
| 999 |
+
* Get a CloudFront canned policy URL
|
| 1000 |
+
*
|
| 1001 |
+
* @param string $string URL to sign
|
| 1002 |
+
* @param integer $lifetime URL lifetime
|
| 1003 |
+
* @return string
|
| 1004 |
+
*/
|
| 1005 |
+
public static function getSignedCannedURL($url, $lifetime)
|
| 1006 |
+
{
|
| 1007 |
+
return self::getSignedPolicyURL(array(
|
| 1008 |
+
'Statement' => array(
|
| 1009 |
+
array('Resource' => $url, 'Condition' => array(
|
| 1010 |
+
'DateLessThan' => array('AWS:EpochTime' => time() + $lifetime)
|
| 1011 |
+
))
|
| 1012 |
+
)
|
| 1013 |
+
));
|
| 1014 |
+
}
|
| 1015 |
+
|
| 1016 |
+
|
| 1017 |
+
/**
|
| 1018 |
+
* Get upload POST parameters for form uploads
|
| 1019 |
+
*
|
| 1020 |
+
* @param string $bucket Bucket name
|
| 1021 |
+
* @param string $uriPrefix Object URI prefix
|
| 1022 |
+
* @param constant $acl ACL constant
|
| 1023 |
+
* @param integer $lifetime Lifetime in seconds
|
| 1024 |
+
* @param integer $maxFileSize Maximum filesize in bytes (default 5MB)
|
| 1025 |
+
* @param string $successRedirect Redirect URL or 200 / 201 status code
|
| 1026 |
+
* @param array $amzHeaders Array of x-amz-meta-* headers
|
| 1027 |
+
* @param array $headers Array of request headers or content type as a string
|
| 1028 |
+
* @param boolean $flashVars Includes additional "Filename" variable posted by Flash
|
| 1029 |
+
* @return object
|
| 1030 |
+
*/
|
| 1031 |
+
public static function getHttpUploadPostParams($bucket, $uriPrefix = '', $acl = self::ACL_PRIVATE, $lifetime = 3600,
|
| 1032 |
+
$maxFileSize = 5242880, $successRedirect = "201", $amzHeaders = array(), $headers = array(), $flashVars = false)
|
| 1033 |
+
{
|
| 1034 |
+
// Create policy object
|
| 1035 |
+
$policy = new stdClass;
|
| 1036 |
+
$policy->expiration = gmdate('Y-m-d\TH:i:s\Z', (time() + $lifetime));
|
| 1037 |
+
$policy->conditions = array();
|
| 1038 |
+
$obj = new stdClass; $obj->bucket = $bucket; array_push($policy->conditions, $obj);
|
| 1039 |
+
$obj = new stdClass; $obj->acl = $acl; array_push($policy->conditions, $obj);
|
| 1040 |
+
|
| 1041 |
+
$obj = new stdClass; // 200 for non-redirect uploads
|
| 1042 |
+
if (is_numeric($successRedirect) && in_array((int)$successRedirect, array(200, 201)))
|
| 1043 |
+
$obj->success_action_status = (string)$successRedirect;
|
| 1044 |
+
else // URL
|
| 1045 |
+
$obj->success_action_redirect = $successRedirect;
|
| 1046 |
+
array_push($policy->conditions, $obj);
|
| 1047 |
+
|
| 1048 |
+
if ($acl !== self::ACL_PUBLIC_READ)
|
| 1049 |
+
array_push($policy->conditions, array('eq', '$acl', $acl));
|
| 1050 |
+
|
| 1051 |
+
array_push($policy->conditions, array('starts-with', '$key', $uriPrefix));
|
| 1052 |
+
if ($flashVars) array_push($policy->conditions, array('starts-with', '$Filename', ''));
|
| 1053 |
+
foreach (array_keys($headers) as $headerKey)
|
| 1054 |
+
array_push($policy->conditions, array('starts-with', '$'.$headerKey, ''));
|
| 1055 |
+
foreach ($amzHeaders as $headerKey => $headerVal)
|
| 1056 |
+
{
|
| 1057 |
+
$obj = new stdClass;
|
| 1058 |
+
$obj->{$headerKey} = (string)$headerVal;
|
| 1059 |
+
array_push($policy->conditions, $obj);
|
| 1060 |
+
}
|
| 1061 |
+
array_push($policy->conditions, array('content-length-range', 0, $maxFileSize));
|
| 1062 |
+
$policy = base64_encode(str_replace('\/', '/', json_encode($policy)));
|
| 1063 |
+
|
| 1064 |
+
// Create parameters
|
| 1065 |
+
$params = new stdClass;
|
| 1066 |
+
$params->AWSAccessKeyId = self::$__accessKey;
|
| 1067 |
+
$params->key = $uriPrefix.'${filename}';
|
| 1068 |
+
$params->acl = $acl;
|
| 1069 |
+
$params->policy = $policy; unset($policy);
|
| 1070 |
+
$params->signature = self::__getHash($params->policy);
|
| 1071 |
+
if (is_numeric($successRedirect) && in_array((int)$successRedirect, array(200, 201)))
|
| 1072 |
+
$params->success_action_status = (string)$successRedirect;
|
| 1073 |
+
else
|
| 1074 |
+
$params->success_action_redirect = $successRedirect;
|
| 1075 |
+
foreach ($headers as $headerKey => $headerVal) $params->{$headerKey} = (string)$headerVal;
|
| 1076 |
+
foreach ($amzHeaders as $headerKey => $headerVal) $params->{$headerKey} = (string)$headerVal;
|
| 1077 |
+
return $params;
|
| 1078 |
+
}
|
| 1079 |
+
|
| 1080 |
+
|
| 1081 |
+
/**
|
| 1082 |
+
* Create a CloudFront distribution
|
| 1083 |
+
*
|
| 1084 |
+
* @param string $bucket Bucket name
|
| 1085 |
+
* @param boolean $enabled Enabled (true/false)
|
| 1086 |
+
* @param array $cnames Array containing CNAME aliases
|
| 1087 |
+
* @param string $comment Use the bucket name as the hostname
|
| 1088 |
+
* @param string $defaultRootObject Default root object
|
| 1089 |
+
* @param string $originAccessIdentity Origin access identity
|
| 1090 |
+
* @param array $trustedSigners Array of trusted signers
|
| 1091 |
+
* @return array | false
|
| 1092 |
+
*/
|
| 1093 |
+
public static function createDistribution($bucket, $enabled = true, $cnames = array(), $comment = null, $defaultRootObject = null, $originAccessIdentity = null, $trustedSigners = array())
|
| 1094 |
+
{
|
| 1095 |
+
if (!extension_loaded('openssl'))
|
| 1096 |
+
{
|
| 1097 |
+
self::__triggerError(sprintf("S3::createDistribution({$bucket}, ".(int)$enabled.", [], '$comment'): %s",
|
| 1098 |
+
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1099 |
+
return false;
|
| 1100 |
+
}
|
| 1101 |
+
$useSSL = self::$useSSL;
|
| 1102 |
+
|
| 1103 |
+
self::$useSSL = true; // CloudFront requires SSL
|
| 1104 |
+
$rest = new S3Request('POST', '', '2010-11-01/distribution', 'cloudfront.amazonaws.com');
|
| 1105 |
+
$rest->data = self::__getCloudFrontDistributionConfigXML(
|
| 1106 |
+
$bucket.'.s3.amazonaws.com',
|
| 1107 |
+
$enabled,
|
| 1108 |
+
(string)$comment,
|
| 1109 |
+
(string)microtime(true),
|
| 1110 |
+
$cnames,
|
| 1111 |
+
$defaultRootObject,
|
| 1112 |
+
$originAccessIdentity,
|
| 1113 |
+
$trustedSigners
|
| 1114 |
+
);
|
| 1115 |
+
|
| 1116 |
+
$rest->size = strlen($rest->data);
|
| 1117 |
+
$rest->setHeader('Content-Type', 'application/xml');
|
| 1118 |
+
$rest = self::__getCloudFrontResponse($rest);
|
| 1119 |
+
|
| 1120 |
+
self::$useSSL = $useSSL;
|
| 1121 |
+
|
| 1122 |
+
if ($rest->error === false && $rest->code !== 201)
|
| 1123 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1124 |
+
if ($rest->error !== false)
|
| 1125 |
+
{
|
| 1126 |
+
self::__triggerError(sprintf("S3::createDistribution({$bucket}, ".(int)$enabled.", [], '$comment'): [%s] %s",
|
| 1127 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 1128 |
+
return false;
|
| 1129 |
+
} elseif ($rest->body instanceof SimpleXMLElement)
|
| 1130 |
+
return self::__parseCloudFrontDistributionConfig($rest->body);
|
| 1131 |
+
return false;
|
| 1132 |
+
}
|
| 1133 |
+
|
| 1134 |
+
|
| 1135 |
+
/**
|
| 1136 |
+
* Get CloudFront distribution info
|
| 1137 |
+
*
|
| 1138 |
+
* @param string $distributionId Distribution ID from listDistributions()
|
| 1139 |
+
* @return array | false
|
| 1140 |
+
*/
|
| 1141 |
+
public static function getDistribution($distributionId)
|
| 1142 |
+
{
|
| 1143 |
+
if (!extension_loaded('openssl'))
|
| 1144 |
+
{
|
| 1145 |
+
self::__triggerError(sprintf("S3::getDistribution($distributionId): %s",
|
| 1146 |
+
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1147 |
+
return false;
|
| 1148 |
+
}
|
| 1149 |
+
$useSSL = self::$useSSL;
|
| 1150 |
+
|
| 1151 |
+
self::$useSSL = true; // CloudFront requires SSL
|
| 1152 |
+
$rest = new S3Request('GET', '', '2010-11-01/distribution/'.$distributionId, 'cloudfront.amazonaws.com');
|
| 1153 |
+
$rest = self::__getCloudFrontResponse($rest);
|
| 1154 |
+
|
| 1155 |
+
self::$useSSL = $useSSL;
|
| 1156 |
+
|
| 1157 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 1158 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1159 |
+
if ($rest->error !== false)
|
| 1160 |
+
{
|
| 1161 |
+
self::__triggerError(sprintf("S3::getDistribution($distributionId): [%s] %s",
|
| 1162 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 1163 |
+
return false;
|
| 1164 |
+
}
|
| 1165 |
+
elseif ($rest->body instanceof SimpleXMLElement)
|
| 1166 |
+
{
|
| 1167 |
+
$dist = self::__parseCloudFrontDistributionConfig($rest->body);
|
| 1168 |
+
$dist['hash'] = $rest->headers['hash'];
|
| 1169 |
+
$dist['id'] = $distributionId;
|
| 1170 |
+
return $dist;
|
| 1171 |
+
}
|
| 1172 |
+
return false;
|
| 1173 |
+
}
|
| 1174 |
+
|
| 1175 |
+
|
| 1176 |
+
/**
|
| 1177 |
+
* Update a CloudFront distribution
|
| 1178 |
+
*
|
| 1179 |
+
* @param array $dist Distribution array info identical to output of getDistribution()
|
| 1180 |
+
* @return array | false
|
| 1181 |
+
*/
|
| 1182 |
+
public static function updateDistribution($dist)
|
| 1183 |
+
{
|
| 1184 |
+
if (!extension_loaded('openssl'))
|
| 1185 |
+
{
|
| 1186 |
+
self::__triggerError(sprintf("S3::updateDistribution({$dist['id']}): %s",
|
| 1187 |
+
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1188 |
+
return false;
|
| 1189 |
+
}
|
| 1190 |
+
|
| 1191 |
+
$useSSL = self::$useSSL;
|
| 1192 |
+
|
| 1193 |
+
self::$useSSL = true; // CloudFront requires SSL
|
| 1194 |
+
$rest = new S3Request('PUT', '', '2010-11-01/distribution/'.$dist['id'].'/config', 'cloudfront.amazonaws.com');
|
| 1195 |
+
$rest->data = self::__getCloudFrontDistributionConfigXML(
|
| 1196 |
+
$dist['origin'],
|
| 1197 |
+
$dist['enabled'],
|
| 1198 |
+
$dist['comment'],
|
| 1199 |
+
$dist['callerReference'],
|
| 1200 |
+
$dist['cnames'],
|
| 1201 |
+
$dist['defaultRootObject'],
|
| 1202 |
+
$dist['originAccessIdentity'],
|
| 1203 |
+
$dist['trustedSigners']
|
| 1204 |
+
);
|
| 1205 |
+
|
| 1206 |
+
$rest->size = strlen($rest->data);
|
| 1207 |
+
$rest->setHeader('If-Match', $dist['hash']);
|
| 1208 |
+
$rest = self::__getCloudFrontResponse($rest);
|
| 1209 |
+
|
| 1210 |
+
self::$useSSL = $useSSL;
|
| 1211 |
+
|
| 1212 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 1213 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1214 |
+
if ($rest->error !== false)
|
| 1215 |
+
{
|
| 1216 |
+
self::__triggerError(sprintf("S3::updateDistribution({$dist['id']}): [%s] %s",
|
| 1217 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 1218 |
+
return false;
|
| 1219 |
+
} else {
|
| 1220 |
+
$dist = self::__parseCloudFrontDistributionConfig($rest->body);
|
| 1221 |
+
$dist['hash'] = $rest->headers['hash'];
|
| 1222 |
+
return $dist;
|
| 1223 |
+
}
|
| 1224 |
+
return false;
|
| 1225 |
+
}
|
| 1226 |
+
|
| 1227 |
+
|
| 1228 |
+
/**
|
| 1229 |
+
* Delete a CloudFront distribution
|
| 1230 |
+
*
|
| 1231 |
+
* @param array $dist Distribution array info identical to output of getDistribution()
|
| 1232 |
+
* @return boolean
|
| 1233 |
+
*/
|
| 1234 |
+
public static function deleteDistribution($dist)
|
| 1235 |
+
{
|
| 1236 |
+
if (!extension_loaded('openssl'))
|
| 1237 |
+
{
|
| 1238 |
+
self::__triggerError(sprintf("S3::deleteDistribution({$dist['id']}): %s",
|
| 1239 |
+
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1240 |
+
return false;
|
| 1241 |
+
}
|
| 1242 |
+
|
| 1243 |
+
$useSSL = self::$useSSL;
|
| 1244 |
+
|
| 1245 |
+
self::$useSSL = true; // CloudFront requires SSL
|
| 1246 |
+
$rest = new S3Request('DELETE', '', '2008-06-30/distribution/'.$dist['id'], 'cloudfront.amazonaws.com');
|
| 1247 |
+
$rest->setHeader('If-Match', $dist['hash']);
|
| 1248 |
+
$rest = self::__getCloudFrontResponse($rest);
|
| 1249 |
+
|
| 1250 |
+
self::$useSSL = $useSSL;
|
| 1251 |
+
|
| 1252 |
+
if ($rest->error === false && $rest->code !== 204)
|
| 1253 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1254 |
+
if ($rest->error !== false)
|
| 1255 |
+
{
|
| 1256 |
+
self::__triggerError(sprintf("S3::deleteDistribution({$dist['id']}): [%s] %s",
|
| 1257 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 1258 |
+
return false;
|
| 1259 |
+
}
|
| 1260 |
+
return true;
|
| 1261 |
+
}
|
| 1262 |
+
|
| 1263 |
+
|
| 1264 |
+
/**
|
| 1265 |
+
* Get a list of CloudFront distributions
|
| 1266 |
+
*
|
| 1267 |
+
* @return array
|
| 1268 |
+
*/
|
| 1269 |
+
public static function listDistributions()
|
| 1270 |
+
{
|
| 1271 |
+
if (!extension_loaded('openssl'))
|
| 1272 |
+
{
|
| 1273 |
+
self::__triggerError(sprintf("S3::listDistributions(): [%s] %s",
|
| 1274 |
+
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1275 |
+
return false;
|
| 1276 |
+
}
|
| 1277 |
+
|
| 1278 |
+
$useSSL = self::$useSSL;
|
| 1279 |
+
self::$useSSL = true; // CloudFront requires SSL
|
| 1280 |
+
$rest = new S3Request('GET', '', '2010-11-01/distribution', 'cloudfront.amazonaws.com');
|
| 1281 |
+
$rest = self::__getCloudFrontResponse($rest);
|
| 1282 |
+
self::$useSSL = $useSSL;
|
| 1283 |
+
|
| 1284 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 1285 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1286 |
+
if ($rest->error !== false)
|
| 1287 |
+
{
|
| 1288 |
+
self::__triggerError(sprintf("S3::listDistributions(): [%s] %s",
|
| 1289 |
+
$rest->error['code'], $rest->error['message']), __FILE__, __LINE__);
|
| 1290 |
+
return false;
|
| 1291 |
+
}
|
| 1292 |
+
elseif ($rest->body instanceof SimpleXMLElement && isset($rest->body->DistributionSummary))
|
| 1293 |
+
{
|
| 1294 |
+
$list = array();
|
| 1295 |
+
if (isset($rest->body->Marker, $rest->body->MaxItems, $rest->body->IsTruncated))
|
| 1296 |
+
{
|
| 1297 |
+
//$info['marker'] = (string)$rest->body->Marker;
|
| 1298 |
+
//$info['maxItems'] = (int)$rest->body->MaxItems;
|
| 1299 |
+
//$info['isTruncated'] = (string)$rest->body->IsTruncated == 'true' ? true : false;
|
| 1300 |
+
}
|
| 1301 |
+
foreach ($rest->body->DistributionSummary as $summary)
|
| 1302 |
+
$list[(string)$summary->Id] = self::__parseCloudFrontDistributionConfig($summary);
|
| 1303 |
+
|
| 1304 |
+
return $list;
|
| 1305 |
+
}
|
| 1306 |
+
return array();
|
| 1307 |
+
}
|
| 1308 |
+
|
| 1309 |
+
/**
|
| 1310 |
+
* List CloudFront Origin Access Identities
|
| 1311 |
+
*
|
| 1312 |
+
* @return array
|
| 1313 |
+
*/
|
| 1314 |
+
public static function listOriginAccessIdentities()
|
| 1315 |
+
{
|
| 1316 |
+
if (!extension_loaded('openssl'))
|
| 1317 |
+
{
|
| 1318 |
+
self::__triggerError(sprintf("S3::listOriginAccessIdentities(): [%s] %s",
|
| 1319 |
+
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1320 |
+
return false;
|
| 1321 |
+
}
|
| 1322 |
+
|
| 1323 |
+
self::$useSSL = true; // CloudFront requires SSL
|
| 1324 |
+
$rest = new S3Request('GET', '', '2010-11-01/origin-access-identity/cloudfront', 'cloudfront.amazonaws.com');
|
| 1325 |
+
$rest = self::__getCloudFrontResponse($rest);
|
| 1326 |
+
$useSSL = self::$useSSL;
|
| 1327 |
+
|
| 1328 |
+
if ($rest->error === false && $rest->code !== 200)
|
| 1329 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1330 |
+
if ($rest->error !== false)
|
| 1331 |
+
{
|
| 1332 |
+
trigger_error(sprintf("S3::listOriginAccessIdentities(): [%s] %s",
|
| 1333 |
+
$rest->error['code'], $rest->error['message']), E_USER_WARNING);
|
| 1334 |
+
return false;
|
| 1335 |
+
}
|
| 1336 |
+
|
| 1337 |
+
if (isset($rest->body->CloudFrontOriginAccessIdentitySummary))
|
| 1338 |
+
{
|
| 1339 |
+
$identities = array();
|
| 1340 |
+
foreach ($rest->body->CloudFrontOriginAccessIdentitySummary as $identity)
|
| 1341 |
+
if (isset($identity->S3CanonicalUserId))
|
| 1342 |
+
$identities[(string)$identity->Id] = array('id' => (string)$identity->Id, 's3CanonicalUserId' => (string)$identity->S3CanonicalUserId);
|
| 1343 |
+
return $identities;
|
| 1344 |
+
}
|
| 1345 |
+
return false;
|
| 1346 |
+
}
|
| 1347 |
+
|
| 1348 |
+
|
| 1349 |
+
/**
|
| 1350 |
+
* Invalidate objects in a CloudFront distribution
|
| 1351 |
+
*
|
| 1352 |
+
* Thanks to Martin Lindkvist for S3::invalidateDistribution()
|
| 1353 |
+
*
|
| 1354 |
+
* @param string $distributionId Distribution ID from listDistributions()
|
| 1355 |
+
* @param array $paths Array of object paths to invalidate
|
| 1356 |
+
* @return boolean
|
| 1357 |
+
*/
|
| 1358 |
+
public static function invalidateDistribution($distributionId, $paths)
|
| 1359 |
+
{
|
| 1360 |
+
if (!extension_loaded('openssl'))
|
| 1361 |
+
{
|
| 1362 |
+
self::__triggerError(sprintf("S3::invalidateDistribution(): [%s] %s",
|
| 1363 |
+
"CloudFront functionality requires SSL"), __FILE__, __LINE__);
|
| 1364 |
+
return false;
|
| 1365 |
+
}
|
| 1366 |
+
|
| 1367 |
+
$useSSL = self::$useSSL;
|
| 1368 |
+
self::$useSSL = true; // CloudFront requires SSL
|
| 1369 |
+
$rest = new S3Request('POST', '', '2010-08-01/distribution/'.$distributionId.'/invalidation', 'cloudfront.amazonaws.com');
|
| 1370 |
+
$rest->data = self::__getCloudFrontInvalidationBatchXML($paths, (string)microtime(true));
|
| 1371 |
+
$rest->size = strlen($rest->data);
|
| 1372 |
+
$rest = self::__getCloudFrontResponse($rest);
|
| 1373 |
+
self::$useSSL = $useSSL;
|
| 1374 |
+
|
| 1375 |
+
if ($rest->error === false && $rest->code !== 201)
|
| 1376 |
+
$rest->error = array('code' => $rest->code, 'message' => 'Unexpected HTTP status');
|
| 1377 |
+
if ($rest->error !== false)
|
| 1378 |
+
{
|
| 1379 |
+
trigger_error(sprintf("S3::invalidate('{$distributionId}',{$paths}): [%s] %s",
|
| 1380 |
+
$rest->error['code'], $rest->error['message']), E_USER_WARNING);
|
| 1381 |
+
return false;
|
| 1382 |
+
}
|
| 1383 |
+
return true;
|
| 1384 |
+
}
|
| 1385 |
+
|
| 1386 |
+
|
| 1387 |
+
/**
|
| 1388 |
+
* Get a InvalidationBatch DOMDocument
|
| 1389 |
+
*
|
| 1390 |
+
* @internal Used to create XML in invalidateDistribution()
|
| 1391 |
+
* @param array $paths Paths to objects to invalidateDistribution
|
| 1392 |
+
* @return string
|
| 1393 |
+
*/
|
| 1394 |
+
private static function __getCloudFrontInvalidationBatchXML($paths, $callerReference = '0') {
|
| 1395 |
+
$dom = new DOMDocument('1.0', 'UTF-8');
|
| 1396 |
+
$dom->formatOutput = true;
|
| 1397 |
+
$invalidationBatch = $dom->createElement('InvalidationBatch');
|
| 1398 |
+
foreach ($paths as $path)
|
| 1399 |
+
$invalidationBatch->appendChild($dom->createElement('Path', $path));
|
| 1400 |
+
|
| 1401 |
+
$invalidationBatch->appendChild($dom->createElement('CallerReference', $callerReference));
|
| 1402 |
+
$dom->appendChild($invalidationBatch);
|
| 1403 |
+
return $dom->saveXML();
|
| 1404 |
+
}
|
| 1405 |
+
|
| 1406 |
+
|
| 1407 |
+
/**
|
| 1408 |
+
* Get a DistributionConfig DOMDocument
|
| 1409 |
+
*
|
| 1410 |
+
* http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/index.html?PutConfig.html
|
| 1411 |
+
*
|
| 1412 |
+
* @internal Used to create XML in createDistribution() and updateDistribution()
|
| 1413 |
+
* @param string $bucket S3 Origin bucket
|
| 1414 |
+
* @param boolean $enabled Enabled (true/false)
|
| 1415 |
+
* @param string $comment Comment to append
|
| 1416 |
+
* @param string $callerReference Caller reference
|
| 1417 |
+
* @param array $cnames Array of CNAME aliases
|
| 1418 |
+
* @param string $defaultRootObject Default root object
|
| 1419 |
+
* @param string $originAccessIdentity Origin access identity
|
| 1420 |
+
* @param array $trustedSigners Array of trusted signers
|
| 1421 |
+
* @return string
|
| 1422 |
+
*/
|
| 1423 |
+
private static function __getCloudFrontDistributionConfigXML($bucket, $enabled, $comment, $callerReference = '0', $cnames = array(), $defaultRootObject = null, $originAccessIdentity = null, $trustedSigners = array())
|
| 1424 |
+
{
|
| 1425 |
+
$dom = new DOMDocument('1.0', 'UTF-8');
|
| 1426 |
+
$dom->formatOutput = true;
|
| 1427 |
+
$distributionConfig = $dom->createElement('DistributionConfig');
|
| 1428 |
+
$distributionConfig->setAttribute('xmlns', 'http://cloudfront.amazonaws.com/doc/2010-11-01/');
|
| 1429 |
+
|
| 1430 |
+
$origin = $dom->createElement('S3Origin');
|
| 1431 |
+
$origin->appendChild($dom->createElement('DNSName', $bucket));
|
| 1432 |
+
if ($originAccessIdentity !== null) $origin->appendChild($dom->createElement('OriginAccessIdentity', $originAccessIdentity));
|
| 1433 |
+
$distributionConfig->appendChild($origin);
|
| 1434 |
+
|
| 1435 |
+
if ($defaultRootObject !== null) $distributionConfig->appendChild($dom->createElement('DefaultRootObject', $defaultRootObject));
|
| 1436 |
+
|
| 1437 |
+
$distributionConfig->appendChild($dom->createElement('CallerReference', $callerReference));
|
| 1438 |
+
foreach ($cnames as $cname)
|
| 1439 |
+
$distributionConfig->appendChild($dom->createElement('CNAME', $cname));
|
| 1440 |
+
if ($comment !== '') $distributionConfig->appendChild($dom->createElement('Comment', $comment));
|
| 1441 |
+
$distributionConfig->appendChild($dom->createElement('Enabled', $enabled ? 'true' : 'false'));
|
| 1442 |
+
|
| 1443 |
+
$trusted = $dom->createElement('TrustedSigners');
|
| 1444 |
+
foreach ($trustedSigners as $id => $type)
|
| 1445 |
+
$trusted->appendChild($id !== '' ? $dom->createElement($type, $id) : $dom->createElement($type));
|
| 1446 |
+
$distributionConfig->appendChild($trusted);
|
| 1447 |
+
|
| 1448 |
+
$dom->appendChild($distributionConfig);
|
| 1449 |
+
//var_dump($dom->saveXML());
|
| 1450 |
+
return $dom->saveXML();
|
| 1451 |
+
}
|
| 1452 |
+
|
| 1453 |
+
|
| 1454 |
+
/**
|
| 1455 |
+
* Parse a CloudFront distribution config
|
| 1456 |
+
*
|
| 1457 |
+
* See http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/index.html?GetDistribution.html
|
| 1458 |
+
*
|
| 1459 |
+
* @internal Used to parse the CloudFront DistributionConfig node to an array
|
| 1460 |
+
* @param object &$node DOMNode
|
| 1461 |
+
* @return array
|
| 1462 |
+
*/
|
| 1463 |
+
private static function __parseCloudFrontDistributionConfig(&$node)
|
| 1464 |
+
{
|
| 1465 |
+
if (isset($node->DistributionConfig))
|
| 1466 |
+
return self::__parseCloudFrontDistributionConfig($node->DistributionConfig);
|
| 1467 |
+
|
| 1468 |
+
$dist = array();
|
| 1469 |
+
if (isset($node->Id, $node->Status, $node->LastModifiedTime, $node->DomainName))
|
| 1470 |
+
{
|
| 1471 |
+
$dist['id'] = (string)$node->Id;
|
| 1472 |
+
$dist['status'] = (string)$node->Status;
|
| 1473 |
+
$dist['time'] = strtotime((string)$node->LastModifiedTime);
|
| 1474 |
+
$dist['domain'] = (string)$node->DomainName;
|
| 1475 |
+
}
|
| 1476 |
+
|
| 1477 |
+
if (isset($node->CallerReference))
|
| 1478 |
+
$dist['callerReference'] = (string)$node->CallerReference;
|
| 1479 |
+
|
| 1480 |
+
if (isset($node->Enabled))
|
| 1481 |
+
$dist['enabled'] = (string)$node->Enabled == 'true' ? true : false;
|
| 1482 |
+
|
| 1483 |
+
if (isset($node->S3Origin))
|
| 1484 |
+
{
|
| 1485 |
+
if (isset($node->S3Origin->DNSName))
|
| 1486 |
+
$dist['origin'] = (string)$node->S3Origin->DNSName;
|
| 1487 |
+
|
| 1488 |
+
$dist['originAccessIdentity'] = isset($node->S3Origin->OriginAccessIdentity) ?
|
| 1489 |
+
(string)$node->S3Origin->OriginAccessIdentity : null;
|
| 1490 |
+
}
|
| 1491 |
+
|
| 1492 |
+
$dist['defaultRootObject'] = isset($node->DefaultRootObject) ? (string)$node->DefaultRootObject : null;
|
| 1493 |
+
|
| 1494 |
+
$dist['cnames'] = array();
|
| 1495 |
+
if (isset($node->CNAME))
|
| 1496 |
+
foreach ($node->CNAME as $cname)
|
| 1497 |
+
$dist['cnames'][(string)$cname] = (string)$cname;
|
| 1498 |
+
|
| 1499 |
+
$dist['trustedSigners'] = array();
|
| 1500 |
+
if (isset($node->TrustedSigners))
|
| 1501 |
+
foreach ($node->TrustedSigners as $signer)
|
| 1502 |
+
{
|
| 1503 |
+
if (isset($signer->Self))
|
| 1504 |
+
$dist['trustedSigners'][''] = 'Self';
|
| 1505 |
+
elseif (isset($signer->KeyPairId))
|
| 1506 |
+
$dist['trustedSigners'][(string)$signer->KeyPairId] = 'KeyPairId';
|
| 1507 |
+
elseif (isset($signer->AwsAccountNumber))
|
| 1508 |
+
$dist['trustedSigners'][(string)$signer->AwsAccountNumber] = 'AwsAccountNumber';
|
| 1509 |
+
}
|
| 1510 |
+
|
| 1511 |
+
$dist['comment'] = isset($node->Comment) ? (string)$node->Comment : null;
|
| 1512 |
+
return $dist;
|
| 1513 |
+
}
|
| 1514 |
+
|
| 1515 |
+
|
| 1516 |
+
/**
|
| 1517 |
+
* Grab CloudFront response
|
| 1518 |
+
*
|
| 1519 |
+
* @internal Used to parse the CloudFront S3Request::getResponse() output
|
| 1520 |
+
* @param object &$rest S3Request instance
|
| 1521 |
+
* @return object
|
| 1522 |
+
*/
|
| 1523 |
+
private static function __getCloudFrontResponse(&$rest)
|
| 1524 |
+
{
|
| 1525 |
+
$rest->getResponse();
|
| 1526 |
+
if ($rest->response->error === false && isset($rest->response->body) &&
|
| 1527 |
+
is_string($rest->response->body) && substr($rest->response->body, 0, 5) == '<?xml')
|
| 1528 |
+
{
|
| 1529 |
+
$rest->response->body = simplexml_load_string($rest->response->body);
|
| 1530 |
+
// Grab CloudFront errors
|
| 1531 |
+
if (isset($rest->response->body->Error, $rest->response->body->Error->Code,
|
| 1532 |
+
$rest->response->body->Error->Message))
|
| 1533 |
+
{
|
| 1534 |
+
$rest->response->error = array(
|
| 1535 |
+
'code' => (string)$rest->response->body->Error->Code,
|
| 1536 |
+
'message' => (string)$rest->response->body->Error->Message
|
| 1537 |
+
);
|
| 1538 |
+
unset($rest->response->body);
|
| 1539 |
+
}
|
| 1540 |
+
}
|
| 1541 |
+
return $rest->response;
|
| 1542 |
+
}
|
| 1543 |
+
|
| 1544 |
+
|
| 1545 |
+
/**
|
| 1546 |
+
* Get MIME type for file
|
| 1547 |
+
*
|
| 1548 |
+
* @internal Used to get mime types
|
| 1549 |
+
* @param string &$file File path
|
| 1550 |
+
* @return string
|
| 1551 |
+
*/
|
| 1552 |
+
public static function __getMimeType(&$file)
|
| 1553 |
+
{
|
| 1554 |
+
$type = false;
|
| 1555 |
+
// Fileinfo documentation says fileinfo_open() will use the
|
| 1556 |
+
// MAGIC env var for the magic file
|
| 1557 |
+
if (extension_loaded('fileinfo') && isset($_ENV['MAGIC']) &&
|
| 1558 |
+
($finfo = finfo_open(FILEINFO_MIME, $_ENV['MAGIC'])) !== false)
|
| 1559 |
+
{
|
| 1560 |
+
if (($type = finfo_file($finfo, $file)) !== false)
|
| 1561 |
+
{
|
| 1562 |
+
// Remove the charset and grab the last content-type
|
| 1563 |
+
$type = explode(' ', str_replace('; charset=', ';charset=', $type));
|
| 1564 |
+
$type = array_pop($type);
|
| 1565 |
+
$type = explode(';', $type);
|
| 1566 |
+
$type = trim(array_shift($type));
|
| 1567 |
+
}
|
| 1568 |
+
finfo_close($finfo);
|
| 1569 |
+
|
| 1570 |
+
// If anyone is still using mime_content_type()
|
| 1571 |
+
} elseif (function_exists('mime_content_type'))
|
| 1572 |
+
$type = trim(mime_content_type($file));
|
| 1573 |
+
|
| 1574 |
+
if ($type !== false && strlen($type) > 0) return $type;
|
| 1575 |
+
|
| 1576 |
+
// Otherwise do it the old fashioned way
|
| 1577 |
+
static $exts = array(
|
| 1578 |
+
'jpg' => 'image/jpeg', 'gif' => 'image/gif', 'png' => 'image/png',
|
| 1579 |
+
'tif' => 'image/tiff', 'tiff' => 'image/tiff', 'ico' => 'image/x-icon',
|
| 1580 |
+
'swf' => 'application/x-shockwave-flash', 'pdf' => 'application/pdf',
|
| 1581 |
+
'zip' => 'application/zip', 'gz' => 'application/x-gzip',
|
| 1582 |
+
'tar' => 'application/x-tar', 'bz' => 'application/x-bzip',
|
| 1583 |
+
'bz2' => 'application/x-bzip2', 'txt' => 'text/plain',
|
| 1584 |
+
'asc' => 'text/plain', 'htm' => 'text/html', 'html' => 'text/html',
|
| 1585 |
+
'css' => 'text/css', 'js' => 'text/javascript',
|
| 1586 |
+
'xml' => 'text/xml', 'xsl' => 'application/xsl+xml',
|
| 1587 |
+
'ogg' => 'application/ogg', 'mp3' => 'audio/mpeg', 'wav' => 'audio/x-wav',
|
| 1588 |
+
'avi' => 'video/x-msvideo', 'mpg' => 'video/mpeg', 'mpeg' => 'video/mpeg',
|
| 1589 |
+
'mov' => 'video/quicktime', 'flv' => 'video/x-flv', 'php' => 'text/x-php'
|
| 1590 |
+
);
|
| 1591 |
+
$ext = strtolower(pathInfo($file, PATHINFO_EXTENSION));
|
| 1592 |
+
return isset($exts[$ext]) ? $exts[$ext] : 'application/octet-stream';
|
| 1593 |
+
}
|
| 1594 |
+
|
| 1595 |
+
|
| 1596 |
+
/**
|
| 1597 |
+
* Generate the auth string: "AWS AccessKey:Signature"
|
| 1598 |
+
*
|
| 1599 |
+
* @internal Used by S3Request::getResponse()
|
| 1600 |
+
* @param string $string String to sign
|
| 1601 |
+
* @return string
|
| 1602 |
+
*/
|
| 1603 |
+
public static function __getSignature($string)
|
| 1604 |
+
{
|
| 1605 |
+
return 'AWS '.self::$__accessKey.':'.self::__getHash($string);
|
| 1606 |
+
}
|
| 1607 |
+
|
| 1608 |
+
|
| 1609 |
+
/**
|
| 1610 |
+
* Creates a HMAC-SHA1 hash
|
| 1611 |
+
*
|
| 1612 |
+
* This uses the hash extension if loaded
|
| 1613 |
+
*
|
| 1614 |
+
* @internal Used by __getSignature()
|
| 1615 |
+
* @param string $string String to sign
|
| 1616 |
+
* @return string
|
| 1617 |
+
*/
|
| 1618 |
+
private static function __getHash($string)
|
| 1619 |
+
{
|
| 1620 |
+
return base64_encode(extension_loaded('hash') ?
|
| 1621 |
+
hash_hmac('sha1', $string, self::$__secretKey, true) : pack('H*', sha1(
|
| 1622 |
+
(str_pad(self::$__secretKey, 64, chr(0x00)) ^ (str_repeat(chr(0x5c), 64))) .
|
| 1623 |
+
pack('H*', sha1((str_pad(self::$__secretKey, 64, chr(0x00)) ^
|
| 1624 |
+
(str_repeat(chr(0x36), 64))) . $string)))));
|
| 1625 |
+
}
|
| 1626 |
+
|
| 1627 |
+
}
|
| 1628 |
+
|
| 1629 |
+
final class S3Request
|
| 1630 |
+
{
|
| 1631 |
+
private $endpoint, $verb, $bucket, $uri, $resource = '', $parameters = array(),
|
| 1632 |
+
$amzHeaders = array(), $headers = array(
|
| 1633 |
+
'Host' => '', 'Date' => '', 'Content-MD5' => '', 'Content-Type' => ''
|
| 1634 |
+
);
|
| 1635 |
+
public $fp = false, $size = 0, $data = false, $response;
|
| 1636 |
+
|
| 1637 |
+
|
| 1638 |
+
/**
|
| 1639 |
+
* Constructor
|
| 1640 |
+
*
|
| 1641 |
+
* @param string $verb Verb
|
| 1642 |
+
* @param string $bucket Bucket name
|
| 1643 |
+
* @param string $uri Object URI
|
| 1644 |
+
* @return mixed
|
| 1645 |
+
*/
|
| 1646 |
+
function __construct($verb, $bucket = '', $uri = '', $endpoint = 's3.amazonaws.com')
|
| 1647 |
+
{
|
| 1648 |
+
$this->endpoint = $endpoint;
|
| 1649 |
+
$this->verb = $verb;
|
| 1650 |
+
$this->bucket = $bucket;
|
| 1651 |
+
$this->uri = $uri !== '' ? '/'.str_replace('%2F', '/', rawurlencode($uri)) : '/';
|
| 1652 |
+
|
| 1653 |
+
if ($this->bucket !== '')
|
| 1654 |
+
{
|
| 1655 |
+
$this->headers['Host'] = $this->bucket.'.'.$this->endpoint;
|
| 1656 |
+
$this->resource = '/'.$this->bucket.$this->uri;
|
| 1657 |
+
}
|
| 1658 |
+
else
|
| 1659 |
+
{
|
| 1660 |
+
$this->headers['Host'] = $this->endpoint;
|
| 1661 |
+
$this->resource = $this->uri;
|
| 1662 |
+
}
|
| 1663 |
+
$this->headers['Date'] = gmdate('D, d M Y H:i:s T');
|
| 1664 |
+
|
| 1665 |
+
$this->response = new STDClass;
|
| 1666 |
+
$this->response->error = false;
|
| 1667 |
+
}
|
| 1668 |
+
|
| 1669 |
+
|
| 1670 |
+
/**
|
| 1671 |
+
* Set request parameter
|
| 1672 |
+
*
|
| 1673 |
+
* @param string $key Key
|
| 1674 |
+
* @param string $value Value
|
| 1675 |
+
* @return void
|
| 1676 |
+
*/
|
| 1677 |
+
public function setParameter($key, $value)
|
| 1678 |
+
{
|
| 1679 |
+
$this->parameters[$key] = $value;
|
| 1680 |
+
}
|
| 1681 |
+
|
| 1682 |
+
|
| 1683 |
+
/**
|
| 1684 |
+
* Set request header
|
| 1685 |
+
*
|
| 1686 |
+
* @param string $key Key
|
| 1687 |
+
* @param string $value Value
|
| 1688 |
+
* @return void
|
| 1689 |
+
*/
|
| 1690 |
+
public function setHeader($key, $value)
|
| 1691 |
+
{
|
| 1692 |
+
$this->headers[$key] = $value;
|
| 1693 |
+
}
|
| 1694 |
+
|
| 1695 |
+
|
| 1696 |
+
/**
|
| 1697 |
+
* Set x-amz-meta-* header
|
| 1698 |
+
*
|
| 1699 |
+
* @param string $key Key
|
| 1700 |
+
* @param string $value Value
|
| 1701 |
+
* @return void
|
| 1702 |
+
*/
|
| 1703 |
+
public function setAmzHeader($key, $value)
|
| 1704 |
+
{
|
| 1705 |
+
$this->amzHeaders[$key] = $value;
|
| 1706 |
+
}
|
| 1707 |
+
|
| 1708 |
+
|
| 1709 |
+
/**
|
| 1710 |
+
* Get the S3 response
|
| 1711 |
+
*
|
| 1712 |
+
* @return object | false
|
| 1713 |
+
*/
|
| 1714 |
+
public function getResponse()
|
| 1715 |
+
{
|
| 1716 |
+
$query = '';
|
| 1717 |
+
if (sizeof($this->parameters) > 0)
|
| 1718 |
+
{
|
| 1719 |
+
$query = substr($this->uri, -1) !== '?' ? '?' : '&';
|
| 1720 |
+
foreach ($this->parameters as $var => $value)
|
| 1721 |
+
if ($value == null || $value == '') $query .= $var.'&';
|
| 1722 |
+
// Parameters should be encoded (thanks Sean O'Dea)
|
| 1723 |
+
else $query .= $var.'='.rawurlencode($value).'&';
|
| 1724 |
+
$query = substr($query, 0, -1);
|
| 1725 |
+
$this->uri .= $query;
|
| 1726 |
+
|
| 1727 |
+
if (array_key_exists('acl', $this->parameters) ||
|
| 1728 |
+
array_key_exists('location', $this->parameters) ||
|
| 1729 |
+
array_key_exists('torrent', $this->parameters) ||
|
| 1730 |
+
array_key_exists('logging', $this->parameters))
|
| 1731 |
+
$this->resource .= $query;
|
| 1732 |
+
}
|
| 1733 |
+
$url = (S3::$useSSL ? 'https://' : 'http://') . $this->headers['Host'].$this->uri;
|
| 1734 |
+
//var_dump($this->bucket, $this->uri, $this->resource, $url);
|
| 1735 |
+
|
| 1736 |
+
// Basic setup
|
| 1737 |
+
$curl = curl_init();
|
| 1738 |
+
curl_setopt($curl, CURLOPT_USERAGENT, 'S3/php');
|
| 1739 |
+
|
| 1740 |
+
if (S3::$useSSL)
|
| 1741 |
+
{
|
| 1742 |
+
// SSL Validation can now be optional for those with broken OpenSSL installations
|
| 1743 |
+
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, S3::$useSSLValidation ? 1 : 0);
|
| 1744 |
+
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, S3::$useSSLValidation ? 1 : 0);
|
| 1745 |
+
|
| 1746 |
+
if (S3::$sslKey !== null) curl_setopt($curl, CURLOPT_SSLKEY, S3::$sslKey);
|
| 1747 |
+
if (S3::$sslCert !== null) curl_setopt($curl, CURLOPT_SSLCERT, S3::$sslCert);
|
| 1748 |
+
if (S3::$sslCACert !== null) curl_setopt($curl, CURLOPT_CAINFO, S3::$sslCACert);
|
| 1749 |
+
}
|
| 1750 |
+
|
| 1751 |
+
curl_setopt($curl, CURLOPT_URL, $url);
|
| 1752 |
+
|
| 1753 |
+
if (S3::$proxy != null && isset(S3::$proxy['host']))
|
| 1754 |
+
{
|
| 1755 |
+
curl_setopt($curl, CURLOPT_PROXY, S3::$proxy['host']);
|
| 1756 |
+
curl_setopt($curl, CURLOPT_PROXYTYPE, S3::$proxy['type']);
|
| 1757 |
+
if (isset(S3::$proxy['user'], S3::$proxy['pass']) && $proxy['user'] != null && $proxy['pass'] != null)
|
| 1758 |
+
curl_setopt($curl, CURLOPT_PROXYUSERPWD, sprintf('%s:%s', S3::$proxy['user'], S3::$proxy['pass']));
|
| 1759 |
+
}
|
| 1760 |
+
|
| 1761 |
+
// Headers
|
| 1762 |
+
$headers = array(); $amz = array();
|
| 1763 |
+
foreach ($this->amzHeaders as $header => $value)
|
| 1764 |
+
if (strlen($value) > 0) $headers[] = $header.': '.$value;
|
| 1765 |
+
foreach ($this->headers as $header => $value)
|
| 1766 |
+
if (strlen($value) > 0) $headers[] = $header.': '.$value;
|
| 1767 |
+
|
| 1768 |
+
// Collect AMZ headers for signature
|
| 1769 |
+
foreach ($this->amzHeaders as $header => $value)
|
| 1770 |
+
if (strlen($value) > 0) $amz[] = strtolower($header).':'.$value;
|
| 1771 |
+
|
| 1772 |
+
// AMZ headers must be sorted
|
| 1773 |
+
if (sizeof($amz) > 0)
|
| 1774 |
+
{
|
| 1775 |
+
sort($amz);
|
| 1776 |
+
$amz = "\n".implode("\n", $amz);
|
| 1777 |
+
} else $amz = '';
|
| 1778 |
+
|
| 1779 |
+
if (S3::hasAuth())
|
| 1780 |
+
{
|
| 1781 |
+
// Authorization string (CloudFront stringToSign should only contain a date)
|
| 1782 |
+
$headers[] = 'Authorization: ' . S3::__getSignature(
|
| 1783 |
+
$this->headers['Host'] == 'cloudfront.amazonaws.com' ? $this->headers['Date'] :
|
| 1784 |
+
$this->verb."\n".$this->headers['Content-MD5']."\n".
|
| 1785 |
+
$this->headers['Content-Type']."\n".$this->headers['Date'].$amz."\n".$this->resource
|
| 1786 |
+
);
|
| 1787 |
+
}
|
| 1788 |
+
|
| 1789 |
+
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
|
| 1790 |
+
curl_setopt($curl, CURLOPT_HEADER, false);
|
| 1791 |
+
curl_setopt($curl, CURLOPT_RETURNTRANSFER, false);
|
| 1792 |
+
curl_setopt($curl, CURLOPT_WRITEFUNCTION, array(&$this, '__responseWriteCallback'));
|
| 1793 |
+
curl_setopt($curl, CURLOPT_HEADERFUNCTION, array(&$this, '__responseHeaderCallback'));
|
| 1794 |
+
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
|
| 1795 |
+
|
| 1796 |
+
// Request types
|
| 1797 |
+
switch ($this->verb)
|
| 1798 |
+
{
|
| 1799 |
+
case 'GET': break;
|
| 1800 |
+
case 'PUT': case 'POST': // POST only used for CloudFront
|
| 1801 |
+
if ($this->fp !== false)
|
| 1802 |
+
{
|
| 1803 |
+
curl_setopt($curl, CURLOPT_PUT, true);
|
| 1804 |
+
curl_setopt($curl, CURLOPT_INFILE, $this->fp);
|
| 1805 |
+
if ($this->size >= 0)
|
| 1806 |
+
curl_setopt($curl, CURLOPT_INFILESIZE, $this->size);
|
| 1807 |
+
}
|
| 1808 |
+
elseif ($this->data !== false)
|
| 1809 |
+
{
|
| 1810 |
+
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $this->verb);
|
| 1811 |
+
curl_setopt($curl, CURLOPT_POSTFIELDS, $this->data);
|
| 1812 |
+
}
|
| 1813 |
+
else
|
| 1814 |
+
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $this->verb);
|
| 1815 |
+
break;
|
| 1816 |
+
case 'HEAD':
|
| 1817 |
+
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'HEAD');
|
| 1818 |
+
curl_setopt($curl, CURLOPT_NOBODY, true);
|
| 1819 |
+
break;
|
| 1820 |
+
case 'DELETE':
|
| 1821 |
+
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'DELETE');
|
| 1822 |
+
break;
|
| 1823 |
+
default: break;
|
| 1824 |
+
}
|
| 1825 |
+
|
| 1826 |
+
// Execute, grab errors
|
| 1827 |
+
if (curl_exec($curl))
|
| 1828 |
+
$this->response->code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
|
| 1829 |
+
else
|
| 1830 |
+
$this->response->error = array(
|
| 1831 |
+
'code' => curl_errno($curl),
|
| 1832 |
+
'message' => curl_error($curl),
|
| 1833 |
+
'resource' => $this->resource
|
| 1834 |
+
);
|
| 1835 |
+
|
| 1836 |
+
@curl_close($curl);
|
| 1837 |
+
|
| 1838 |
+
// Parse body into XML
|
| 1839 |
+
if ($this->response->error === false && isset($this->response->headers['type']) &&
|
| 1840 |
+
$this->response->headers['type'] == 'application/xml' && isset($this->response->body))
|
| 1841 |
+
{
|
| 1842 |
+
$this->response->body = simplexml_load_string($this->response->body);
|
| 1843 |
+
|
| 1844 |
+
// Grab S3 errors
|
| 1845 |
+
if (!in_array($this->response->code, array(200, 204, 206)) &&
|
| 1846 |
+
isset($this->response->body->Code, $this->response->body->Message))
|
| 1847 |
+
{
|
| 1848 |
+
$this->response->error = array(
|
| 1849 |
+
'code' => (string)$this->response->body->Code,
|
| 1850 |
+
'message' => (string)$this->response->body->Message
|
| 1851 |
+
);
|
| 1852 |
+
if (isset($this->response->body->Resource))
|
| 1853 |
+
$this->response->error['resource'] = (string)$this->response->body->Resource;
|
| 1854 |
+
unset($this->response->body);
|
| 1855 |
+
}
|
| 1856 |
+
}
|
| 1857 |
+
|
| 1858 |
+
// Clean up file resources
|
| 1859 |
+
if ($this->fp !== false && is_resource($this->fp)) fclose($this->fp);
|
| 1860 |
+
|
| 1861 |
+
return $this->response;
|
| 1862 |
+
}
|
| 1863 |
+
|
| 1864 |
+
|
| 1865 |
+
/**
|
| 1866 |
+
* CURL write callback
|
| 1867 |
+
*
|
| 1868 |
+
* @param resource &$curl CURL resource
|
| 1869 |
+
* @param string &$data Data
|
| 1870 |
+
* @return integer
|
| 1871 |
+
*/
|
| 1872 |
+
private function __responseWriteCallback(&$curl, &$data)
|
| 1873 |
+
{
|
| 1874 |
+
if (in_array($this->response->code, array(200, 206)) && $this->fp !== false)
|
| 1875 |
+
return fwrite($this->fp, $data);
|
| 1876 |
+
else
|
| 1877 |
+
$this->response->body .= $data;
|
| 1878 |
+
return strlen($data);
|
| 1879 |
+
}
|
| 1880 |
+
|
| 1881 |
+
|
| 1882 |
+
/**
|
| 1883 |
+
* CURL header callback
|
| 1884 |
+
*
|
| 1885 |
+
* @param resource &$curl CURL resource
|
| 1886 |
+
* @param string &$data Data
|
| 1887 |
+
* @return integer
|
| 1888 |
+
*/
|
| 1889 |
+
private function __responseHeaderCallback(&$curl, &$data)
|
| 1890 |
+
{
|
| 1891 |
+
if (($strlen = strlen($data)) <= 2) return $strlen;
|
| 1892 |
+
if (substr($data, 0, 4) == 'HTTP')
|
| 1893 |
+
$this->response->code = (int)substr($data, 9, 3);
|
| 1894 |
+
else
|
| 1895 |
+
{
|
| 1896 |
+
$data = trim($data);
|
| 1897 |
+
if (strpos($data, ': ') === false) return $strlen;
|
| 1898 |
+
list($header, $value) = explode(': ', $data, 2);
|
| 1899 |
+
if ($header == 'Last-Modified')
|
| 1900 |
+
$this->response->headers['time'] = strtotime($value);
|
| 1901 |
+
elseif ($header == 'Content-Length')
|
| 1902 |
+
$this->response->headers['size'] = (int)$value;
|
| 1903 |
+
elseif ($header == 'Content-Type')
|
| 1904 |
+
$this->response->headers['type'] = $value;
|
| 1905 |
+
elseif ($header == 'ETag')
|
| 1906 |
+
$this->response->headers['hash'] = $value{0} == '"' ? substr($value, 1, -1) : $value;
|
| 1907 |
+
elseif (preg_match('/^x-amz-meta-.*$/', $header))
|
| 1908 |
+
$this->response->headers[$header] = is_numeric($value) ? (int)$value : $value;
|
| 1909 |
+
}
|
| 1910 |
+
return $strlen;
|
| 1911 |
+
}
|
| 1912 |
+
|
| 1913 |
+
}
|
| 1914 |
+
|
| 1915 |
+
class S3Exception extends Exception {
|
| 1916 |
+
function __construct($message, $file, $line, $code = 0)
|
| 1917 |
+
{
|
| 1918 |
+
parent::__construct($message, $code);
|
| 1919 |
+
$this->file = $file;
|
| 1920 |
+
$this->line = $line;
|
| 1921 |
+
}
|
| 1922 |
+
}
|
link.class.php
CHANGED
|
@@ -1,39 +1,61 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
* user.class.php
|
| 5 |
-
*
|
| 6 |
-
* Add Users
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
* Copyright (c) 2011 Prelovac Media
|
| 10 |
-
* www.prelovac.com
|
| 11 |
-
**************************************************************/
|
| 12 |
-
|
| 13 |
-
class MMB_Link extends MMB_Core
|
| 14 |
-
{
|
| 15 |
-
function __construct()
|
| 16 |
-
{
|
| 17 |
-
parent::__construct();
|
| 18 |
-
}
|
| 19 |
-
|
| 20 |
-
function add_link($args)
|
| 21 |
-
{
|
| 22 |
-
extract($args);
|
| 23 |
-
|
| 24 |
-
$params['link_url'] = esc_html($url);
|
| 25 |
-
$params['link_url'] = esc_url($params['link_url']);
|
| 26 |
-
$params['link_name'] = esc_html($name);
|
| 27 |
-
$params['link_id'] = '';
|
| 28 |
-
$params['link_description'] = $description;
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
$
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
* user.class.php
|
| 5 |
+
*
|
| 6 |
+
* Add Users
|
| 7 |
+
*
|
| 8 |
+
*
|
| 9 |
+
* Copyright (c) 2011 Prelovac Media
|
| 10 |
+
* www.prelovac.com
|
| 11 |
+
**************************************************************/
|
| 12 |
+
|
| 13 |
+
class MMB_Link extends MMB_Core
|
| 14 |
+
{
|
| 15 |
+
function __construct()
|
| 16 |
+
{
|
| 17 |
+
parent::__construct();
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
function add_link($args)
|
| 21 |
+
{
|
| 22 |
+
extract($args);
|
| 23 |
+
|
| 24 |
+
$params['link_url'] = esc_html($url);
|
| 25 |
+
$params['link_url'] = esc_url($params['link_url']);
|
| 26 |
+
$params['link_name'] = esc_html($name);
|
| 27 |
+
$params['link_id'] = '';
|
| 28 |
+
$params['link_description'] = $description;
|
| 29 |
+
$params['link_target'] = $link_target;
|
| 30 |
+
$params['link_category'] = array();
|
| 31 |
+
|
| 32 |
+
//Add Link category
|
| 33 |
+
if(is_array($link_category) && !empty($link_category)){
|
| 34 |
+
$terms = get_terms('link_category',array('hide_empty' => 0));
|
| 35 |
+
|
| 36 |
+
if($terms){
|
| 37 |
+
foreach($terms as $term){
|
| 38 |
+
if(in_array($term->name,$link_category)){
|
| 39 |
+
$params['link_category'][] = $term->term_id;
|
| 40 |
+
}
|
| 41 |
+
}
|
| 42 |
+
}
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
+
//Add Link Owner
|
| 46 |
+
$user_obj = get_userdatabylogin($user);
|
| 47 |
+
if($user_obj && $user_obj->ID){
|
| 48 |
+
$params['link_owner'] = $user_obj->ID;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
if(!function_exists('wp_insert_link'))
|
| 53 |
+
include_once (ABSPATH . 'wp-admin/includes/bookmark.php');
|
| 54 |
+
|
| 55 |
+
$is_success = wp_insert_link($params);
|
| 56 |
+
|
| 57 |
+
return $is_success ? true : array('error' => 'Failed to add link.');
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
}
|
| 61 |
?>
|
plugins/cleanup/cleanup.php
CHANGED
|
@@ -1,176 +1,177 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
*
|
| 5 |
-
*
|
| 6 |
-
* ManageWP Worker Plugin
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
* Copyright (c) 2011 Prelovac Media
|
| 10 |
-
* www.prelovac.com
|
| 11 |
-
**************************************************************/
|
| 12 |
-
|
| 13 |
-
add_filter('mmb_stats_filter', 'mmb_get_extended_info');
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
function mmb_get_extended_info($stats)
|
| 17 |
-
{
|
| 18 |
-
$stats['num_revisions'] = mmb_num_revisions();
|
| 19 |
-
//$stats['num_revisions'] = 5;
|
| 20 |
-
$stats['overhead'] = mmb_get_overhead();
|
| 21 |
-
$stats['num_spam_comments'] = mmb_num_spam_comments();
|
| 22 |
-
return $stats;
|
| 23 |
-
}
|
| 24 |
-
|
| 25 |
-
/* Revisions */
|
| 26 |
-
|
| 27 |
-
mmb_add_action('cleanup_delete', 'cleanup_delete_worker');
|
| 28 |
-
|
| 29 |
-
function cleanup_delete_worker($params = array()){
|
| 30 |
-
global $mmb_core;
|
| 31 |
-
|
| 32 |
-
$params_array = explode('_', $params['actions']);
|
| 33 |
-
$return_array = array();
|
| 34 |
-
foreach ($params_array as $param){
|
| 35 |
-
switch ($param){
|
| 36 |
-
case 'revision' :
|
| 37 |
-
if(mmb_delete_all_revisions()){
|
| 38 |
-
$return_array['revision'] = 'Revisions deleted.';
|
| 39 |
-
}else{
|
| 40 |
-
$return_array['revision_error'] = 'Revisions not deleted.';
|
| 41 |
-
}
|
| 42 |
-
break;
|
| 43 |
-
case 'overhead' :
|
| 44 |
-
if(mmb_clear_overhead()){
|
| 45 |
-
$return_array['overhead'] = 'Overhead cleared.';
|
| 46 |
-
}else{
|
| 47 |
-
$return_array['overhead_error'] = 'Overhead not cleared.';
|
| 48 |
-
}
|
| 49 |
-
break;
|
| 50 |
-
case 'comment' :
|
| 51 |
-
if(mmb_delete_spam_comments()){
|
| 52 |
-
$return_array['comment'] = 'Comments deleted';
|
| 53 |
-
}else{
|
| 54 |
-
$return_array['comment_error'] = 'Comments not deleted';
|
| 55 |
-
}
|
| 56 |
-
break;
|
| 57 |
-
default:
|
| 58 |
-
break;
|
| 59 |
-
}
|
| 60 |
-
|
| 61 |
-
}
|
| 62 |
-
|
| 63 |
-
unset($params);
|
| 64 |
-
|
| 65 |
-
mmb_response($return_array, true);
|
| 66 |
-
}
|
| 67 |
-
|
| 68 |
-
function mmb_num_revisions() {
|
| 69 |
-
global $wpdb;
|
| 70 |
-
$sql = "SELECT COUNT(*) FROM $wpdb->posts WHERE post_type = 'revision'";
|
| 71 |
-
$num_revisions = $wpdb->get_var($wpdb->prepare($sql));
|
| 72 |
-
return $num_revisions;
|
| 73 |
-
}
|
| 74 |
-
|
| 75 |
-
function mmb_select_all_revisions() {
|
| 76 |
-
global $wpdb;
|
| 77 |
-
$sql = "SELECT * FROM $wpdb->posts WHERE post_type = 'revision'";
|
| 78 |
-
$revisions = $wpdb->get_results($wpdb->prepare($sql));
|
| 79 |
-
return $revisions;
|
| 80 |
-
}
|
| 81 |
-
|
| 82 |
-
function mmb_delete_all_revisions() {
|
| 83 |
-
global $wpdb;
|
| 84 |
-
$sql = "DELETE a,b,c FROM $wpdb->posts a LEFT JOIN $wpdb->term_relationships b ON (a.ID = b.object_id) LEFT JOIN $wpdb->postmeta c ON (a.ID = c.post_id) WHERE a.post_type = 'revision'";
|
| 85 |
-
$revisions = $wpdb->query($wpdb->prepare($sql));
|
| 86 |
-
return $revisions;
|
| 87 |
-
}
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
/* Optimize */
|
| 92 |
-
|
| 93 |
-
function mmb_get_overhead()
|
| 94 |
-
{
|
| 95 |
-
global $wpdb, $mmb_core;
|
| 96 |
-
$tot_data = 0;
|
| 97 |
-
$tot_idx = 0;
|
| 98 |
-
$tot_all = 0;
|
| 99 |
-
$query = 'SHOW TABLE STATUS FROM '. DB_NAME;
|
| 100 |
-
$tables = $wpdb->get_results($wpdb->prepare($query),ARRAY_A);
|
| 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 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
*
|
| 5 |
+
*
|
| 6 |
+
* ManageWP Worker Plugin
|
| 7 |
+
*
|
| 8 |
+
*
|
| 9 |
+
* Copyright (c) 2011 Prelovac Media
|
| 10 |
+
* www.prelovac.com
|
| 11 |
+
**************************************************************/
|
| 12 |
+
|
| 13 |
+
add_filter('mmb_stats_filter', 'mmb_get_extended_info');
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
function mmb_get_extended_info($stats)
|
| 17 |
+
{
|
| 18 |
+
$stats['num_revisions'] = mmb_num_revisions();
|
| 19 |
+
//$stats['num_revisions'] = 5;
|
| 20 |
+
$stats['overhead'] = mmb_get_overhead();
|
| 21 |
+
$stats['num_spam_comments'] = mmb_num_spam_comments();
|
| 22 |
+
return $stats;
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
/* Revisions */
|
| 26 |
+
|
| 27 |
+
mmb_add_action('cleanup_delete', 'cleanup_delete_worker');
|
| 28 |
+
|
| 29 |
+
function cleanup_delete_worker($params = array()){
|
| 30 |
+
global $mmb_core;
|
| 31 |
+
|
| 32 |
+
$params_array = explode('_', $params['actions']);
|
| 33 |
+
$return_array = array();
|
| 34 |
+
foreach ($params_array as $param){
|
| 35 |
+
switch ($param){
|
| 36 |
+
case 'revision' :
|
| 37 |
+
if(mmb_delete_all_revisions()){
|
| 38 |
+
$return_array['revision'] = 'Revisions deleted.';
|
| 39 |
+
}else{
|
| 40 |
+
$return_array['revision_error'] = 'Revisions not deleted.';
|
| 41 |
+
}
|
| 42 |
+
break;
|
| 43 |
+
case 'overhead' :
|
| 44 |
+
if(mmb_clear_overhead()){
|
| 45 |
+
$return_array['overhead'] = 'Overhead cleared.';
|
| 46 |
+
}else{
|
| 47 |
+
$return_array['overhead_error'] = 'Overhead not cleared.';
|
| 48 |
+
}
|
| 49 |
+
break;
|
| 50 |
+
case 'comment' :
|
| 51 |
+
if(mmb_delete_spam_comments()){
|
| 52 |
+
$return_array['comment'] = 'Comments deleted';
|
| 53 |
+
}else{
|
| 54 |
+
$return_array['comment_error'] = 'Comments not deleted';
|
| 55 |
+
}
|
| 56 |
+
break;
|
| 57 |
+
default:
|
| 58 |
+
break;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
unset($params);
|
| 64 |
+
|
| 65 |
+
mmb_response($return_array, true);
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
function mmb_num_revisions() {
|
| 69 |
+
global $wpdb;
|
| 70 |
+
$sql = "SELECT COUNT(*) FROM $wpdb->posts WHERE post_type = 'revision'";
|
| 71 |
+
$num_revisions = $wpdb->get_var($wpdb->prepare($sql));
|
| 72 |
+
return $num_revisions;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
function mmb_select_all_revisions() {
|
| 76 |
+
global $wpdb;
|
| 77 |
+
$sql = "SELECT * FROM $wpdb->posts WHERE post_type = 'revision'";
|
| 78 |
+
$revisions = $wpdb->get_results($wpdb->prepare($sql));
|
| 79 |
+
return $revisions;
|
| 80 |
+
}
|
| 81 |
+
|
| 82 |
+
function mmb_delete_all_revisions() {
|
| 83 |
+
global $wpdb;
|
| 84 |
+
$sql = "DELETE a,b,c FROM $wpdb->posts a LEFT JOIN $wpdb->term_relationships b ON (a.ID = b.object_id) LEFT JOIN $wpdb->postmeta c ON (a.ID = c.post_id) WHERE a.post_type = 'revision'";
|
| 85 |
+
$revisions = $wpdb->query($wpdb->prepare($sql));
|
| 86 |
+
return $revisions;
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
|
| 91 |
+
/* Optimize */
|
| 92 |
+
|
| 93 |
+
function mmb_get_overhead()
|
| 94 |
+
{
|
| 95 |
+
global $wpdb, $mmb_core;
|
| 96 |
+
$tot_data = 0;
|
| 97 |
+
$tot_idx = 0;
|
| 98 |
+
$tot_all = 0;
|
| 99 |
+
$query = 'SHOW TABLE STATUS FROM '. DB_NAME;
|
| 100 |
+
$tables = $wpdb->get_results($wpdb->prepare($query),ARRAY_A);
|
| 101 |
+
$total_gain = 0;
|
| 102 |
+
foreach($tables as $table)
|
| 103 |
+
{
|
| 104 |
+
if(in_array($table['Engine'], array('MyISAM', 'ISAM', 'HEAP', 'MEMORY', 'ARCHIVE'))){
|
| 105 |
+
|
| 106 |
+
if($wpdb->base_prefix != $wpdb->prefix){
|
| 107 |
+
if(preg_match('/^'.$wpdb->prefix.'*/Ui', $table['Name'])){
|
| 108 |
+
$total_gain += $table['Data_free'] / 1024;
|
| 109 |
+
}
|
| 110 |
+
} else if(preg_match('/^'.$wpdb->prefix.'[0-9]{1,20}_*/Ui', $table['Name'])){
|
| 111 |
+
continue;
|
| 112 |
+
}
|
| 113 |
+
else {
|
| 114 |
+
$total_gain += $table['Data_free'] / 1024;
|
| 115 |
+
}
|
| 116 |
+
} elseif ($table['Engine'] == 'InnoDB'){
|
| 117 |
+
//$total_gain += $table['Data_free'] > 100*1024*1024 ? $table['Data_free'] / 1024 : 0;
|
| 118 |
+
}
|
| 119 |
+
}
|
| 120 |
+
return round($total_gain,3);
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
|
| 124 |
+
function mmb_clear_overhead()
|
| 125 |
+
{
|
| 126 |
+
global $wpdb;
|
| 127 |
+
$tables = $wpdb->get_col("SHOW TABLES");
|
| 128 |
+
foreach ($tables as $table_name) {
|
| 129 |
+
if($wpdb->base_prefix != $wpdb->prefix){
|
| 130 |
+
if(preg_match('/^'.$wpdb->prefix.'*/Ui', $table_name)){
|
| 131 |
+
$table_string .= $table_name . ",";
|
| 132 |
+
}
|
| 133 |
+
} else if(preg_match('/^'.$wpdb->prefix.'[0-9]{1,20}_*/Ui', $table_name)){
|
| 134 |
+
continue;
|
| 135 |
+
}
|
| 136 |
+
else
|
| 137 |
+
$table_string .= $table_name . ",";
|
| 138 |
+
}
|
| 139 |
+
$table_string = substr($table_string,0,strlen($table_string)-1); //remove last ,
|
| 140 |
+
|
| 141 |
+
$table_string = rtrim($table_string);
|
| 142 |
+
|
| 143 |
+
$query = "OPTIMIZE TABLE $table_string";
|
| 144 |
+
|
| 145 |
+
$optimize = $wpdb->query($query);
|
| 146 |
+
return $optimize ? true : false;
|
| 147 |
+
}
|
| 148 |
+
|
| 149 |
+
|
| 150 |
+
|
| 151 |
+
|
| 152 |
+
/* Spam Comments */
|
| 153 |
+
|
| 154 |
+
function mmb_num_spam_comments()
|
| 155 |
+
{
|
| 156 |
+
global $wpdb;
|
| 157 |
+
$sql = "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = 'spam'";
|
| 158 |
+
$num_spams = $wpdb->get_var($wpdb->prepare($sql));
|
| 159 |
+
return $num_spams;
|
| 160 |
+
}
|
| 161 |
+
|
| 162 |
+
function mmb_delete_spam_comments()
|
| 163 |
+
{
|
| 164 |
+
global $wpdb;
|
| 165 |
+
$sql = "DELETE FROM $wpdb->comments WHERE comment_approved = 'spam'";
|
| 166 |
+
$spams = $wpdb->query($wpdb->prepare($sql));
|
| 167 |
+
return $sql;
|
| 168 |
+
}
|
| 169 |
+
|
| 170 |
+
|
| 171 |
+
function mmb_get_spam_comments() {
|
| 172 |
+
global $wpdb;
|
| 173 |
+
$sql = "SELECT * FROM $wpdb->comments as a LEFT JOIN $wpdb->commentmeta as b WHERE a.comment_ID = b.comment_id AND a.comment_approved = 'spam'";
|
| 174 |
+
$spams = $wpdb->get_results($wpdb->prepare($sql));
|
| 175 |
+
return $spams;
|
| 176 |
+
}
|
| 177 |
?>
|
plugins/extra_html_example/extra_html_example.php
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
|
| 3 |
-
// add filter for the stats structure
|
| 4 |
-
add_filter('mmb_stats_filter', mmb_extra_html_example);
|
| 5 |
-
|
| 6 |
-
function mmb_extra_html_example($stats)
|
| 7 |
-
{
|
| 8 |
-
$count_posts = wp_count_posts();
|
| 9 |
-
|
| 10 |
-
$published_posts = $count_posts->publish;
|
| 11 |
-
|
| 12 |
-
// add 'extra_html' element. This is what gets displayed in the dashboard
|
| 13 |
-
$stats['extra_html'] = '<p>Hello from '.get_bloginfo('name').' with '.$published_posts.' published posts.</p>';
|
| 14 |
-
|
| 15 |
-
// return the whole array back
|
| 16 |
-
return $stats;
|
| 17 |
-
}
|
| 18 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
|
| 3 |
+
// add filter for the stats structure
|
| 4 |
+
add_filter('mmb_stats_filter', mmb_extra_html_example);
|
| 5 |
+
|
| 6 |
+
function mmb_extra_html_example($stats)
|
| 7 |
+
{
|
| 8 |
+
$count_posts = wp_count_posts();
|
| 9 |
+
|
| 10 |
+
$published_posts = $count_posts->publish;
|
| 11 |
+
|
| 12 |
+
// add 'extra_html' element. This is what gets displayed in the dashboard
|
| 13 |
+
$stats['extra_html'] = '<p>Hello from '.get_bloginfo('name').' with '.$published_posts.' published posts.</p>';
|
| 14 |
+
|
| 15 |
+
// return the whole array back
|
| 16 |
+
return $stats;
|
| 17 |
+
}
|
| 18 |
?>
|
plugins/search/search.php
CHANGED
|
@@ -1,130 +1,130 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
* stats.class.php
|
| 5 |
-
*
|
| 6 |
-
* Various searches on worker
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
* Copyright (c) 2011 Prelovac Media
|
| 10 |
-
* www.prelovac.com
|
| 11 |
-
**************************************************************/
|
| 12 |
-
|
| 13 |
-
mmb_add_action('search_posts_by_term', 'search_posts_by_term');
|
| 14 |
-
|
| 15 |
-
function search_posts_by_term($params = false){
|
| 16 |
-
|
| 17 |
-
global $wpdb, $current_user;
|
| 18 |
-
|
| 19 |
-
$search_type = trim($params['search_type']);
|
| 20 |
-
$search_term = strtolower(trim($params['search_term']));
|
| 21 |
-
switch ($search_type){
|
| 22 |
-
case 'page_post':
|
| 23 |
-
$num_posts = 10;
|
| 24 |
-
$num_content_char = 30;
|
| 25 |
-
|
| 26 |
-
$term_orig = trim($params['search_term']);
|
| 27 |
-
|
| 28 |
-
$term_base= addslashes(trim($params['search_term']));
|
| 29 |
-
|
| 30 |
-
$query = "SELECT *
|
| 31 |
-
FROM $wpdb->posts
|
| 32 |
-
WHERE $wpdb->posts.post_status = 'publish'
|
| 33 |
-
AND ($wpdb->posts.post_title LIKE '%$term_base%'
|
| 34 |
-
OR $wpdb->posts.post_content LIKE '%$term_base%')
|
| 35 |
-
ORDER BY $wpdb->posts.post_modified DESC
|
| 36 |
-
LIMIT 0, $num_posts
|
| 37 |
-
";
|
| 38 |
-
|
| 39 |
-
$posts_array = $wpdb->get_results($query);
|
| 40 |
-
|
| 41 |
-
$ret_posts = array();
|
| 42 |
-
|
| 43 |
-
foreach($posts_array as $post){
|
| 44 |
-
//highlight searched term
|
| 45 |
-
|
| 46 |
-
if (substr_count(strtolower($post->post_title), strtolower($term_orig))){
|
| 47 |
-
$str_position_start = strpos(strtolower($post->post_title), strtolower($term_orig));
|
| 48 |
-
|
| 49 |
-
$post->post_title = substr($post->post_title, 0, $str_position_start).'<b>'.
|
| 50 |
-
substr($post->post_title, $str_position_start, strlen($term_orig)).'</b>'.
|
| 51 |
-
substr($post->post_title, $str_position_start + strlen($term_orig));
|
| 52 |
-
|
| 53 |
-
}
|
| 54 |
-
$post->post_content = html_entity_decode($post->post_content);
|
| 55 |
-
|
| 56 |
-
$post->post_content = strip_tags($post->post_content);
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
if (substr_count(strtolower($post->post_content), strtolower($term_orig))){
|
| 61 |
-
$str_position_start = strpos(strtolower($post->post_content), strtolower($term_orig));
|
| 62 |
-
|
| 63 |
-
$start = $str_position_start > $num_content_char ? $str_position_start - $num_content_char: 0;
|
| 64 |
-
$first_len = $str_position_start > $num_content_char? $num_content_char : $str_position_start;
|
| 65 |
-
|
| 66 |
-
$start_substring = $start>0 ? '...' : '';
|
| 67 |
-
$post->post_content = $start_substring . substr($post->post_content, $start, $first_len).'<b>'.
|
| 68 |
-
substr($post->post_content, $str_position_start, strlen($term_orig)).'</b>'.
|
| 69 |
-
substr($post->post_content, $str_position_start + strlen($term_orig), $num_content_char) . '...';
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
}else{
|
| 73 |
-
$post->post_content = substr($post->post_content,0, 50). '...';
|
| 74 |
-
}
|
| 75 |
-
|
| 76 |
-
$ret_posts[] = array(
|
| 77 |
-
'ID' => $post->ID
|
| 78 |
-
,'post_permalink' => get_permalink($post->ID)
|
| 79 |
-
,'post_date' => $post->post_date
|
| 80 |
-
,'post_title' => $post->post_title
|
| 81 |
-
,'post_content' => $post->post_content
|
| 82 |
-
,'post_modified' => $post->post_modified
|
| 83 |
-
,'comment_count' => $post->comment_count
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
);
|
| 87 |
-
}
|
| 88 |
-
mmb_response($ret_posts, true);
|
| 89 |
-
break;
|
| 90 |
-
|
| 91 |
-
case 'plugin':
|
| 92 |
-
$plugins = get_option('active_plugins');
|
| 93 |
-
|
| 94 |
-
if(!function_exists('get_plugin_data'))
|
| 95 |
-
include_once( ABSPATH.'/wp-admin/includes/plugin.php');
|
| 96 |
-
|
| 97 |
-
$have_plugin = array();
|
| 98 |
-
foreach ($plugins as $plugin) {
|
| 99 |
-
$pl = WP_PLUGIN_DIR . '/' . $plugin ;
|
| 100 |
-
$pl_extended = get_plugin_data($pl);
|
| 101 |
-
$pl_name = $pl_extended['Name'];
|
| 102 |
-
if(strpos(strtolower($pl_name), $search_term)>-1){
|
| 103 |
-
|
| 104 |
-
$have_plugin[] = $pl_name;
|
| 105 |
-
}
|
| 106 |
-
}
|
| 107 |
-
if($have_plugin){
|
| 108 |
-
mmb_response($have_plugin, true);
|
| 109 |
-
}else{
|
| 110 |
-
mmb_response('Not found', false);
|
| 111 |
-
}
|
| 112 |
-
break;
|
| 113 |
-
case 'theme':
|
| 114 |
-
$theme = strtolower(get_option('stylesheet'));
|
| 115 |
-
$tm = ABSPATH . 'wp-content/themes/'. $theme . '/style.css' ;
|
| 116 |
-
$tm_extended = get_theme_data($tm);
|
| 117 |
-
$tm_name = $tm_extended['Name'];
|
| 118 |
-
$have_theme = array();
|
| 119 |
-
if(strpos(strtolower($tm_name), $search_term)>-1){
|
| 120 |
-
$have_theme[] = $tm_name;
|
| 121 |
-
mmb_response($have_theme, true);
|
| 122 |
-
}else{
|
| 123 |
-
mmb_response('Not found', false);
|
| 124 |
-
}
|
| 125 |
-
break;
|
| 126 |
-
default: mmb_response('Not found', false);
|
| 127 |
-
}
|
| 128 |
-
}
|
| 129 |
-
|
| 130 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
* stats.class.php
|
| 5 |
+
*
|
| 6 |
+
* Various searches on worker
|
| 7 |
+
*
|
| 8 |
+
*
|
| 9 |
+
* Copyright (c) 2011 Prelovac Media
|
| 10 |
+
* www.prelovac.com
|
| 11 |
+
**************************************************************/
|
| 12 |
+
|
| 13 |
+
mmb_add_action('search_posts_by_term', 'search_posts_by_term');
|
| 14 |
+
|
| 15 |
+
function search_posts_by_term($params = false){
|
| 16 |
+
|
| 17 |
+
global $wpdb, $current_user;
|
| 18 |
+
|
| 19 |
+
$search_type = trim($params['search_type']);
|
| 20 |
+
$search_term = strtolower(trim($params['search_term']));
|
| 21 |
+
switch ($search_type){
|
| 22 |
+
case 'page_post':
|
| 23 |
+
$num_posts = 10;
|
| 24 |
+
$num_content_char = 30;
|
| 25 |
+
|
| 26 |
+
$term_orig = trim($params['search_term']);
|
| 27 |
+
|
| 28 |
+
$term_base= addslashes(trim($params['search_term']));
|
| 29 |
+
|
| 30 |
+
$query = "SELECT *
|
| 31 |
+
FROM $wpdb->posts
|
| 32 |
+
WHERE $wpdb->posts.post_status = 'publish'
|
| 33 |
+
AND ($wpdb->posts.post_title LIKE '%$term_base%'
|
| 34 |
+
OR $wpdb->posts.post_content LIKE '%$term_base%')
|
| 35 |
+
ORDER BY $wpdb->posts.post_modified DESC
|
| 36 |
+
LIMIT 0, $num_posts
|
| 37 |
+
";
|
| 38 |
+
|
| 39 |
+
$posts_array = $wpdb->get_results($query);
|
| 40 |
+
|
| 41 |
+
$ret_posts = array();
|
| 42 |
+
|
| 43 |
+
foreach($posts_array as $post){
|
| 44 |
+
//highlight searched term
|
| 45 |
+
|
| 46 |
+
if (substr_count(strtolower($post->post_title), strtolower($term_orig))){
|
| 47 |
+
$str_position_start = strpos(strtolower($post->post_title), strtolower($term_orig));
|
| 48 |
+
|
| 49 |
+
$post->post_title = substr($post->post_title, 0, $str_position_start).'<b>'.
|
| 50 |
+
substr($post->post_title, $str_position_start, strlen($term_orig)).'</b>'.
|
| 51 |
+
substr($post->post_title, $str_position_start + strlen($term_orig));
|
| 52 |
+
|
| 53 |
+
}
|
| 54 |
+
$post->post_content = html_entity_decode($post->post_content);
|
| 55 |
+
|
| 56 |
+
$post->post_content = strip_tags($post->post_content);
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
if (substr_count(strtolower($post->post_content), strtolower($term_orig))){
|
| 61 |
+
$str_position_start = strpos(strtolower($post->post_content), strtolower($term_orig));
|
| 62 |
+
|
| 63 |
+
$start = $str_position_start > $num_content_char ? $str_position_start - $num_content_char: 0;
|
| 64 |
+
$first_len = $str_position_start > $num_content_char? $num_content_char : $str_position_start;
|
| 65 |
+
|
| 66 |
+
$start_substring = $start>0 ? '...' : '';
|
| 67 |
+
$post->post_content = $start_substring . substr($post->post_content, $start, $first_len).'<b>'.
|
| 68 |
+
substr($post->post_content, $str_position_start, strlen($term_orig)).'</b>'.
|
| 69 |
+
substr($post->post_content, $str_position_start + strlen($term_orig), $num_content_char) . '...';
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
}else{
|
| 73 |
+
$post->post_content = substr($post->post_content,0, 50). '...';
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
$ret_posts[] = array(
|
| 77 |
+
'ID' => $post->ID
|
| 78 |
+
,'post_permalink' => get_permalink($post->ID)
|
| 79 |
+
,'post_date' => $post->post_date
|
| 80 |
+
,'post_title' => $post->post_title
|
| 81 |
+
,'post_content' => $post->post_content
|
| 82 |
+
,'post_modified' => $post->post_modified
|
| 83 |
+
,'comment_count' => $post->comment_count
|
| 84 |
+
|
| 85 |
+
|
| 86 |
+
);
|
| 87 |
+
}
|
| 88 |
+
mmb_response($ret_posts, true);
|
| 89 |
+
break;
|
| 90 |
+
|
| 91 |
+
case 'plugin':
|
| 92 |
+
$plugins = get_option('active_plugins');
|
| 93 |
+
|
| 94 |
+
if(!function_exists('get_plugin_data'))
|
| 95 |
+
include_once( ABSPATH.'/wp-admin/includes/plugin.php');
|
| 96 |
+
|
| 97 |
+
$have_plugin = array();
|
| 98 |
+
foreach ($plugins as $plugin) {
|
| 99 |
+
$pl = WP_PLUGIN_DIR . '/' . $plugin ;
|
| 100 |
+
$pl_extended = get_plugin_data($pl);
|
| 101 |
+
$pl_name = $pl_extended['Name'];
|
| 102 |
+
if(strpos(strtolower($pl_name), $search_term)>-1){
|
| 103 |
+
|
| 104 |
+
$have_plugin[] = $pl_name;
|
| 105 |
+
}
|
| 106 |
+
}
|
| 107 |
+
if($have_plugin){
|
| 108 |
+
mmb_response($have_plugin, true);
|
| 109 |
+
}else{
|
| 110 |
+
mmb_response('Not found', false);
|
| 111 |
+
}
|
| 112 |
+
break;
|
| 113 |
+
case 'theme':
|
| 114 |
+
$theme = strtolower(get_option('stylesheet'));
|
| 115 |
+
$tm = ABSPATH . 'wp-content/themes/'. $theme . '/style.css' ;
|
| 116 |
+
$tm_extended = get_theme_data($tm);
|
| 117 |
+
$tm_name = $tm_extended['Name'];
|
| 118 |
+
$have_theme = array();
|
| 119 |
+
if(strpos(strtolower($tm_name), $search_term)>-1){
|
| 120 |
+
$have_theme[] = $tm_name;
|
| 121 |
+
mmb_response($have_theme, true);
|
| 122 |
+
}else{
|
| 123 |
+
mmb_response('Not found', false);
|
| 124 |
+
}
|
| 125 |
+
break;
|
| 126 |
+
default: mmb_response('Not found', false);
|
| 127 |
+
}
|
| 128 |
+
}
|
| 129 |
+
|
| 130 |
?>
|
post.class.php
CHANGED
|
@@ -1,345 +1,345 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
* post.class.php
|
| 5 |
-
*
|
| 6 |
-
* Create remote post
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
* Copyright (c) 2011 Prelovac Media
|
| 10 |
-
* www.prelovac.com
|
| 11 |
-
**************************************************************/
|
| 12 |
-
|
| 13 |
-
class MMB_Post extends MMB_Core
|
| 14 |
-
{
|
| 15 |
-
function __construct()
|
| 16 |
-
{
|
| 17 |
-
parent::__construct();
|
| 18 |
-
}
|
| 19 |
-
|
| 20 |
-
function create($args)
|
| 21 |
-
{
|
| 22 |
-
|
| 23 |
-
/**
|
| 24 |
-
* algorithm
|
| 25 |
-
* 1. create post using wp_insert_post (insert tags also here itself)
|
| 26 |
-
* 2. use wp_create_categories() to create(not exists) and insert in the post
|
| 27 |
-
* 3. insert meta values
|
| 28 |
-
*/
|
| 29 |
-
|
| 30 |
-
include_once ABSPATH . 'wp-admin/includes/taxonomy.php';
|
| 31 |
-
include_once ABSPATH . 'wp-admin/includes/image.php';
|
| 32 |
-
include_once ABSPATH . 'wp-admin/includes/file.php';
|
| 33 |
-
|
| 34 |
-
$post_struct = $args['post_data'];
|
| 35 |
-
|
| 36 |
-
$post_data = $post_struct['post_data'];
|
| 37 |
-
$new_custom = $post_struct['post_extras']['post_meta'];
|
| 38 |
-
$post_categories = explode(',', $post_struct['post_extras']['post_categories']);
|
| 39 |
-
$post_atta_img = $post_struct['post_extras']['post_atta_images'];
|
| 40 |
-
$post_upload_dir = $post_struct['post_extras']['post_upload_dir'];
|
| 41 |
-
$post_checksum = $post_struct['post_extras']['post_checksum'];
|
| 42 |
-
$post_featured_img = $post_struct['post_extras']['featured_img'];
|
| 43 |
-
|
| 44 |
-
$upload = wp_upload_dir();
|
| 45 |
-
|
| 46 |
-
// create dynamic url RegExp
|
| 47 |
-
$mwp_base_url = parse_url($post_upload_dir['url']);
|
| 48 |
-
$mwp_regexp_url = $mwp_base_url['host'] . $mwp_base_url['path'];
|
| 49 |
-
$rep = array(
|
| 50 |
-
'/',
|
| 51 |
-
'+',
|
| 52 |
-
'.',
|
| 53 |
-
':',
|
| 54 |
-
'?'
|
| 55 |
-
);
|
| 56 |
-
$with = array(
|
| 57 |
-
'\/',
|
| 58 |
-
'\+',
|
| 59 |
-
'\.',
|
| 60 |
-
'\:',
|
| 61 |
-
'\?'
|
| 62 |
-
);
|
| 63 |
-
$mwp_regexp_url = str_replace($rep, $with, $mwp_regexp_url);
|
| 64 |
-
|
| 65 |
-
// rename all src ../wp-content/ with hostname/wp-content/
|
| 66 |
-
$mmb_dot_url = '..' . $mmb_base_url['path'];
|
| 67 |
-
$mmb_dot_url = str_replace($rep, $with, $mmb_dot_url);
|
| 68 |
-
$dot_match_count = preg_match_all('/(<a[^>]+href=\"([^"]+)\"[^>]*>)?(<\s*img.[^\/>]*src="([^"]*' . $mmb_dot_url . '[^\s]+\.(jpg|jpeg|png|gif|bmp))"[^>]*>)/ixu', $post_data['post_content'], $dot_get_urls, PREG_SET_ORDER);
|
| 69 |
-
if ($dot_match_count > 0) {
|
| 70 |
-
foreach ($dot_get_urls as $dot_url) {
|
| 71 |
-
$match_dot = '/' . str_replace($rep, $with, $dot_url[4]) . '/';
|
| 72 |
-
$replace_dot = 'http://' . $mmb_base_url['host'] . substr($dot_url[4], 2, strlen($dot_url[4]));
|
| 73 |
-
$post_data['post_content'] = preg_replace($match_dot, $replace_dot, $post_data['post_content']);
|
| 74 |
-
|
| 75 |
-
if ($dot_url[1] != '') {
|
| 76 |
-
$match_dot_a = '/' . str_replace($rep, $with, $dot_url[2]) . '/';
|
| 77 |
-
$replace_dot_a = 'http://' . $mmb_base_url['host'] . substr($dot_url[2], 2, strlen($dot_url[2]));
|
| 78 |
-
$post_data['post_content'] = preg_replace($match_dot_a, $replace_dot_a, $post_data['post_content']);
|
| 79 |
-
}
|
| 80 |
-
}
|
| 81 |
-
}
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
//to find all the images
|
| 86 |
-
$match_count = preg_match_all('/(<a[^>]+href=\"([^"]+)\"[^>]*>)?(<\s*img.[^\/>]*src="([^"]+' . $mmb_regexp_url . '[^\s]+\.(jpg|jpeg|png|gif|bmp))"[^>]*>)/ixu', $post_data['post_content'], $get_urls, PREG_SET_ORDER);
|
| 87 |
-
if ($match_count > 0) {
|
| 88 |
-
$attachments = array();
|
| 89 |
-
$post_content = $post_data['post_content'];
|
| 90 |
-
|
| 91 |
-
foreach ($get_urls as $get_url_k => $get_url) {
|
| 92 |
-
// unset url in attachment array
|
| 93 |
-
foreach ($post_atta_img as $atta_url_k => $atta_url_v) {
|
| 94 |
-
$match_patt_url = '/' . str_replace($rep, $with, substr($atta_url_v['src'], 0, strrpos($atta_url_v['src'], '.'))) . '/';
|
| 95 |
-
if (preg_match($match_patt_url, $get_url[4])) {
|
| 96 |
-
unset($post_atta_img[$atta_url_k]);
|
| 97 |
-
}
|
| 98 |
-
}
|
| 99 |
-
|
| 100 |
-
if (isset($get_urls[$get_url_k][6])) { // url have parent, don't download this url
|
| 101 |
-
if ($get_url[1] != '') {
|
| 102 |
-
// change src url
|
| 103 |
-
$s_mmb_mp = '/' . str_replace($rep, $with, $get_url[4]) . '/';
|
| 104 |
-
|
| 105 |
-
$s_img_atta = wp_get_attachment_image_src($get_urls[$get_url_k][6]);
|
| 106 |
-
$s_mmb_rp = $s_img_atta[0];
|
| 107 |
-
$post_content = preg_replace($s_mmb_mp, $s_mmb_rp, $post_content);
|
| 108 |
-
// change attachment url
|
| 109 |
-
if (preg_match('/attachment_id/i', $get_url[2])) {
|
| 110 |
-
$mmb_mp = '/' . str_replace($rep, $with, $get_url[2]) . '/';
|
| 111 |
-
$mmb_rp = get_bloginfo('wpurl') . '/?attachment_id=' . $get_urls[$get_url_k][6];
|
| 112 |
-
$post_content = preg_replace($mmb_mp, $mmb_rp, $post_content);
|
| 113 |
-
}
|
| 114 |
-
}
|
| 115 |
-
continue;
|
| 116 |
-
}
|
| 117 |
-
|
| 118 |
-
$no_thumb = '';
|
| 119 |
-
if (preg_match('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', $get_url[4])) {
|
| 120 |
-
$no_thumb = preg_replace('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', '.' . $get_url[5], $get_url[4]);
|
| 121 |
-
} else {
|
| 122 |
-
$no_thumb = $get_url[4];
|
| 123 |
-
}
|
| 124 |
-
$file_name = basename($no_thumb);
|
| 125 |
-
$tmp_file = download_url($no_thumb);
|
| 126 |
-
|
| 127 |
-
$attach_upload['url'] = $upload['url'] . '/' . $file_name;
|
| 128 |
-
$attach_upload['path'] = $upload['path'] . '/' . $file_name;
|
| 129 |
-
$renamed = @rename($tmp_file, $attach_upload['path']);
|
| 130 |
-
if ($renamed === true) {
|
| 131 |
-
$match_pattern = '/' . str_replace($rep, $with, $get_url[4]) . '/';
|
| 132 |
-
$replace_pattern = $attach_upload['url'];
|
| 133 |
-
$post_content = preg_replace($match_pattern, $replace_pattern, $post_content);
|
| 134 |
-
if (preg_match('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', $get_url[4])) {
|
| 135 |
-
$match_pattern = '/' . str_replace($rep, $with, preg_replace('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', '.' . $get_url[5], $get_url[4])) . '/';
|
| 136 |
-
$post_content = preg_replace($match_pattern, $replace_pattern, $post_content);
|
| 137 |
-
}
|
| 138 |
-
|
| 139 |
-
$attachment = array(
|
| 140 |
-
'post_title' => $file_name,
|
| 141 |
-
'post_content' => '',
|
| 142 |
-
'post_type' => 'attachment',
|
| 143 |
-
//'post_parent' => $post_id,
|
| 144 |
-
'post_mime_type' => 'image/' . $get_url[5],
|
| 145 |
-
'guid' => $attach_upload['url']
|
| 146 |
-
);
|
| 147 |
-
|
| 148 |
-
// Save the data
|
| 149 |
-
|
| 150 |
-
$attach_id = wp_insert_attachment($attachment, $attach_upload['path']);
|
| 151 |
-
|
| 152 |
-
$attachments[$attach_id] = 0;
|
| 153 |
-
|
| 154 |
-
// featured image
|
| 155 |
-
if ($post_featured_img != '') {
|
| 156 |
-
$feat_img_url = '';
|
| 157 |
-
if (preg_match('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', $post_featured_img)) {
|
| 158 |
-
$feat_img_url = substr($post_featured_img, 0, strrpos($post_featured_img, '.') - 8);
|
| 159 |
-
} else {
|
| 160 |
-
$feat_img_url = substr($post_featured_img, 0, strrpos($post_featured_img, '.'));
|
| 161 |
-
}
|
| 162 |
-
$m_feat_url = '/' . str_replace($rep, $with, $feat_img_url) . '/';
|
| 163 |
-
if (preg_match($m_feat_url, $get_url[4])) {
|
| 164 |
-
$post_featured_img = '';
|
| 165 |
-
$attachments[$attach_id] = $attach_id;
|
| 166 |
-
}
|
| 167 |
-
}
|
| 168 |
-
|
| 169 |
-
// set $get_urls value[6] - parent atta_id
|
| 170 |
-
foreach ($get_urls as $url_k => $url_v) {
|
| 171 |
-
if ($get_url_k != $url_k) {
|
| 172 |
-
$s_get_url = '';
|
| 173 |
-
if (preg_match('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', $url_v[4])) {
|
| 174 |
-
$s_get_url = substr($url_v[4], 0, strrpos($url_v[4], '.') - 8);
|
| 175 |
-
} else {
|
| 176 |
-
$s_get_url = substr($url_v[4], 0, strrpos($url_v[4], '.'));
|
| 177 |
-
}
|
| 178 |
-
$m_patt_url = '/' . str_replace($rep, $with, $s_get_url) . '/';
|
| 179 |
-
if (preg_match($m_patt_url, $get_url[4])) {
|
| 180 |
-
array_push($get_urls[$url_k], $attach_id);
|
| 181 |
-
}
|
| 182 |
-
}
|
| 183 |
-
}
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
$some_data = wp_generate_attachment_metadata($attach_id, $attach_upload['path']);
|
| 187 |
-
wp_update_attachment_metadata($attach_id, $some_data);
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
// changing href of a tag
|
| 191 |
-
if ($get_url[1] != '') {
|
| 192 |
-
$mmb_mp = '/' . str_replace($rep, $with, $get_url[2]) . '/';
|
| 193 |
-
if (preg_match('/attachment_id/i', $get_url[2])) {
|
| 194 |
-
$mmb_rp = get_bloginfo('wpurl') . '/?attachment_id=' . $attach_id;
|
| 195 |
-
$post_content = preg_replace($mmb_mp, $mmb_rp, $post_content);
|
| 196 |
-
}
|
| 197 |
-
}
|
| 198 |
-
}
|
| 199 |
-
@unlink($tmp_file);
|
| 200 |
-
}
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
$post_data['post_content'] = $post_content;
|
| 204 |
-
|
| 205 |
-
}
|
| 206 |
-
if (count($post_atta_img)) {
|
| 207 |
-
foreach ($post_atta_img as $img) {
|
| 208 |
-
$file_name = basename($img['src']);
|
| 209 |
-
$tmp_file = download_url($img['src']);
|
| 210 |
-
$attach_upload['url'] = $upload['url'] . '/' . $file_name;
|
| 211 |
-
$attach_upload['path'] = $upload['path'] . '/' . $file_name;
|
| 212 |
-
$renamed = @rename($tmp_file, $attach_upload['path']);
|
| 213 |
-
if ($renamed === true) {
|
| 214 |
-
$atta_ext = end(explode('.', $file_name));
|
| 215 |
-
|
| 216 |
-
$attachment = array(
|
| 217 |
-
'post_title' => $file_name,
|
| 218 |
-
'post_content' => '',
|
| 219 |
-
'post_type' => 'attachment',
|
| 220 |
-
//'post_parent' => $post_id,
|
| 221 |
-
'post_mime_type' => 'image/' . $atta_ext,
|
| 222 |
-
'guid' => $attach_upload['url']
|
| 223 |
-
);
|
| 224 |
-
|
| 225 |
-
// Save the data
|
| 226 |
-
$attach_id = wp_insert_attachment($attachment, $attach_upload['path']);
|
| 227 |
-
wp_update_attachment_metadata($attach_id, wp_generate_attachment_metadata($attach_id, $attach_upload['path']));
|
| 228 |
-
$attachments[$attach_id] = 0;
|
| 229 |
-
|
| 230 |
-
// featured image
|
| 231 |
-
if ($post_featured_img != '') {
|
| 232 |
-
$feat_img_url = '';
|
| 233 |
-
if (preg_match('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', $post_featured_img)) {
|
| 234 |
-
$feat_img_url = substr($post_featured_img, 0, strrpos($post_featured_img, '.') - 8);
|
| 235 |
-
} else {
|
| 236 |
-
$feat_img_url = substr($post_featured_img, 0, strrpos($post_featured_img, '.'));
|
| 237 |
-
}
|
| 238 |
-
$m_feat_url = '/' . str_replace($rep, $with, $feat_img_url) . '/';
|
| 239 |
-
if (preg_match($m_feat_url, $img['src'])) {
|
| 240 |
-
$post_featured_img = '';
|
| 241 |
-
$attachments[$attach_id] = $attach_id;
|
| 242 |
-
}
|
| 243 |
-
}
|
| 244 |
-
|
| 245 |
-
}
|
| 246 |
-
@unlink($tmp_file);
|
| 247 |
-
}
|
| 248 |
-
}
|
| 249 |
-
|
| 250 |
-
//Prepare post data and temporarily remove content filters before insert post
|
| 251 |
-
$user =
|
| 252 |
-
if($user && $user->ID){
|
| 253 |
-
$post_data['post_author'] = $user->ID;
|
| 254 |
-
}
|
| 255 |
-
remove_filter('content_save_pre', 'wp_filter_post_kses');
|
| 256 |
-
$post_id = wp_insert_post($post_data);
|
| 257 |
-
|
| 258 |
-
if (count($attachments)) {
|
| 259 |
-
foreach ($attachments as $atta_id => $featured_id) {
|
| 260 |
-
$result = wp_update_post(array(
|
| 261 |
-
'ID' => $atta_id,
|
| 262 |
-
'post_parent' => $post_id
|
| 263 |
-
));
|
| 264 |
-
if ($featured_id > 0) {
|
| 265 |
-
$new_custom['_thumbnail_id'] = array(
|
| 266 |
-
$featured_id
|
| 267 |
-
);
|
| 268 |
-
}
|
| 269 |
-
}
|
| 270 |
-
}
|
| 271 |
-
|
| 272 |
-
// featured image
|
| 273 |
-
if ($post_featured_img != '') {
|
| 274 |
-
$file_name = basename($post_featured_img);
|
| 275 |
-
$tmp_file = download_url($post_featured_img);
|
| 276 |
-
$attach_upload['url'] = $upload['url'] . '/' . $file_name;
|
| 277 |
-
$attach_upload['path'] = $upload['path'] . '/' . $file_name;
|
| 278 |
-
$renamed = @rename($tmp_file, $attach_upload['path']);
|
| 279 |
-
if ($renamed === true) {
|
| 280 |
-
$atta_ext = end(explode('.', $file_name));
|
| 281 |
-
|
| 282 |
-
$attachment = array(
|
| 283 |
-
'post_title' => $file_name,
|
| 284 |
-
'post_content' => '',
|
| 285 |
-
'post_type' => 'attachment',
|
| 286 |
-
'post_parent' => $post_id,
|
| 287 |
-
'post_mime_type' => 'image/' . $atta_ext,
|
| 288 |
-
'guid' => $attach_upload['url']
|
| 289 |
-
);
|
| 290 |
-
|
| 291 |
-
// Save the data
|
| 292 |
-
$attach_id = wp_insert_attachment($attachment, $attach_upload['path']);
|
| 293 |
-
wp_update_attachment_metadata($attach_id, wp_generate_attachment_metadata($attach_id, $attach_upload['path']));
|
| 294 |
-
$new_custom['_thumbnail_id'] = array(
|
| 295 |
-
$attach_id
|
| 296 |
-
);
|
| 297 |
-
}
|
| 298 |
-
@unlink($tmp_file);
|
| 299 |
-
}
|
| 300 |
-
|
| 301 |
-
if ($post_id && is_array($post_categories)) {
|
| 302 |
-
//insert categories
|
| 303 |
-
|
| 304 |
-
$cat_ids = wp_create_categories($post_categories, $post_id);
|
| 305 |
-
}
|
| 306 |
-
|
| 307 |
-
|
| 308 |
-
//get current custom fields
|
| 309 |
-
$cur_custom = get_post_custom($post_id);
|
| 310 |
-
//check which values doesnot exists in new custom fields
|
| 311 |
-
$diff_values = array_diff_key($cur_custom, $new_custom);
|
| 312 |
-
|
| 313 |
-
if (is_array($diff_values))
|
| 314 |
-
foreach ($diff_values as $meta_key => $value) {
|
| 315 |
-
delete_post_meta($post_id, $meta_key);
|
| 316 |
-
}
|
| 317 |
-
//insert new post meta
|
| 318 |
-
foreach ($new_custom as $meta_key => $value) {
|
| 319 |
-
if (strpos($meta_key, '_mmb') === 0 || strpos($meta_key, '_edit') === 0) {
|
| 320 |
-
continue;
|
| 321 |
-
} else {
|
| 322 |
-
update_post_meta($post_id, $meta_key, $value[0]);
|
| 323 |
-
}
|
| 324 |
-
}
|
| 325 |
-
return $post_id;
|
| 326 |
-
}
|
| 327 |
-
|
| 328 |
-
|
| 329 |
-
function change_status($args)
|
| 330 |
-
{
|
| 331 |
-
|
| 332 |
-
global $wpdb;
|
| 333 |
-
$post_id = $args['post_id'];
|
| 334 |
-
$status = $args['status'];
|
| 335 |
-
$success = false;
|
| 336 |
-
|
| 337 |
-
if(in_array($status, array('draft', 'publish', 'trash'))){
|
| 338 |
-
$sql = "update ".$wpdb->prefix."posts set post_status = '$status' where ID = '$post_id'";
|
| 339 |
-
$success = $wpdb->query($sql);
|
| 340 |
-
}
|
| 341 |
-
|
| 342 |
-
return $success;
|
| 343 |
-
}
|
| 344 |
-
}
|
| 345 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
* post.class.php
|
| 5 |
+
*
|
| 6 |
+
* Create remote post
|
| 7 |
+
*
|
| 8 |
+
*
|
| 9 |
+
* Copyright (c) 2011 Prelovac Media
|
| 10 |
+
* www.prelovac.com
|
| 11 |
+
**************************************************************/
|
| 12 |
+
|
| 13 |
+
class MMB_Post extends MMB_Core
|
| 14 |
+
{
|
| 15 |
+
function __construct()
|
| 16 |
+
{
|
| 17 |
+
parent::__construct();
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
function create($args)
|
| 21 |
+
{
|
| 22 |
+
|
| 23 |
+
/**
|
| 24 |
+
* algorithm
|
| 25 |
+
* 1. create post using wp_insert_post (insert tags also here itself)
|
| 26 |
+
* 2. use wp_create_categories() to create(not exists) and insert in the post
|
| 27 |
+
* 3. insert meta values
|
| 28 |
+
*/
|
| 29 |
+
|
| 30 |
+
include_once ABSPATH . 'wp-admin/includes/taxonomy.php';
|
| 31 |
+
include_once ABSPATH . 'wp-admin/includes/image.php';
|
| 32 |
+
include_once ABSPATH . 'wp-admin/includes/file.php';
|
| 33 |
+
|
| 34 |
+
$post_struct = $args['post_data'];
|
| 35 |
+
|
| 36 |
+
$post_data = $post_struct['post_data'];
|
| 37 |
+
$new_custom = $post_struct['post_extras']['post_meta'];
|
| 38 |
+
$post_categories = explode(',', $post_struct['post_extras']['post_categories']);
|
| 39 |
+
$post_atta_img = $post_struct['post_extras']['post_atta_images'];
|
| 40 |
+
$post_upload_dir = $post_struct['post_extras']['post_upload_dir'];
|
| 41 |
+
$post_checksum = $post_struct['post_extras']['post_checksum'];
|
| 42 |
+
$post_featured_img = $post_struct['post_extras']['featured_img'];
|
| 43 |
+
|
| 44 |
+
$upload = wp_upload_dir();
|
| 45 |
+
|
| 46 |
+
// create dynamic url RegExp
|
| 47 |
+
$mwp_base_url = parse_url($post_upload_dir['url']);
|
| 48 |
+
$mwp_regexp_url = $mwp_base_url['host'] . $mwp_base_url['path'];
|
| 49 |
+
$rep = array(
|
| 50 |
+
'/',
|
| 51 |
+
'+',
|
| 52 |
+
'.',
|
| 53 |
+
':',
|
| 54 |
+
'?'
|
| 55 |
+
);
|
| 56 |
+
$with = array(
|
| 57 |
+
'\/',
|
| 58 |
+
'\+',
|
| 59 |
+
'\.',
|
| 60 |
+
'\:',
|
| 61 |
+
'\?'
|
| 62 |
+
);
|
| 63 |
+
$mwp_regexp_url = str_replace($rep, $with, $mwp_regexp_url);
|
| 64 |
+
|
| 65 |
+
// rename all src ../wp-content/ with hostname/wp-content/
|
| 66 |
+
$mmb_dot_url = '..' . $mmb_base_url['path'];
|
| 67 |
+
$mmb_dot_url = str_replace($rep, $with, $mmb_dot_url);
|
| 68 |
+
$dot_match_count = preg_match_all('/(<a[^>]+href=\"([^"]+)\"[^>]*>)?(<\s*img.[^\/>]*src="([^"]*' . $mmb_dot_url . '[^\s]+\.(jpg|jpeg|png|gif|bmp))"[^>]*>)/ixu', $post_data['post_content'], $dot_get_urls, PREG_SET_ORDER);
|
| 69 |
+
if ($dot_match_count > 0) {
|
| 70 |
+
foreach ($dot_get_urls as $dot_url) {
|
| 71 |
+
$match_dot = '/' . str_replace($rep, $with, $dot_url[4]) . '/';
|
| 72 |
+
$replace_dot = 'http://' . $mmb_base_url['host'] . substr($dot_url[4], 2, strlen($dot_url[4]));
|
| 73 |
+
$post_data['post_content'] = preg_replace($match_dot, $replace_dot, $post_data['post_content']);
|
| 74 |
+
|
| 75 |
+
if ($dot_url[1] != '') {
|
| 76 |
+
$match_dot_a = '/' . str_replace($rep, $with, $dot_url[2]) . '/';
|
| 77 |
+
$replace_dot_a = 'http://' . $mmb_base_url['host'] . substr($dot_url[2], 2, strlen($dot_url[2]));
|
| 78 |
+
$post_data['post_content'] = preg_replace($match_dot_a, $replace_dot_a, $post_data['post_content']);
|
| 79 |
+
}
|
| 80 |
+
}
|
| 81 |
+
}
|
| 82 |
+
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
//to find all the images
|
| 86 |
+
$match_count = preg_match_all('/(<a[^>]+href=\"([^"]+)\"[^>]*>)?(<\s*img.[^\/>]*src="([^"]+' . $mmb_regexp_url . '[^\s]+\.(jpg|jpeg|png|gif|bmp))"[^>]*>)/ixu', $post_data['post_content'], $get_urls, PREG_SET_ORDER);
|
| 87 |
+
if ($match_count > 0) {
|
| 88 |
+
$attachments = array();
|
| 89 |
+
$post_content = $post_data['post_content'];
|
| 90 |
+
|
| 91 |
+
foreach ($get_urls as $get_url_k => $get_url) {
|
| 92 |
+
// unset url in attachment array
|
| 93 |
+
foreach ($post_atta_img as $atta_url_k => $atta_url_v) {
|
| 94 |
+
$match_patt_url = '/' . str_replace($rep, $with, substr($atta_url_v['src'], 0, strrpos($atta_url_v['src'], '.'))) . '/';
|
| 95 |
+
if (preg_match($match_patt_url, $get_url[4])) {
|
| 96 |
+
unset($post_atta_img[$atta_url_k]);
|
| 97 |
+
}
|
| 98 |
+
}
|
| 99 |
+
|
| 100 |
+
if (isset($get_urls[$get_url_k][6])) { // url have parent, don't download this url
|
| 101 |
+
if ($get_url[1] != '') {
|
| 102 |
+
// change src url
|
| 103 |
+
$s_mmb_mp = '/' . str_replace($rep, $with, $get_url[4]) . '/';
|
| 104 |
+
|
| 105 |
+
$s_img_atta = wp_get_attachment_image_src($get_urls[$get_url_k][6]);
|
| 106 |
+
$s_mmb_rp = $s_img_atta[0];
|
| 107 |
+
$post_content = preg_replace($s_mmb_mp, $s_mmb_rp, $post_content);
|
| 108 |
+
// change attachment url
|
| 109 |
+
if (preg_match('/attachment_id/i', $get_url[2])) {
|
| 110 |
+
$mmb_mp = '/' . str_replace($rep, $with, $get_url[2]) . '/';
|
| 111 |
+
$mmb_rp = get_bloginfo('wpurl') . '/?attachment_id=' . $get_urls[$get_url_k][6];
|
| 112 |
+
$post_content = preg_replace($mmb_mp, $mmb_rp, $post_content);
|
| 113 |
+
}
|
| 114 |
+
}
|
| 115 |
+
continue;
|
| 116 |
+
}
|
| 117 |
+
|
| 118 |
+
$no_thumb = '';
|
| 119 |
+
if (preg_match('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', $get_url[4])) {
|
| 120 |
+
$no_thumb = preg_replace('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', '.' . $get_url[5], $get_url[4]);
|
| 121 |
+
} else {
|
| 122 |
+
$no_thumb = $get_url[4];
|
| 123 |
+
}
|
| 124 |
+
$file_name = basename($no_thumb);
|
| 125 |
+
$tmp_file = download_url($no_thumb);
|
| 126 |
+
|
| 127 |
+
$attach_upload['url'] = $upload['url'] . '/' . $file_name;
|
| 128 |
+
$attach_upload['path'] = $upload['path'] . '/' . $file_name;
|
| 129 |
+
$renamed = @rename($tmp_file, $attach_upload['path']);
|
| 130 |
+
if ($renamed === true) {
|
| 131 |
+
$match_pattern = '/' . str_replace($rep, $with, $get_url[4]) . '/';
|
| 132 |
+
$replace_pattern = $attach_upload['url'];
|
| 133 |
+
$post_content = preg_replace($match_pattern, $replace_pattern, $post_content);
|
| 134 |
+
if (preg_match('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', $get_url[4])) {
|
| 135 |
+
$match_pattern = '/' . str_replace($rep, $with, preg_replace('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', '.' . $get_url[5], $get_url[4])) . '/';
|
| 136 |
+
$post_content = preg_replace($match_pattern, $replace_pattern, $post_content);
|
| 137 |
+
}
|
| 138 |
+
|
| 139 |
+
$attachment = array(
|
| 140 |
+
'post_title' => $file_name,
|
| 141 |
+
'post_content' => '',
|
| 142 |
+
'post_type' => 'attachment',
|
| 143 |
+
//'post_parent' => $post_id,
|
| 144 |
+
'post_mime_type' => 'image/' . $get_url[5],
|
| 145 |
+
'guid' => $attach_upload['url']
|
| 146 |
+
);
|
| 147 |
+
|
| 148 |
+
// Save the data
|
| 149 |
+
|
| 150 |
+
$attach_id = wp_insert_attachment($attachment, $attach_upload['path']);
|
| 151 |
+
|
| 152 |
+
$attachments[$attach_id] = 0;
|
| 153 |
+
|
| 154 |
+
// featured image
|
| 155 |
+
if ($post_featured_img != '') {
|
| 156 |
+
$feat_img_url = '';
|
| 157 |
+
if (preg_match('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', $post_featured_img)) {
|
| 158 |
+
$feat_img_url = substr($post_featured_img, 0, strrpos($post_featured_img, '.') - 8);
|
| 159 |
+
} else {
|
| 160 |
+
$feat_img_url = substr($post_featured_img, 0, strrpos($post_featured_img, '.'));
|
| 161 |
+
}
|
| 162 |
+
$m_feat_url = '/' . str_replace($rep, $with, $feat_img_url) . '/';
|
| 163 |
+
if (preg_match($m_feat_url, $get_url[4])) {
|
| 164 |
+
$post_featured_img = '';
|
| 165 |
+
$attachments[$attach_id] = $attach_id;
|
| 166 |
+
}
|
| 167 |
+
}
|
| 168 |
+
|
| 169 |
+
// set $get_urls value[6] - parent atta_id
|
| 170 |
+
foreach ($get_urls as $url_k => $url_v) {
|
| 171 |
+
if ($get_url_k != $url_k) {
|
| 172 |
+
$s_get_url = '';
|
| 173 |
+
if (preg_match('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', $url_v[4])) {
|
| 174 |
+
$s_get_url = substr($url_v[4], 0, strrpos($url_v[4], '.') - 8);
|
| 175 |
+
} else {
|
| 176 |
+
$s_get_url = substr($url_v[4], 0, strrpos($url_v[4], '.'));
|
| 177 |
+
}
|
| 178 |
+
$m_patt_url = '/' . str_replace($rep, $with, $s_get_url) . '/';
|
| 179 |
+
if (preg_match($m_patt_url, $get_url[4])) {
|
| 180 |
+
array_push($get_urls[$url_k], $attach_id);
|
| 181 |
+
}
|
| 182 |
+
}
|
| 183 |
+
}
|
| 184 |
+
|
| 185 |
+
|
| 186 |
+
$some_data = wp_generate_attachment_metadata($attach_id, $attach_upload['path']);
|
| 187 |
+
wp_update_attachment_metadata($attach_id, $some_data);
|
| 188 |
+
|
| 189 |
+
|
| 190 |
+
// changing href of a tag
|
| 191 |
+
if ($get_url[1] != '') {
|
| 192 |
+
$mmb_mp = '/' . str_replace($rep, $with, $get_url[2]) . '/';
|
| 193 |
+
if (preg_match('/attachment_id/i', $get_url[2])) {
|
| 194 |
+
$mmb_rp = get_bloginfo('wpurl') . '/?attachment_id=' . $attach_id;
|
| 195 |
+
$post_content = preg_replace($mmb_mp, $mmb_rp, $post_content);
|
| 196 |
+
}
|
| 197 |
+
}
|
| 198 |
+
}
|
| 199 |
+
@unlink($tmp_file);
|
| 200 |
+
}
|
| 201 |
+
|
| 202 |
+
|
| 203 |
+
$post_data['post_content'] = $post_content;
|
| 204 |
+
|
| 205 |
+
}
|
| 206 |
+
if (count($post_atta_img)) {
|
| 207 |
+
foreach ($post_atta_img as $img) {
|
| 208 |
+
$file_name = basename($img['src']);
|
| 209 |
+
$tmp_file = download_url($img['src']);
|
| 210 |
+
$attach_upload['url'] = $upload['url'] . '/' . $file_name;
|
| 211 |
+
$attach_upload['path'] = $upload['path'] . '/' . $file_name;
|
| 212 |
+
$renamed = @rename($tmp_file, $attach_upload['path']);
|
| 213 |
+
if ($renamed === true) {
|
| 214 |
+
$atta_ext = end(explode('.', $file_name));
|
| 215 |
+
|
| 216 |
+
$attachment = array(
|
| 217 |
+
'post_title' => $file_name,
|
| 218 |
+
'post_content' => '',
|
| 219 |
+
'post_type' => 'attachment',
|
| 220 |
+
//'post_parent' => $post_id,
|
| 221 |
+
'post_mime_type' => 'image/' . $atta_ext,
|
| 222 |
+
'guid' => $attach_upload['url']
|
| 223 |
+
);
|
| 224 |
+
|
| 225 |
+
// Save the data
|
| 226 |
+
$attach_id = wp_insert_attachment($attachment, $attach_upload['path']);
|
| 227 |
+
wp_update_attachment_metadata($attach_id, wp_generate_attachment_metadata($attach_id, $attach_upload['path']));
|
| 228 |
+
$attachments[$attach_id] = 0;
|
| 229 |
+
|
| 230 |
+
// featured image
|
| 231 |
+
if ($post_featured_img != '') {
|
| 232 |
+
$feat_img_url = '';
|
| 233 |
+
if (preg_match('/-\d{3}x\d{3}\.[a-zA-Z0-9]{3,4}$/', $post_featured_img)) {
|
| 234 |
+
$feat_img_url = substr($post_featured_img, 0, strrpos($post_featured_img, '.') - 8);
|
| 235 |
+
} else {
|
| 236 |
+
$feat_img_url = substr($post_featured_img, 0, strrpos($post_featured_img, '.'));
|
| 237 |
+
}
|
| 238 |
+
$m_feat_url = '/' . str_replace($rep, $with, $feat_img_url) . '/';
|
| 239 |
+
if (preg_match($m_feat_url, $img['src'])) {
|
| 240 |
+
$post_featured_img = '';
|
| 241 |
+
$attachments[$attach_id] = $attach_id;
|
| 242 |
+
}
|
| 243 |
+
}
|
| 244 |
+
|
| 245 |
+
}
|
| 246 |
+
@unlink($tmp_file);
|
| 247 |
+
}
|
| 248 |
+
}
|
| 249 |
+
|
| 250 |
+
//Prepare post data and temporarily remove content filters before insert post
|
| 251 |
+
$user = $this->mmb_get_user_info( $args['username'] );
|
| 252 |
+
if($user && $user->ID){
|
| 253 |
+
$post_data['post_author'] = $user->ID;
|
| 254 |
+
}
|
| 255 |
+
remove_filter('content_save_pre', 'wp_filter_post_kses');
|
| 256 |
+
$post_id = wp_insert_post($post_data);
|
| 257 |
+
|
| 258 |
+
if (count($attachments)) {
|
| 259 |
+
foreach ($attachments as $atta_id => $featured_id) {
|
| 260 |
+
$result = wp_update_post(array(
|
| 261 |
+
'ID' => $atta_id,
|
| 262 |
+
'post_parent' => $post_id
|
| 263 |
+
));
|
| 264 |
+
if ($featured_id > 0) {
|
| 265 |
+
$new_custom['_thumbnail_id'] = array(
|
| 266 |
+
$featured_id
|
| 267 |
+
);
|
| 268 |
+
}
|
| 269 |
+
}
|
| 270 |
+
}
|
| 271 |
+
|
| 272 |
+
// featured image
|
| 273 |
+
if ($post_featured_img != '') {
|
| 274 |
+
$file_name = basename($post_featured_img);
|
| 275 |
+
$tmp_file = download_url($post_featured_img);
|
| 276 |
+
$attach_upload['url'] = $upload['url'] . '/' . $file_name;
|
| 277 |
+
$attach_upload['path'] = $upload['path'] . '/' . $file_name;
|
| 278 |
+
$renamed = @rename($tmp_file, $attach_upload['path']);
|
| 279 |
+
if ($renamed === true) {
|
| 280 |
+
$atta_ext = end(explode('.', $file_name));
|
| 281 |
+
|
| 282 |
+
$attachment = array(
|
| 283 |
+
'post_title' => $file_name,
|
| 284 |
+
'post_content' => '',
|
| 285 |
+
'post_type' => 'attachment',
|
| 286 |
+
'post_parent' => $post_id,
|
| 287 |
+
'post_mime_type' => 'image/' . $atta_ext,
|
| 288 |
+
'guid' => $attach_upload['url']
|
| 289 |
+
);
|
| 290 |
+
|
| 291 |
+
// Save the data
|
| 292 |
+
$attach_id = wp_insert_attachment($attachment, $attach_upload['path']);
|
| 293 |
+
wp_update_attachment_metadata($attach_id, wp_generate_attachment_metadata($attach_id, $attach_upload['path']));
|
| 294 |
+
$new_custom['_thumbnail_id'] = array(
|
| 295 |
+
$attach_id
|
| 296 |
+
);
|
| 297 |
+
}
|
| 298 |
+
@unlink($tmp_file);
|
| 299 |
+
}
|
| 300 |
+
|
| 301 |
+
if ($post_id && is_array($post_categories)) {
|
| 302 |
+
//insert categories
|
| 303 |
+
|
| 304 |
+
$cat_ids = wp_create_categories($post_categories, $post_id);
|
| 305 |
+
}
|
| 306 |
+
|
| 307 |
+
|
| 308 |
+
//get current custom fields
|
| 309 |
+
$cur_custom = get_post_custom($post_id);
|
| 310 |
+
//check which values doesnot exists in new custom fields
|
| 311 |
+
$diff_values = array_diff_key($cur_custom, $new_custom);
|
| 312 |
+
|
| 313 |
+
if (is_array($diff_values))
|
| 314 |
+
foreach ($diff_values as $meta_key => $value) {
|
| 315 |
+
delete_post_meta($post_id, $meta_key);
|
| 316 |
+
}
|
| 317 |
+
//insert new post meta
|
| 318 |
+
foreach ($new_custom as $meta_key => $value) {
|
| 319 |
+
if (strpos($meta_key, '_mmb') === 0 || strpos($meta_key, '_edit') === 0) {
|
| 320 |
+
continue;
|
| 321 |
+
} else {
|
| 322 |
+
update_post_meta($post_id, $meta_key, $value[0]);
|
| 323 |
+
}
|
| 324 |
+
}
|
| 325 |
+
return $post_id;
|
| 326 |
+
}
|
| 327 |
+
|
| 328 |
+
|
| 329 |
+
function change_status($args)
|
| 330 |
+
{
|
| 331 |
+
|
| 332 |
+
global $wpdb;
|
| 333 |
+
$post_id = $args['post_id'];
|
| 334 |
+
$status = $args['status'];
|
| 335 |
+
$success = false;
|
| 336 |
+
|
| 337 |
+
if(in_array($status, array('draft', 'publish', 'trash'))){
|
| 338 |
+
$sql = "update ".$wpdb->prefix."posts set post_status = '$status' where ID = '$post_id'";
|
| 339 |
+
$success = $wpdb->query($sql);
|
| 340 |
+
}
|
| 341 |
+
|
| 342 |
+
return $success;
|
| 343 |
+
}
|
| 344 |
+
}
|
| 345 |
?>
|
readme.txt
CHANGED
|
@@ -3,7 +3,7 @@ Contributors: freediver
|
|
| 3 |
Donate link: https://www.networkforgood.org/donation/MakeDonation.aspx?ORGID2=520781390
|
| 4 |
Tags: admin, administration, amazon, api, authentication, automatic, dashboard, dropbox, events, integration, manage, multsite, notification, performance, s3, security, seo, stats, tracking, managewp
|
| 5 |
Requires at least: 3.0
|
| 6 |
-
Tested up to: 3.
|
| 7 |
Stable tag: trunk
|
| 8 |
|
| 9 |
ManageWP Worker plugin allows you to remotely manage your blogs from one dashboard.
|
|
@@ -16,10 +16,10 @@ Main features:
|
|
| 16 |
|
| 17 |
* Secure and fast solution for managing your WordPress sites
|
| 18 |
* One click upgrades of WordPress, plugin and themes across all your sites
|
| 19 |
-
*
|
| 20 |
* One click to access WP admin of any site
|
| 21 |
* Bulk install themes and plugins to multiple sites at once
|
| 22 |
-
*
|
| 23 |
* Bulk publish posts to multiple sites at once
|
| 24 |
* Install WordPress, clone or migrate a website to another domain
|
| 25 |
* Much, much more...
|
|
@@ -32,19 +32,6 @@ Check out [ManageWP.com](http://managewp.com/ "Manage Multiple Blogs").
|
|
| 32 |
|
| 33 |
== Changelog ==
|
| 34 |
|
| 35 |
-
= 3.9.10 =
|
| 36 |
-
* Supporting updates for more premium plugins/themes
|
| 37 |
-
* Backup notifications (users can now get notices when the backup succeeds or fails)
|
| 38 |
-
* Support for WordPress 3.3
|
| 39 |
-
* Worker Branding (useful for web agencies, add your own Name/Description)
|
| 40 |
-
* Manage Groups screem
|
| 41 |
-
* Specify wp-admin path if your site uses a custom one
|
| 42 |
-
* Amazon S3 backups support for mixed case bucket names
|
| 43 |
-
* Bulk Add Links has additional options
|
| 44 |
-
* Better Multisite support
|
| 45 |
-
* Option to set the number of items for Google Analytics
|
| 46 |
-
* ManageWP backup folder changed to wp-content/managewp/backups
|
| 47 |
-
|
| 48 |
= 3.9.9 =
|
| 49 |
* New widget on the dashboard - Backup status
|
| 50 |
* New screen for managing plugins and themes (activate, deactivate, delete, add to favorites, install) across all sites
|
| 3 |
Donate link: https://www.networkforgood.org/donation/MakeDonation.aspx?ORGID2=520781390
|
| 4 |
Tags: admin, administration, amazon, api, authentication, automatic, dashboard, dropbox, events, integration, manage, multsite, notification, performance, s3, security, seo, stats, tracking, managewp
|
| 5 |
Requires at least: 3.0
|
| 6 |
+
Tested up to: 3.2.1
|
| 7 |
Stable tag: trunk
|
| 8 |
|
| 9 |
ManageWP Worker plugin allows you to remotely manage your blogs from one dashboard.
|
| 16 |
|
| 17 |
* Secure and fast solution for managing your WordPress sites
|
| 18 |
* One click upgrades of WordPress, plugin and themes across all your sites
|
| 19 |
+
* Schedule automatic backups of your websites (Amazon S3 and Dropbox supported)
|
| 20 |
* One click to access WP admin of any site
|
| 21 |
* Bulk install themes and plugins to multiple sites at once
|
| 22 |
+
* Add sub-users (writers, staff..) to your account
|
| 23 |
* Bulk publish posts to multiple sites at once
|
| 24 |
* Install WordPress, clone or migrate a website to another domain
|
| 25 |
* Much, much more...
|
| 32 |
|
| 33 |
== Changelog ==
|
| 34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
= 3.9.9 =
|
| 36 |
* New widget on the dashboard - Backup status
|
| 37 |
* New screen for managing plugins and themes (activate, deactivate, delete, add to favorites, install) across all sites
|
stats.class.php
CHANGED
|
@@ -1,488 +1,635 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
* stats.class.php
|
| 5 |
-
*
|
| 6 |
-
* Get Site Stats
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
* Copyright (c) 2011 Prelovac Media
|
| 10 |
-
* www.prelovac.com
|
| 11 |
-
**************************************************************/
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
class MMB_Stats extends MMB_Core
|
| 15 |
-
{
|
| 16 |
-
function __construct()
|
| 17 |
-
{
|
| 18 |
-
parent::__construct();
|
| 19 |
-
}
|
| 20 |
-
|
| 21 |
-
/*************************************************************
|
| 22 |
-
* FACADE functions
|
| 23 |
-
* (functions to be called after a remote call from Master)
|
| 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 |
-
|
| 411 |
-
|
| 412 |
-
|
| 413 |
-
|
| 414 |
-
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
|
| 418 |
-
|
| 419 |
-
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
|
| 423 |
-
|
| 424 |
-
|
| 425 |
-
|
| 426 |
-
|
| 427 |
-
|
| 428 |
-
|
| 429 |
-
|
| 430 |
-
|
| 431 |
-
|
| 432 |
-
|
| 433 |
-
|
| 434 |
-
|
| 435 |
-
|
| 436 |
-
|
| 437 |
-
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
|
| 441 |
-
|
| 442 |
-
|
| 443 |
-
|
| 444 |
-
|
| 445 |
-
|
| 446 |
-
|
| 447 |
-
|
| 448 |
-
|
| 449 |
-
|
| 450 |
-
|
| 451 |
-
|
| 452 |
-
|
| 453 |
-
|
| 454 |
-
|
| 455 |
-
|
| 456 |
-
|
| 457 |
-
|
| 458 |
-
|
| 459 |
-
|
| 460 |
-
|
| 461 |
-
|
| 462 |
-
|
| 463 |
-
|
| 464 |
-
|
| 465 |
-
|
| 466 |
-
|
| 467 |
-
|
| 468 |
-
|
| 469 |
-
|
| 470 |
-
|
| 471 |
-
|
| 472 |
-
|
| 473 |
-
|
| 474 |
-
|
| 475 |
-
|
| 476 |
-
|
| 477 |
-
|
| 478 |
-
|
| 479 |
-
|
| 480 |
-
|
| 481 |
-
|
| 482 |
-
|
| 483 |
-
|
| 484 |
-
|
| 485 |
-
|
| 486 |
-
|
| 487 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 488 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
* stats.class.php
|
| 5 |
+
*
|
| 6 |
+
* Get Site Stats
|
| 7 |
+
*
|
| 8 |
+
*
|
| 9 |
+
* Copyright (c) 2011 Prelovac Media
|
| 10 |
+
* www.prelovac.com
|
| 11 |
+
**************************************************************/
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
class MMB_Stats extends MMB_Core
|
| 15 |
+
{
|
| 16 |
+
function __construct()
|
| 17 |
+
{
|
| 18 |
+
parent::__construct();
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
/*************************************************************
|
| 22 |
+
* FACADE functions
|
| 23 |
+
* (functions to be called after a remote call from Master)
|
| 24 |
+
**************************************************************/
|
| 25 |
+
|
| 26 |
+
function get_core_update( $stats, $options = array() ){
|
| 27 |
+
global $wp_version;
|
| 28 |
+
|
| 29 |
+
if(isset($options['core']) && $options['core']){
|
| 30 |
+
$core = $this->mmb_get_transient('update_core');
|
| 31 |
+
if (isset($core->updates) && !empty($core->updates)) {
|
| 32 |
+
$current_transient = $core->updates[0];
|
| 33 |
+
if ($current_transient->response == "development" || version_compare($wp_version, $current_transient->current, '<')) {
|
| 34 |
+
$current_transient->current_version = $wp_version;
|
| 35 |
+
$stats['core_updates'] = $current_transient;
|
| 36 |
+
} else
|
| 37 |
+
$stats['core_updates'] = false;
|
| 38 |
+
}else
|
| 39 |
+
$stats['core_updates'] = false;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
return $stats;
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
+
function get_hit_counter( $stats, $options = array() ){
|
| 46 |
+
|
| 47 |
+
$mmb_user_hits = get_option('user_hit_count');
|
| 48 |
+
if (is_array($mmb_user_hits)) {
|
| 49 |
+
end($mmb_user_hits);
|
| 50 |
+
$last_key_date = key($mmb_user_hits);
|
| 51 |
+
$current_date = date('Y-m-d');
|
| 52 |
+
if ($last_key_date != $current_date)
|
| 53 |
+
$this->set_hit_count(true);
|
| 54 |
+
}
|
| 55 |
+
$stats['hit_counter'] = get_option('user_hit_count');
|
| 56 |
+
|
| 57 |
+
return $stats;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
function get_comments( $stats, $options = array() ){
|
| 61 |
+
|
| 62 |
+
$nposts = isset($options['numberposts']) ? (int) $options['numberposts'] : 20;
|
| 63 |
+
|
| 64 |
+
if( $nposts ){
|
| 65 |
+
$pending_comments = get_comments('status=hold&number=' . $nposts);
|
| 66 |
+
foreach ($pending_comments as &$comment) {
|
| 67 |
+
$commented_post = get_post($comment->comment_post_ID);
|
| 68 |
+
$comment->post_title = $commented_post->post_title;
|
| 69 |
+
}
|
| 70 |
+
$stats['comments']['pending'] = $pending_comments;
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
$approved_comments = get_comments('status=approve&number=' . $nposts);
|
| 74 |
+
foreach ($approved_comments as &$comment) {
|
| 75 |
+
$commented_post = get_post($comment->comment_post_ID);
|
| 76 |
+
$comment->post_title = $commented_post->post_title;
|
| 77 |
+
}
|
| 78 |
+
$stats['comments']['approved'] = $approved_comments;
|
| 79 |
+
}
|
| 80 |
+
return $stats;
|
| 81 |
+
}
|
| 82 |
+
|
| 83 |
+
function get_posts( $stats, $options = array() ){
|
| 84 |
+
|
| 85 |
+
$nposts = isset($options['numberposts']) ? (int) $options['numberposts'] : 20;
|
| 86 |
+
|
| 87 |
+
if( $nposts ){
|
| 88 |
+
$all_posts = get_posts('post_status=publish&numberposts='.$nposts.'&orderby=modified&order=desc');
|
| 89 |
+
$recent_posts = array();
|
| 90 |
+
|
| 91 |
+
foreach ($all_posts as $id => $recent_post) {
|
| 92 |
+
$recent = new stdClass();
|
| 93 |
+
$recent->post_permalink = get_permalink($recent_post->ID);
|
| 94 |
+
$recent->ID = $recent_post->ID;
|
| 95 |
+
$recent->post_date = $recent_post->post_date;
|
| 96 |
+
$recent->post_title = $recent_post->post_title;
|
| 97 |
+
$recent->post_modified = $recent_post->post_modified;
|
| 98 |
+
$recent->comment_count = (int)$recent_post->comment_count;
|
| 99 |
+
$recent_posts[] = $recent;
|
| 100 |
+
}
|
| 101 |
+
|
| 102 |
+
$all_pages_published = get_pages('post_status=publish&numberposts='.$nposts.'&orderby=modified&order=desc');
|
| 103 |
+
$recent_pages_published = array();
|
| 104 |
+
foreach ((array)$all_pages_published as $id => $recent_page_published) {
|
| 105 |
+
$recent = new stdClass();
|
| 106 |
+
$recent->post_permalink = get_permalink($recent_page_published->ID);
|
| 107 |
+
|
| 108 |
+
$recent->ID = $recent_page_published->ID;
|
| 109 |
+
$recent->post_date = $recent_page_published->post_date;
|
| 110 |
+
$recent->post_title = $recent_page_published->post_title;
|
| 111 |
+
$recent->post_modified = $recent_page_published->post_modified;
|
| 112 |
+
|
| 113 |
+
$recent_posts[] = $recent;
|
| 114 |
+
}
|
| 115 |
+
usort($recent_posts, array($this, 'cmp_posts_worker'));
|
| 116 |
+
$stats['posts'] = array_slice($recent_posts, 0, $nposts);
|
| 117 |
+
}
|
| 118 |
+
return $stats;
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
function get_drafts( $stats, $options = array() ){
|
| 122 |
+
|
| 123 |
+
$nposts = isset($options['numberposts']) ? (int) $options['numberposts'] : 20;
|
| 124 |
+
|
| 125 |
+
if( $nposts ){
|
| 126 |
+
$all_drafts = get_posts('post_status=draft&numberposts='.$nposts.'&orderby=modified&order=desc');
|
| 127 |
+
$recent_drafts = array();
|
| 128 |
+
foreach ($all_drafts as $id => $recent_draft) {
|
| 129 |
+
$recent = new stdClass();
|
| 130 |
+
$recent->post_permalink = get_permalink($recent_draft->ID);
|
| 131 |
+
$recent->ID = $recent_draft->ID;
|
| 132 |
+
$recent->post_date = $recent_draft->post_date;
|
| 133 |
+
$recent->post_title = $recent_draft->post_title;
|
| 134 |
+
$recent->post_modified = $recent_draft->post_modified;
|
| 135 |
+
|
| 136 |
+
$recent_drafts[] = $recent;
|
| 137 |
+
}
|
| 138 |
+
|
| 139 |
+
$all_pages_drafts = get_pages('post_status=draft&numberposts='.$nposts.'&orderby=modified&order=desc');
|
| 140 |
+
$recent_pages_drafts = array();
|
| 141 |
+
foreach ((array)$all_pages_drafts as $id => $recent_pages_draft) {
|
| 142 |
+
$recent = new stdClass();
|
| 143 |
+
$recent->post_permalink = get_permalink($recent_pages_draft->ID);
|
| 144 |
+
$recent->ID = $recent_pages_draft->ID;
|
| 145 |
+
$recent->post_date = $recent_pages_draft->post_date;
|
| 146 |
+
$recent->post_title = $recent_pages_draft->post_title;
|
| 147 |
+
$recent->post_modified = $recent_pages_draft->post_modified;
|
| 148 |
+
|
| 149 |
+
$recent_drafts[] = $recent;
|
| 150 |
+
}
|
| 151 |
+
usort($recent_drafts, array($this, 'cmp_posts_worker'));
|
| 152 |
+
$stats['drafts'] = array_slice($recent_drafts, 0, $nposts);
|
| 153 |
+
}
|
| 154 |
+
return $stats;
|
| 155 |
+
}
|
| 156 |
+
|
| 157 |
+
function get_scheduled( $stats, $options = array() ){
|
| 158 |
+
|
| 159 |
+
$nposts = isset($options['numberposts']) ? (int) $options['numberposts'] : 20;
|
| 160 |
+
|
| 161 |
+
if( $nposts ){
|
| 162 |
+
$all_scheduled = get_posts('post_status=future&numberposts='.$nposts.'&orderby=post_date&order=desc');
|
| 163 |
+
$scheduled_posts = array();
|
| 164 |
+
foreach ($all_scheduled as $id => $scheduled) {
|
| 165 |
+
$recent = new stdClass();
|
| 166 |
+
$recent->post_permalink = get_permalink($scheduled->ID);
|
| 167 |
+
$recent->ID = $scheduled->ID;
|
| 168 |
+
$recent->post_date = $scheduled->post_date;
|
| 169 |
+
$recent->post_title = $scheduled->post_title;
|
| 170 |
+
$recent->post_modified = $scheduled->post_modified;
|
| 171 |
+
$scheduled_posts[] = $recent;
|
| 172 |
+
}
|
| 173 |
+
|
| 174 |
+
$pages_scheduled = get_pages('post_status=future&numberposts='.$nposts.'&orderby=modified&order=desc');
|
| 175 |
+
$recent_pages_drafts = array();
|
| 176 |
+
foreach ((array)$pages_scheduled as $id => $scheduled) {
|
| 177 |
+
$recent = new stdClass();
|
| 178 |
+
$recent->post_permalink = get_permalink($scheduled->ID);
|
| 179 |
+
$recent->ID = $scheduled->ID;
|
| 180 |
+
$recent->post_date = $scheduled->post_date;
|
| 181 |
+
$recent->post_title = $scheduled->post_title;
|
| 182 |
+
$recent->post_modified = $scheduled->post_modified;
|
| 183 |
+
|
| 184 |
+
$scheduled_posts[] = $recent;
|
| 185 |
+
}
|
| 186 |
+
usort($scheduled_posts, array($this, 'cmp_posts_worker'));
|
| 187 |
+
$stats['scheduled'] = array_slice($scheduled_posts, 0, $nposts);
|
| 188 |
+
}
|
| 189 |
+
return $stats;
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
function get_backups( $stats, $options = array() ){
|
| 193 |
+
|
| 194 |
+
$stats['mwp_backups'] = $this->get_backup_instance()->get_backup_stats();
|
| 195 |
+
$stats['mwp_next_backups'] = $this->get_backup_instance()->get_next_schedules();
|
| 196 |
+
$stats['mwp_backup_req'] = $this->get_backup_instance()->check_backup_compat();
|
| 197 |
+
|
| 198 |
+
return $stats;
|
| 199 |
+
}
|
| 200 |
+
|
| 201 |
+
function get_updates( $stats, $options = array() ){
|
| 202 |
+
|
| 203 |
+
if(isset($options['premium']) && $options['premium']){
|
| 204 |
+
$premium_updates = array();
|
| 205 |
+
$stats['premium_updates'] = apply_filters('mwp_premium_update_notification', $premium_updates);
|
| 206 |
+
}
|
| 207 |
+
if(isset($options['themes']) && $options['themes']){
|
| 208 |
+
$this->get_installer_instance();
|
| 209 |
+
$stats['upgradable_themes'] = $this->installer_instance->get_upgradable_themes();
|
| 210 |
+
}
|
| 211 |
+
|
| 212 |
+
if(isset($options['plugins']) && $options['plugins']){
|
| 213 |
+
$this->get_installer_instance();
|
| 214 |
+
$stats['upgradable_plugins'] = $this->installer_instance->get_upgradable_plugins();
|
| 215 |
+
}
|
| 216 |
+
|
| 217 |
+
return $stats;
|
| 218 |
+
}
|
| 219 |
+
|
| 220 |
+
function get_errors( $stats, $options = array() ){
|
| 221 |
+
|
| 222 |
+
$period = isset($options['days']) ? (int) $options['days'] * 86400 : 86400;
|
| 223 |
+
$errors = array();
|
| 224 |
+
if(isset($options['get']) && $options['get'] == true){
|
| 225 |
+
if( function_exists('ini_get') ){
|
| 226 |
+
$logpath = ini_get('error_log');
|
| 227 |
+
if(!empty($logpath) && file_exists($logpath)){
|
| 228 |
+
$logfile = @fopen($logpath, 'r');
|
| 229 |
+
if( $logfile ){
|
| 230 |
+
$maxlines = 1;
|
| 231 |
+
$linesize = -4096;
|
| 232 |
+
$lines = array();
|
| 233 |
+
$line = true;
|
| 234 |
+
while( $line !== false ){
|
| 235 |
+
fseek($logfile, ($maxlines * $linesize), SEEK_END);
|
| 236 |
+
$maxlines++;
|
| 237 |
+
if( $line ) {
|
| 238 |
+
$line = fread($logfile, ($linesize * -1)).$line;
|
| 239 |
+
|
| 240 |
+
foreach((array) preg_split("/(\r|\n|\r\n)/U", $line) as $l){
|
| 241 |
+
preg_match('/\[(.*)\]/Ui', $l, $match);
|
| 242 |
+
if(!empty($match)){
|
| 243 |
+
$errors[strtotime($match[1])][] = str_replace($match[0], '', $l);
|
| 244 |
+
if(strtotime($match[1]) < ((int) time() - $period)){
|
| 245 |
+
$line = false;
|
| 246 |
+
break;
|
| 247 |
+
}
|
| 248 |
+
}
|
| 249 |
+
}
|
| 250 |
+
}
|
| 251 |
+
}
|
| 252 |
+
}
|
| 253 |
+
|
| 254 |
+
}
|
| 255 |
+
}
|
| 256 |
+
}
|
| 257 |
+
$stats['errors'] = $errors;
|
| 258 |
+
return $stats;
|
| 259 |
+
}
|
| 260 |
+
|
| 261 |
+
function pre_init_stats( $params ){
|
| 262 |
+
|
| 263 |
+
global $_mmb_item_filter;
|
| 264 |
+
|
| 265 |
+
include_once(ABSPATH . 'wp-includes/update.php');
|
| 266 |
+
include_once(ABSPATH . '/wp-admin/includes/update.php');
|
| 267 |
+
|
| 268 |
+
$stats = $this->mmb_parse_action_params( 'pre_init_stats', $params, &$this );
|
| 269 |
+
$num = extract($params);
|
| 270 |
+
|
| 271 |
+
if ($refresh == 'transient') {
|
| 272 |
+
$current = $this->mmb_get_transient('update_core');
|
| 273 |
+
if(isset($current->last_checked)){
|
| 274 |
+
if(time() - $current->last_checked > 1800 ) {
|
| 275 |
+
@wp_version_check();
|
| 276 |
+
@wp_update_plugins();
|
| 277 |
+
@wp_update_themes();
|
| 278 |
+
}
|
| 279 |
+
}
|
| 280 |
+
}
|
| 281 |
+
|
| 282 |
+
global $wpdb, $mmb_wp_version, $mmb_plugin_dir, $wp_version, $wp_local_package;
|
| 283 |
+
|
| 284 |
+
$stats['worker_version'] = MMB_WORKER_VERSION;
|
| 285 |
+
$stats['wordpress_version'] = $wp_version;
|
| 286 |
+
$stats['wordpress_locale_pckg'] = $wp_local_package;
|
| 287 |
+
$stats['php_version'] = phpversion();
|
| 288 |
+
$stats['mysql_version'] = $wpdb->db_version();
|
| 289 |
+
$stats['wp_multisite'] = $this->mmb_multisite;
|
| 290 |
+
$stats['network_install'] = $this->network_admin_install;
|
| 291 |
+
|
| 292 |
+
if (!function_exists('get_filesystem_method'))
|
| 293 |
+
include_once(ABSPATH . 'wp-admin/includes/file.php');
|
| 294 |
+
|
| 295 |
+
$stats['writable'] = $this->is_server_writable();
|
| 296 |
+
|
| 297 |
+
return $stats;
|
| 298 |
+
}
|
| 299 |
+
|
| 300 |
+
function get( $params )
|
| 301 |
+
{
|
| 302 |
+
global $wpdb, $mmb_wp_version, $mmb_plugin_dir, $_mmb_item_filter;
|
| 303 |
+
|
| 304 |
+
include_once(ABSPATH . 'wp-includes/update.php');
|
| 305 |
+
include_once(ABSPATH . '/wp-admin/includes/update.php');
|
| 306 |
+
|
| 307 |
+
$stats = $this->mmb_parse_action_params( 'get', $params, &$this );
|
| 308 |
+
$update_check = array();
|
| 309 |
+
$num = extract($params);
|
| 310 |
+
if ($refresh == 'transient') {
|
| 311 |
+
$update_check = apply_filters('mwp_premium_update_check', $update_check);
|
| 312 |
+
if(!empty($update_check)){
|
| 313 |
+
foreach($update_check as $update){
|
| 314 |
+
if( is_array($update['callback']) ) {
|
| 315 |
+
$update_result = call_user_func( array( $update['callback'][0], $update['callback'][1] ) );
|
| 316 |
+
}
|
| 317 |
+
else if ( is_string($update['callback']) ) {
|
| 318 |
+
$update_result = call_user_func($update['callback']);
|
| 319 |
+
}
|
| 320 |
+
}
|
| 321 |
+
}
|
| 322 |
+
}
|
| 323 |
+
|
| 324 |
+
if( $this->mmb_multisite ){
|
| 325 |
+
$stats = $this->get_multisite( $stats );
|
| 326 |
+
}
|
| 327 |
+
|
| 328 |
+
$stats = apply_filters('mmb_stats_filter', $stats);
|
| 329 |
+
return $stats;
|
| 330 |
+
}
|
| 331 |
+
|
| 332 |
+
function get_multisite( $stats = array() ){
|
| 333 |
+
global $current_user;
|
| 334 |
+
|
| 335 |
+
if( $this->network_admin_install == '1' && current_user_can( 'update_core' )){
|
| 336 |
+
$user_blogs = get_blogs_of_user($current_user->ID);
|
| 337 |
+
if(!empty($user_blogs)){
|
| 338 |
+
$blogs = array();
|
| 339 |
+
foreach($user_blogs as $blog_id => $data){
|
| 340 |
+
if($this->mmb_multisite == $blog_id)
|
| 341 |
+
continue;
|
| 342 |
+
|
| 343 |
+
if(isset($data->siteurl))
|
| 344 |
+
$blogs[] = $data->siteurl;
|
| 345 |
+
}
|
| 346 |
+
if(!empty($blogs))
|
| 347 |
+
$stats['network_blogs'] = $blogs;
|
| 348 |
+
}
|
| 349 |
+
}
|
| 350 |
+
return $stats;
|
| 351 |
+
}
|
| 352 |
+
|
| 353 |
+
function get_comments_stats(){
|
| 354 |
+
$num_pending_comments = 3;
|
| 355 |
+
$num_approved_comments = 3;
|
| 356 |
+
$pending_comments = get_comments('status=hold&number=' . $num_pending_comments);
|
| 357 |
+
foreach ($pending_comments as &$comment) {
|
| 358 |
+
$commented_post = get_post($comment->comment_post_ID);
|
| 359 |
+
$comment->post_title = $commented_post->post_title;
|
| 360 |
+
}
|
| 361 |
+
$stats['comments']['pending'] = $pending_comments;
|
| 362 |
+
|
| 363 |
+
|
| 364 |
+
$approved_comments = get_comments('status=approve&number=' . $num_approved_comments);
|
| 365 |
+
foreach ($approved_comments as &$comment) {
|
| 366 |
+
$commented_post = get_post($comment->comment_post_ID);
|
| 367 |
+
$comment->post_title = $commented_post->post_title;
|
| 368 |
+
}
|
| 369 |
+
$stats['comments']['approved'] = $approved_comments;
|
| 370 |
+
|
| 371 |
+
return $stats;
|
| 372 |
+
}
|
| 373 |
+
|
| 374 |
+
function get_initial_stats()
|
| 375 |
+
{
|
| 376 |
+
global $mmb_plugin_dir;
|
| 377 |
+
|
| 378 |
+
$stats = array();
|
| 379 |
+
|
| 380 |
+
$stats['email'] = get_option('admin_email');
|
| 381 |
+
$stats['no_openssl'] = $this->get_random_signature();
|
| 382 |
+
$stats['content_path'] = WP_CONTENT_DIR;
|
| 383 |
+
$stats['worker_path'] = $mmb_plugin_dir;
|
| 384 |
+
$stats['worker_version'] = MMB_WORKER_VERSION;
|
| 385 |
+
$stats['site_title'] = get_bloginfo('name');
|
| 386 |
+
$stats['site_tagline'] = get_bloginfo('description');
|
| 387 |
+
$stats['site_home'] = get_option('home');
|
| 388 |
+
$stats['admin_url'] = admin_url();
|
| 389 |
+
$stats['wp_multisite'] = $this->mmb_multisite;
|
| 390 |
+
$stats['network_install'] = $this->network_admin_install;
|
| 391 |
+
|
| 392 |
+
if( $this->mmb_multisite ){
|
| 393 |
+
$details = get_blog_details($this->mmb_multisite);
|
| 394 |
+
if(isset($details->site_id)){
|
| 395 |
+
$details = get_blog_details($details->site_id);
|
| 396 |
+
if(isset($details->siteurl))
|
| 397 |
+
$stats['network_parent'] = $details->siteurl;
|
| 398 |
+
}
|
| 399 |
+
}
|
| 400 |
+
if (!function_exists('get_filesystem_method'))
|
| 401 |
+
include_once(ABSPATH . 'wp-admin/includes/file.php');
|
| 402 |
+
|
| 403 |
+
$stats['writable'] = $this->is_server_writable();
|
| 404 |
+
|
| 405 |
+
return $stats;
|
| 406 |
+
}
|
| 407 |
+
|
| 408 |
+
function set_hit_count($fix_count = false)
|
| 409 |
+
{
|
| 410 |
+
if ($fix_count || (!is_admin() && !MMB_Stats::detect_bots())) {
|
| 411 |
+
$date = date('Y-m-d');
|
| 412 |
+
$user_hit_count = (array) get_option('user_hit_count');
|
| 413 |
+
if (!$user_hit_count) {
|
| 414 |
+
$user_hit_count[$date] = 1;
|
| 415 |
+
update_option('user_hit_count', $user_hit_count);
|
| 416 |
+
} else {
|
| 417 |
+
$dated_keys = array_keys($user_hit_count);
|
| 418 |
+
$last_visit_date = $dated_keys[count($dated_keys) - 1];
|
| 419 |
+
|
| 420 |
+
$days = intval((strtotime($date) - strtotime($last_visit_date)) / 60 / 60 / 24);
|
| 421 |
+
|
| 422 |
+
if ($days > 1) {
|
| 423 |
+
$date_to_add = date('Y-m-d', strtotime($last_visit_date));
|
| 424 |
+
|
| 425 |
+
for ($i = 1; $i < $days; $i++) {
|
| 426 |
+
if (count($user_hit_count) > 14) {
|
| 427 |
+
$shifted = @array_shift($user_hit_count);
|
| 428 |
+
}
|
| 429 |
+
|
| 430 |
+
$next_key = strtotime('+1 day', strtotime($date_to_add));
|
| 431 |
+
if ($next_key == $date) {
|
| 432 |
+
break;
|
| 433 |
+
} else {
|
| 434 |
+
$user_hit_count[$next_key] = 0;
|
| 435 |
+
}
|
| 436 |
+
}
|
| 437 |
+
|
| 438 |
+
}
|
| 439 |
+
|
| 440 |
+
if (!isset($user_hit_count[$date])) {
|
| 441 |
+
$user_hit_count[$date] = 0;
|
| 442 |
+
}
|
| 443 |
+
if (!$fix_count)
|
| 444 |
+
$user_hit_count[$date] = ((int)$user_hit_count[$date] ) + 1;
|
| 445 |
+
|
| 446 |
+
if (count($user_hit_count) > 14) {
|
| 447 |
+
$shifted = @array_shift($user_hit_count);
|
| 448 |
+
}
|
| 449 |
+
|
| 450 |
+
update_option('user_hit_count', $user_hit_count);
|
| 451 |
+
|
| 452 |
+
}
|
| 453 |
+
}
|
| 454 |
+
}
|
| 455 |
+
|
| 456 |
+
function get_hit_count()
|
| 457 |
+
{
|
| 458 |
+
// Check if there are no hits on last key date
|
| 459 |
+
$mmb_user_hits = get_option('user_hit_count');
|
| 460 |
+
if (is_array($mmb_user_hits)) {
|
| 461 |
+
end($mmb_user_hits);
|
| 462 |
+
$last_key_date = key($mmb_user_hits);
|
| 463 |
+
$current_date = date('Y-m-d');
|
| 464 |
+
if ($last_key_date != $curent_date)
|
| 465 |
+
$this->set_hit_count(true);
|
| 466 |
+
}
|
| 467 |
+
|
| 468 |
+
return get_option('user_hit_count');
|
| 469 |
+
}
|
| 470 |
+
|
| 471 |
+
function detect_bots()
|
| 472 |
+
{
|
| 473 |
+
$agent = $_SERVER['HTTP_USER_AGENT'];
|
| 474 |
+
|
| 475 |
+
if ($agent == '')
|
| 476 |
+
return false;
|
| 477 |
+
|
| 478 |
+
$bot_list = array(
|
| 479 |
+
"Teoma",
|
| 480 |
+
"alexa",
|
| 481 |
+
"froogle",
|
| 482 |
+
"Gigabot",
|
| 483 |
+
"inktomi",
|
| 484 |
+
"looksmart",
|
| 485 |
+
"URL_Spider_SQL",
|
| 486 |
+
"Firefly",
|
| 487 |
+
"NationalDirectory",
|
| 488 |
+
"Ask Jeeves",
|
| 489 |
+
"TECNOSEEK",
|
| 490 |
+
"InfoSeek",
|
| 491 |
+
"WebFindBot",
|
| 492 |
+
"girafabot",
|
| 493 |
+
"crawler",
|
| 494 |
+
"www.galaxy.com",
|
| 495 |
+
"Googlebot",
|
| 496 |
+
"Scooter",
|
| 497 |
+
"Slurp",
|
| 498 |
+
"msnbot",
|
| 499 |
+
"appie",
|
| 500 |
+
"FAST",
|
| 501 |
+
"WebBug",
|
| 502 |
+
"Spade",
|
| 503 |
+
"ZyBorg",
|
| 504 |
+
"rabaz",
|
| 505 |
+
"Baiduspider",
|
| 506 |
+
"Feedfetcher-Google",
|
| 507 |
+
"TechnoratiSnoop",
|
| 508 |
+
"Rankivabot",
|
| 509 |
+
"Mediapartners-Google",
|
| 510 |
+
"Sogou web spider",
|
| 511 |
+
"WebAlta Crawler",
|
| 512 |
+
"aolserver"
|
| 513 |
+
);
|
| 514 |
+
|
| 515 |
+
$thebot = '';
|
| 516 |
+
foreach ($bot_list as $bot) {
|
| 517 |
+
if ((boolean)strpos($bot, $agent)) {
|
| 518 |
+
$thebot = $bot;
|
| 519 |
+
break;
|
| 520 |
+
}
|
| 521 |
+
}
|
| 522 |
+
|
| 523 |
+
if ($thebot != '') {
|
| 524 |
+
return $thebot;
|
| 525 |
+
} else
|
| 526 |
+
return false;
|
| 527 |
+
}
|
| 528 |
+
|
| 529 |
+
|
| 530 |
+
function set_notifications($params)
|
| 531 |
+
{
|
| 532 |
+
if(empty($params))
|
| 533 |
+
return false;
|
| 534 |
+
|
| 535 |
+
extract($params);
|
| 536 |
+
|
| 537 |
+
if(!isset($delete)){
|
| 538 |
+
$mwp_notifications = array(
|
| 539 |
+
'plugins' => $plugins,
|
| 540 |
+
'themes' => $themes,
|
| 541 |
+
'wp' => $wp,
|
| 542 |
+
'backups' => $backups,
|
| 543 |
+
'url' => $url,
|
| 544 |
+
'notification_key' => $notification_key
|
| 545 |
+
);
|
| 546 |
+
update_option('mwp_notifications',$mwp_notifications);
|
| 547 |
+
} else {
|
| 548 |
+
delete_option('mwp_notifications');
|
| 549 |
+
}
|
| 550 |
+
|
| 551 |
+
return true;
|
| 552 |
+
|
| 553 |
+
}
|
| 554 |
+
|
| 555 |
+
//Cron update check for notifications
|
| 556 |
+
function check_notifications(){
|
| 557 |
+
global $wpdb, $mmb_wp_version, $mmb_plugin_dir, $wp_version, $wp_local_package;
|
| 558 |
+
|
| 559 |
+
$mwp_notifications = get_option('mwp_notifications',true);
|
| 560 |
+
$updates = array();
|
| 561 |
+
|
| 562 |
+
if(is_array($mwp_notifications) && $mwp_notifications != false){
|
| 563 |
+
include_once(ABSPATH . 'wp-includes/update.php');
|
| 564 |
+
include_once(ABSPATH . '/wp-admin/includes/update.php');
|
| 565 |
+
extract($mwp_notifications);
|
| 566 |
+
|
| 567 |
+
//Check wordpress core updates
|
| 568 |
+
if($wp){
|
| 569 |
+
@wp_version_check();
|
| 570 |
+
if (function_exists('get_core_updates')) {
|
| 571 |
+
$wp_updates = get_core_updates();
|
| 572 |
+
if (!empty($wp_updates)) {
|
| 573 |
+
$current_transient = $wp_updates[0];
|
| 574 |
+
if ($current_transient->response == "development" || version_compare($wp_version, $current_transient->current, '<')) {
|
| 575 |
+
$current_transient->current_version = $wp_version;
|
| 576 |
+
$updates['core_updates'] = $current_transient;
|
| 577 |
+
} else
|
| 578 |
+
$updates['core_updates'] = array();
|
| 579 |
+
} else
|
| 580 |
+
$updates['core_updates'] = array();
|
| 581 |
+
}
|
| 582 |
+
}
|
| 583 |
+
|
| 584 |
+
//Check plugin updates
|
| 585 |
+
if($plugins){
|
| 586 |
+
@wp_update_plugins();
|
| 587 |
+
$this->get_installer_instance();
|
| 588 |
+
$updates['upgradable_plugins'] = $this->installer_instance->get_upgradable_plugins();
|
| 589 |
+
}
|
| 590 |
+
|
| 591 |
+
//Check theme updates
|
| 592 |
+
if($themes){
|
| 593 |
+
@wp_update_themes();
|
| 594 |
+
$this->get_installer_instance();
|
| 595 |
+
|
| 596 |
+
$updates['upgradable_themes'] = $this->installer_instance->get_upgradable_themes();
|
| 597 |
+
}
|
| 598 |
+
|
| 599 |
+
|
| 600 |
+
|
| 601 |
+
if($backups){
|
| 602 |
+
$this->get_backup_instance();
|
| 603 |
+
$backups = $this->backup_instance->get_backup_stats();
|
| 604 |
+
$updates['backups'] = $backups;
|
| 605 |
+
foreach($backups as $task_name => $backup_results){
|
| 606 |
+
foreach($backup_results as $k => $backup){
|
| 607 |
+
if(isset($backups[$task_name][$k]['server']['file_path'])){
|
| 608 |
+
unset($backups[$task_name][$k]['server']['file_path']);
|
| 609 |
+
}
|
| 610 |
+
}
|
| 611 |
+
}
|
| 612 |
+
$updates['backups'] = $backups;
|
| 613 |
+
}
|
| 614 |
+
|
| 615 |
+
if( !class_exists( 'WP_Http' ) ){
|
| 616 |
+
include_once( ABSPATH . WPINC. '/class-http.php' );
|
| 617 |
+
}
|
| 618 |
+
|
| 619 |
+
$args = array();
|
| 620 |
+
$args['body'] = array('updates' => $updates, 'notification_key' => $notification_key);
|
| 621 |
+
$result= wp_remote_post($url, $args);
|
| 622 |
+
|
| 623 |
+
}
|
| 624 |
+
|
| 625 |
+
|
| 626 |
+
}
|
| 627 |
+
|
| 628 |
+
|
| 629 |
+
function cmp_posts_worker($a, $b)
|
| 630 |
+
{
|
| 631 |
+
return ($a->post_modified < $b->post_modified);
|
| 632 |
+
}
|
| 633 |
+
|
| 634 |
+
}
|
| 635 |
?>
|
user.class.php
CHANGED
|
@@ -1,206 +1,213 @@
|
|
| 1 |
-
<?php
|
| 2 |
-
/*************************************************************
|
| 3 |
-
*
|
| 4 |
-
* user.class.php
|
| 5 |
-
*
|
| 6 |
-
* Add Users
|
| 7 |
-
*
|
| 8 |
-
*
|
| 9 |
-
* Copyright (c) 2011 Prelovac Media
|
| 10 |
-
* www.prelovac.com
|
| 11 |
-
**************************************************************/
|
| 12 |
-
|
| 13 |
-
class MMB_User extends MMB_Core
|
| 14 |
-
{
|
| 15 |
-
function __construct()
|
| 16 |
-
{
|
| 17 |
-
parent::__construct();
|
| 18 |
-
}
|
| 19 |
-
|
| 20 |
-
function get_users($args){
|
| 21 |
-
global $wpdb;
|
| 22 |
-
|
| 23 |
-
//$args: $user_roles;
|
| 24 |
-
if(empty($args))
|
| 25 |
-
return false;
|
| 26 |
-
|
| 27 |
-
extract($args);
|
| 28 |
-
|
| 29 |
-
$userlevels = array();
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
case '
|
| 34 |
-
case '
|
| 35 |
-
case '
|
| 36 |
-
case '
|
| 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 |
-
if
|
| 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 |
?>
|
| 1 |
+
<?php
|
| 2 |
+
/*************************************************************
|
| 3 |
+
*
|
| 4 |
+
* user.class.php
|
| 5 |
+
*
|
| 6 |
+
* Add Users
|
| 7 |
+
*
|
| 8 |
+
*
|
| 9 |
+
* Copyright (c) 2011 Prelovac Media
|
| 10 |
+
* www.prelovac.com
|
| 11 |
+
**************************************************************/
|
| 12 |
+
|
| 13 |
+
class MMB_User extends MMB_Core
|
| 14 |
+
{
|
| 15 |
+
function __construct()
|
| 16 |
+
{
|
| 17 |
+
parent::__construct();
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
function get_users($args){
|
| 21 |
+
global $wpdb;
|
| 22 |
+
|
| 23 |
+
//$args: $user_roles;
|
| 24 |
+
if(empty($args))
|
| 25 |
+
return false;
|
| 26 |
+
|
| 27 |
+
extract($args);
|
| 28 |
+
|
| 29 |
+
$userlevels = array();
|
| 30 |
+
$level_strings = array();
|
| 31 |
+
foreach($user_roles as $user_role){
|
| 32 |
+
switch(strtolower($user_role)){
|
| 33 |
+
case 'subscriber' : $userlevels[] = 0; $level_strings[] = $user_role; break;
|
| 34 |
+
case 'contributor' : $userlevels[] = 1; $level_strings[] = $user_role; break;
|
| 35 |
+
case 'author' : $userlevels[] = 2; $level_strings[] = $user_role; break;
|
| 36 |
+
case 'editor' : $userlevels[] = 7; $level_strings[] = $user_role; break;
|
| 37 |
+
case 'administrator' : $userlevels[] = 10; $level_strings[] = $user_role; break;
|
| 38 |
+
default: break;
|
| 39 |
+
}
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
$users = array();
|
| 43 |
+
$userlevel_qry = "('".implode("','",$userlevels)."')";
|
| 44 |
+
$userlevel_fallback_qry = "('%".implode("%','%",$level_strings)."%')";
|
| 45 |
+
$field = $wpdb->prefix."capabilities";
|
| 46 |
+
|
| 47 |
+
$user_metas = $wpdb->get_results("SELECT * from $wpdb->usermeta WHERE meta_key = '$field' AND meta_value IN $userlevel_fallback_qry");
|
| 48 |
+
if($user_metas == false || empty($user_metas)){
|
| 49 |
+
$user_metas = $wpdb->get_results("SELECT * from $wpdb->usermeta WHERE meta_key = 'wp_user_level' AND meta_value IN $userlevel_qry");
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
$include = array();
|
| 53 |
+
if(is_array($user_metas) && !empty($user_metas)){
|
| 54 |
+
foreach($user_metas as $user_meta){
|
| 55 |
+
$include[] = $user_meta->user_id;
|
| 56 |
+
}
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
$args = array();
|
| 60 |
+
$args['include'] = $include;
|
| 61 |
+
$args['fields'] = 'all_with_meta';
|
| 62 |
+
$temp_users = get_users($args);
|
| 63 |
+
$user = array();
|
| 64 |
+
foreach ((array)$temp_users as $temp){
|
| 65 |
+
$user['user_id'] = $temp->ID;
|
| 66 |
+
$user['user_login'] = $temp->user_login;
|
| 67 |
+
$user['wp_capabilities'] = array_keys($temp->$field);
|
| 68 |
+
$users[] = $user;
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
return array('users' => $users);
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
+
function add_user($args)
|
| 75 |
+
{
|
| 76 |
+
|
| 77 |
+
if(!function_exists('username_exists') || !function_exists('email_exists'))
|
| 78 |
+
include_once(ABSPATH . WPINC . '/registration.php');
|
| 79 |
+
|
| 80 |
+
if(username_exists($args['user_login']))
|
| 81 |
+
return array('error' => 'Username already exists');
|
| 82 |
+
|
| 83 |
+
if (email_exists($args['user_email']))
|
| 84 |
+
return array('error' => 'Email already exists');
|
| 85 |
+
|
| 86 |
+
if(!function_exists('wp_insert_user'))
|
| 87 |
+
include_once (ABSPATH . 'wp-admin/includes/user.php');
|
| 88 |
+
|
| 89 |
+
$user_id = wp_insert_user($args);
|
| 90 |
+
|
| 91 |
+
if($user_id){
|
| 92 |
+
|
| 93 |
+
if($args['email_notify']){
|
| 94 |
+
//require_once ABSPATH . WPINC . '/pluggable.php';
|
| 95 |
+
wp_new_user_notification($user_id, $args['user_pass']);
|
| 96 |
+
}
|
| 97 |
+
return $user_id;
|
| 98 |
+
}else{
|
| 99 |
+
return array('error' => 'User not added. Please try again.');
|
| 100 |
+
}
|
| 101 |
+
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
function edit_users($args){
|
| 105 |
+
|
| 106 |
+
if(empty($args))
|
| 107 |
+
return false;
|
| 108 |
+
if(!function_exists('get_user_to_edit'))
|
| 109 |
+
include_once (ABSPATH . 'wp-admin/includes/user.php');
|
| 110 |
+
if(!function_exists('wp_update_user'))
|
| 111 |
+
include_once (ABSPATH . WPINC.'/user.php');
|
| 112 |
+
|
| 113 |
+
extract($args);
|
| 114 |
+
//$args: $users, $new_role, $new_password, $user_edit_action
|
| 115 |
+
|
| 116 |
+
$return = array();
|
| 117 |
+
if(count($users)){
|
| 118 |
+
foreach($users as $user){
|
| 119 |
+
$result = '';
|
| 120 |
+
$user_obj = $this->mmb_get_user_info( $user );
|
| 121 |
+
if($user_obj != false){
|
| 122 |
+
switch($user_edit_action){
|
| 123 |
+
case 'change-password':
|
| 124 |
+
if($new_password){
|
| 125 |
+
$user_data = array();
|
| 126 |
+
$userdata['user_pass'] = $new_password;
|
| 127 |
+
$userdata['ID'] = $user_obj->ID;
|
| 128 |
+
$result = wp_update_user($userdata);
|
| 129 |
+
} else {
|
| 130 |
+
$result = array('error' => 'No password provided.');
|
| 131 |
+
}
|
| 132 |
+
break;
|
| 133 |
+
case 'change-role':
|
| 134 |
+
if($new_role){
|
| 135 |
+
if($user != $username){
|
| 136 |
+
if(!$this->last_admin($user_obj)){
|
| 137 |
+
$user_data = array();
|
| 138 |
+
$userdata['ID'] = $user_obj->ID;
|
| 139 |
+
$userdata['role'] = strtolower($new_role);
|
| 140 |
+
$result = wp_update_user($userdata);
|
| 141 |
+
} else {
|
| 142 |
+
$result = array('error' => 'Cannot change role to the only one left admin user.');
|
| 143 |
+
}
|
| 144 |
+
} else {
|
| 145 |
+
$result = array('error' => 'Cannot change role to user assigned for ManageWP.');
|
| 146 |
+
}
|
| 147 |
+
} else {
|
| 148 |
+
$result = array('error' => 'No role provided.');
|
| 149 |
+
}
|
| 150 |
+
break;
|
| 151 |
+
case 'delete-user':
|
| 152 |
+
if($user != $username){
|
| 153 |
+
if(!$this->last_admin($user_obj)){
|
| 154 |
+
if($reassign_user){
|
| 155 |
+
$to_user = $this->mmb_get_user_info( $reassign_user );
|
| 156 |
+
if($to_user != false){
|
| 157 |
+
$result = wp_delete_user($user_obj->ID, $to_user->ID);
|
| 158 |
+
} else {
|
| 159 |
+
$result = array('error' => 'User not deleted. User to reassign posts doesn\'t exist.');
|
| 160 |
+
}
|
| 161 |
+
} else {
|
| 162 |
+
$result = wp_delete_user($user_obj->ID);
|
| 163 |
+
}
|
| 164 |
+
} else {
|
| 165 |
+
$result = array('error' => 'Cannot delete the only one left admin user.');
|
| 166 |
+
}
|
| 167 |
+
} else {
|
| 168 |
+
$result = array('error' => 'Cannot delete user assigned for ManageWP.');
|
| 169 |
+
}
|
| 170 |
+
|
| 171 |
+
break;
|
| 172 |
+
default:
|
| 173 |
+
$result = array('error' => 'Wrong action provided. Please try again.');
|
| 174 |
+
break;
|
| 175 |
+
}
|
| 176 |
+
} else {
|
| 177 |
+
$result = array('error' => 'User not found.');
|
| 178 |
+
}
|
| 179 |
+
|
| 180 |
+
if(is_wp_error($result)){
|
| 181 |
+
$result = array('error' => $result->get_error_message());
|
| 182 |
+
}
|
| 183 |
+
|
| 184 |
+
$return[$user] = $result;
|
| 185 |
+
}
|
| 186 |
+
}
|
| 187 |
+
|
| 188 |
+
return $return;
|
| 189 |
+
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
//Check if user is the only one admin on the site
|
| 193 |
+
function last_admin($user_obj){
|
| 194 |
+
global $wpdb;
|
| 195 |
+
$field = $wpdb->prefix."capabilities";
|
| 196 |
+
$capabilities = array_map('strtolower',array_keys($user_obj->$field));
|
| 197 |
+
$result = count_users();
|
| 198 |
+
if(in_array('administrator',$capabilities)){
|
| 199 |
+
|
| 200 |
+
if(!function_exists('count_users')){
|
| 201 |
+
include_once (ABSPATH . WPINC. '/user.php');
|
| 202 |
+
}
|
| 203 |
+
|
| 204 |
+
$result = count_users();
|
| 205 |
+
if($result['avail_roles']['administrator'] == 1){
|
| 206 |
+
return true;
|
| 207 |
+
}
|
| 208 |
+
}
|
| 209 |
+
return false;
|
| 210 |
+
}
|
| 211 |
+
|
| 212 |
+
}
|
| 213 |
?>
|
version
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
3.9.
|
| 1 |
+
3.9.10
|
