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 reader_article where 
50                   fetched_dt < NOW() - INTERVAL {$inM} MONTH
51                   AND
52                   fetched
53                   AND
54                   views < 1
55                   LIMIT 100000
56         ");
57         // pruning is for our press project - so we do not clean up dependant tables at present..
58         
59         
60         
61         $ff = HTML_Flexyframework::get()->Pman;
62         
63         $y = date("Y");
64         $m = date("m");
65         $rootDir = $ff['storedir'].'/rss';
66         
67         $dirs = array_filter(glob($rootDir."/*"), 'is_dir');
68         foreach($dirs as $d){
69             $mdirs = array_filter(glob($d."/*"), 'is_dir');
70             foreach($mdirs as $md){
71                 $dirDate = str_replace($rootDir."/", '', $md);
72                 if(strtotime($dirDate."/01") < strtotime("now - {$inM} months")){
73                     //echo "remove $md\n";
74                     $this->delTree($md);
75                       //  echo $md . " is removed. \n";
76                     
77                 }
78             }
79         }
80         
81         exit;
82     }
83     
84     function delTree($dir)
85     {
86         $files = array_diff(scandir($dir), array('.','..'));
87         echo "$dir : Removing " . count($files) . " files\n";
88         clearstatcache();
89         foreach ($files as $file){
90             if (!file_exists("$dir/$file")) {
91                 continue;
92             }
93             if (is_dir("$dir/$file")) {
94                 $this->delTree("$dir/$file");
95                 continue;
96             }
97             unlink("$dir/$file");
98         }
99         return rmdir($dir); 
100     }
101     
102 }