Prune.php
[Pman.Core] / Prune.php
1 <?php
2
3
4 /**
5  * Description of Prune
6  *
7  * @author chris
8  */
9
10 require_once 'Pman.php';
11 class Pman_Core_Prune extends Pman
12 {
13     //put your code here
14     static $cli_desc = "COre Prune -- remove old event data (6 months is normally a good idea).";
15     static $cli_opts = array(
16         'months' => array(
17             'desc' => 'How many months',
18             //'default' => 0,
19             'short' => 'm',
20             'min' => 1,
21             'max' => 1,
22             
23         )
24     );
25     var $cli = false;
26     
27     function getAuth() {
28         $ff = HTML_FlexyFramework::get();
29         if (!empty($ff->cli)) {
30             $this->cli = true;
31             return true;
32         }
33 //        return true;// for test only
34         return false;
35     }
36     
37     function get($m="", $opts)
38     {
39         
40         $this->prune((int)$opts['months']);
41     }
42     
43     function prune($inM)
44     {
45         // 40 seconds ? to delete 100K records..
46         //DB_DataObject::debugLevel(1);
47         $f = DB_DataObject::Factory('reader_article');
48         $f->query("
49             DELETE FROM Events where 
50                   event_when < NOW() - INTERVAL {$inM} MONTH
51                   LIMIT 100000
52         ");
53         // pruning is for our press project - so we do not clean up dependant tables at present..
54         
55         
56         
57         $ff = HTML_Flexyframework::get()->Pman;
58         
59         $y = date("Y");
60         $m = date("m");
61         $rootDir = $ff['storedir'].'/rss';
62         
63         $dirs = array_filter(glob($rootDir."/*"), 'is_dir');
64         foreach($dirs as $d){
65             $mdirs = array_filter(glob($d."/*"), 'is_dir');
66             foreach($mdirs as $md){
67                 $dirDate = str_replace($rootDir."/", '', $md);
68                 if(strtotime($dirDate."/01") < strtotime("now - {$inM} months")){
69                     //echo "remove $md\n";
70                     $this->delTree($md);
71                       //  echo $md . " is removed. \n";
72                     
73                 }
74             }
75         }
76         
77         exit;
78     }
79     
80     function delTree($dir)
81     {
82         $files = array_diff(scandir($dir), array('.','..'));
83         echo "$dir : Removing " . count($files) . " files\n";
84         clearstatcache();
85         foreach ($files as $file){
86             if (!file_exists("$dir/$file")) {
87                 continue;
88             }
89             if (is_dir("$dir/$file")) {
90                 $this->delTree("$dir/$file");
91                 continue;
92             }
93             unlink("$dir/$file");
94         }
95         return rmdir($dir); 
96     }
97     
98 }