src/strip.vala
[app.mailtrimmer] / src / strip.vala
1 /**
2
3   needs to scan 2 things
4   a) our mailfort email database
5        point it at the top directory, containing YEAR/MONTH/DAY.... directories.
6        scan each file (over a year old...)
7        extract out the attachment, and replace with HTML
8        DATABASE? - mysql or sqlite? - 
9            filesize / name / date / checksum / mimetype -- into mailfort should be OK.
10   b) the imap user emails
11            loop through user's directories
12            check age of email .. over 1 years..
13            ?? how to prevent 'repeat' scanning of emails?
14               ??? hidden '.' files containing last scan date?
15
16            check if file exists in our DB.. - replace the link...
17            otherwise generate a file. + add to DB...
18            
19    c) retreival system
20      -> URL -> get file
21    d) redirect system.
22      -> URL -> redirect to correct server
23
24
25 More notes on our Mailfort DB sync:
26 * some of these attachments are already in the database...
27  - so we need to update the DB..
28  - probably worth putting the code in a stored procedure..
29  
30  -- key scenarios
31    * first scan (and extract)
32    * rescan (as I messed up the first time - fix the DB...)
33    * email scan - attachments might not have related messages.
34  
35  
36  - {id} attachment_init(
37                 {exim_msg_id}
38                 {chksum}
39                 {filename),
40         )
41         // creates or returns id (can look for existing messages?
42         // can do a merge?? - copy 'old' record data into 'new'....  "prefer checksummed"
43         
44         attachment_update(
45                 {id}
46                 {exim_msg_id}
47                 {mailfort_msg_sig}
48                 {file_size}
49                 {created} // message date..
50                 {chksum}
51                 {filename),
52         {mime_type}
53         )
54         attachment_update_store(
55                         {id}
56                         {stored_filename}
57         )
58
59
60 */ 
61
62 // valac --pkg gmime --vapi
63 /*
64
65 // http://www.fromdual.com/mysql-vala-program-example << check mysql if this does not work.
66
67  valac  -g --vapidir=. --thread  strip.vala   --vapidir=../vapi \
68      --pkg glib-2.0 --pkg mysql --pkg gio-2.0 --pkg posix --pkg gmime-2.6 \
69       --Xcc=-lmysqlclient  -v \
70        -o /tmp/strip
71 */ 
72  
73 public class StripApplication : GLib.Application {
74
75         public static string? opt_path = null;
76         public static string? opt_file = null;  
77         public static string? opt_target_path = null;
78         public static string? opt_db_host = "127.0.0.1";
79         public static string? opt_db_name = null;       
80         public static string? opt_db_user = null;               
81         public static string? opt_db_pass = null;               
82
83         public static int    opt_limit = -1;
84
85         public static bool      opt_is_extracting = false;
86         public static bool      opt_is_replacing = false;
87         public static bool      opt_scan_imap  = false; 
88         public static bool      opt_scan_mailfort  = false;     
89         public static bool              opt_dump = false;       
90         public static bool              opt_debug = false; 
91         
92         public static bool opt_debug_sql = false;       
93         public static string? opt_replace_link = null;
94         
95         
96         public const GLib.OptionEntry[] options = {
97                 
98                 { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "show debug messages for components", null },
99                 { "debug-sql", 0, 0, OptionArg.NONE, ref opt_debug_sql, "debug the SQL statements", null },         
100
101                 { "path", 0, 0, OptionArg.STRING, ref opt_path, "Directory where email to be parsed is", null },        
102                 { "file", 0, 0, OptionArg.STRING, ref opt_file, "A specific file to be parsed", null }, 
103
104                 { "target-path", 0, 0, OptionArg.STRING, ref opt_target_path, "Directory where attachments are to be put", null },
105
106                 { "link", 0, 0, OptionArg.STRING, ref opt_replace_link, "url for the replement link: eg. http://www.mysite.com/xxxx/%s", null },         
107                         
108                 { "host", 0, 0, OptionArg.STRING, ref opt_db_host, "Mysql host (default localhost)", null },    
109                 { "name", 0, 0, OptionArg.STRING, ref opt_db_name, "Mysql database name REQUIRED", null },      
110                 { "user", 0, 0, OptionArg.STRING, ref opt_db_user, "Mysql database user REQUIRED", null },      
111                 { "pass", 0, 0, OptionArg.STRING, ref opt_db_pass, "Mysql database password (default empty)", null },            
112
113                 { "extract", 0, 0, OptionArg.NONE, ref opt_is_extracting, "Should attachments be extracted (default NO)", null },
114                 { "replace", 0, 0, OptionArg.NONE, ref opt_is_replacing, "Should attachments be replaced (default NO)", null },
115                 { "dump", 0, 0, OptionArg.NONE, ref opt_dump, "Print the replaced mail contents to stdout", null },         
116
117                 { "limit", 0, 0, OptionArg.INT, ref opt_limit, "stop after X number of messages with attachments have been processed", null },         
118
119                 { "scan-imap", 0, 0, OptionArg.NONE, ref opt_scan_imap, "scan an imap tree", null },
120                 { "scan-mailfort", 0, 0, OptionArg.NONE, ref opt_scan_mailfort, "scan a mailfort tree", null },  
121                 { null }       
122         };         
123     public StripApplication( string[] args ) 
124     {
125                  Object(
126             application_id: "org.roojs.mailstripper",
127             flags: ApplicationFlags.FLAGS_NONE
128          );
129  
130                         
131          var opt_context =  new GLib.OptionContext ("Mail Stripper");
132                         
133          try {
134                                 
135             opt_context.set_help_enabled (true);
136             opt_context.add_main_entries (options, null);
137             opt_context.parse ( ref  args);
138             //opt_detach = !optx_no_detach;
139                             
140  
141                             
142              // options that have to be set.. bee or hive... (or stop all)
143             if ((!opt_scan_mailfort && !opt_scan_imap) || (opt_scan_mailfort && opt_scan_imap))  {
144                stdout.printf ("You must specify the type of directory tree to scan - either imap or mailfort\n%s",
145                    opt_context.get_help(true, null));
146                GLib.Process.exit(Posix.EXIT_FAILURE);
147             }
148                         
149                          if ((opt_db_name == null || opt_db_name.length < 1 || opt_db_user == null || opt_db_user.length < 1))  {
150                stdout.printf ("You must specify the database name / user \n%s",
151                    opt_context.get_help(true, null));
152                GLib.Process.exit(Posix.EXIT_FAILURE);
153             }
154                          if ((opt_path == null || opt_path.length < 1)   )  {
155                stdout.printf ("You must specify the scan start path\n%s",
156                    opt_context.get_help(true, null));
157                GLib.Process.exit(Posix.EXIT_FAILURE);
158             }
159                         if (opt_replace_link == null || (opt_replace_link.length < 1))  {
160                stdout.printf ("You must specify the link to use in the replacement \n%s",
161                    opt_context.get_help(true, null));
162                GLib.Process.exit(Posix.EXIT_FAILURE);
163             }
164             if ((opt_is_replacing || opt_is_extracting ) && (opt_target_path == null || opt_target_path.length < 1)) {
165                       stdout.printf ("You must specify a target path to put attachments\n%s",
166                    opt_context.get_help(true, null));
167                GLib.Process.exit(Posix.EXIT_FAILURE);
168             }
169             
170             
171          } catch (GLib.OptionError e) {
172             stdout.printf ("error: %s\n", e.message);
173             stdout.printf ("Run '%s --help' to see a full list of available command line options.\n%s", 
174                       args[0], opt_context.get_help(true, null));
175             GLib.Process.exit(Posix.EXIT_FAILURE);
176          }
177         }
178          
179     public static int main(string[] args) 
180     {
181                 
182                 var application = new StripApplication(  args);
183                 
184                 GLib.Log.set_always_fatal(LogLevelFlags.LEVEL_ERROR | LogLevelFlags.LEVEL_CRITICAL); 
185            
186            if (opt_debug || opt_debug_sql) {
187                         GLib.Log.set_handler(null, 
188                         GLib.LogLevelFlags.LEVEL_DEBUG | GLib.LogLevelFlags.LEVEL_WARNING | GLib.LogLevelFlags.LEVEL_INFO, 
189                         (dom, lvl, msg) => {
190                                         print("%s\n", msg);
191                                 }
192                         );
193                 }
194         
195         GMime.init(0);
196                 if (StripApplication.opt_is_replacing) {
197                         StripApplication.opt_is_extracting = true;
198                 }
199   
200                 GLib.debug("scanning folder: %s", opt_path );
201                 
202                 var strip = new Strip( opt_path );
203  
204                 
205                 strip.mysql  = new Mysql.Database();
206                 if (!strip.mysql.real_connect(
207                                 opt_db_host,
208                                 opt_db_user ,
209                                 opt_db_pass == null ? "" : opt_db_pass, //passwd
210                                 opt_db_name, //DB
211                                 3306, // not changable...?
212                                 null
213                         )
214                 ) {
215                         stdout.printf("ERROR %u: Connection failed: %s\n", 
216                                 strip.mysql.errno(), strip.mysql.error()
217                         );
218                         return 1;
219                 }
220         if (opt_file != null) {
221                 strip.base_dir = opt_path;
222                 strip.scan_file( GLib.Path.get_dirname(opt_file),  GLib.Path.get_basename(opt_file));
223                 return 0;
224         }
225
226                 strip.scan_dir(opt_path);
227         
228
229         
230         return 0;
231     }
232 }
233
234 public class Strip : GLib.Object {
235         
236  
237         
238         public string base_dir = "";
239         
240         public Mysql.Database mysql;
241         
242         int processed = 0;
243     
244     uint64 used_space_before = 0;
245     uint64 used_space_after = 0;
246     
247     
248     public Strip(string base_dir)
249     {
250         this.base_dir = base_dir;
251     }
252     
253     public void handle_part(GMime.Object parent, GMime.Object mime_obj)
254     {
255                 if (mime_obj is GMime.Part) {
256                    var  p = (GMime.Part)mime_obj;
257                         var ct = p.get_content_type();
258                         var cd = p.get_content_disposition();
259                         
260                         var sid = p.get_header("X-strip-id");
261                     if (sid != null && sid.length > 0) {
262                         this.update_attachment_db(p);
263                             GLib.debug("Skip attachment replace - it's already been done");
264                         return;
265                         }
266                         
267                         if (cd == null || cd.get_disposition().down() != "attachment") {
268                                 return;
269                         }
270                         if (ct.get_media_type() == "text") {
271                                 return;
272                         }
273                         if (ct.to_string() == "application/pgp-encrypted") {
274                                 return;
275                         }
276                         if (ct.to_string() == "application/pgp-keys") {
277                                 return;
278                         }
279                         if (p.get_filename() == null) {
280                                 return;
281                         }
282                          // print("got part %s\n", ct.to_string());
283                          if (parent is GMime.Multipart) {
284                                 
285                                 this.replace_attachment(((GMime.Multipart)parent), p);
286                                 // remove it !?
287
288                           }
289
290
291                         return;
292                 }
293                 if (mime_obj is GMime.Multipart) {
294                         
295
296                         var  mp = (GMime.Multipart)mime_obj;
297                         //var ct = mp.get_content_type();
298
299                         //print("got multi-part %s\n", ct.to_string());
300                         for (var i = 0; i< mp.get_count(); i++) { 
301                           var mo = mp.get_part(i);
302                           this.handle_part(mime_obj,mo);
303                         }
304                    // ((GMime.Multipart)mime_obj).foreach((sub_obj) => {
305                    //     Strip.handle_part(sub_obj);
306                 //
307                    // });
308
309
310                         return;
311                 }
312
313                 if (mime_obj is GMime.MessagePart) {
314                         var msg = ((GMime.MessagePart)mime_obj).get_message();
315                         msg.foreach((subobj) => {
316                          this.handle_part(msg,subobj);
317                     });
318                 
319                         //print("got message-part\n");
320                         return;
321                 }
322                 
323                 if (mime_obj is GMime.Message) {
324                         var mp = ((GMime.Message) mime_obj).get_mime_part();
325
326                         if (!(mp is GMime.Multipart)) {
327                                 GLib.debug("get mimepart does not return a Multipart?");
328                                 return;
329                         }
330                         
331                         var mpc = ((GMime.Multipart)mp).get_count();
332                         
333                         //GLib.debug("Message has %d parts", mpc); 
334                         for (var i =0 ; i < mpc; i++) {
335                                 //GLib.debug("Getting part %d", i); 
336                                 var submime_obj = ((GMime.Multipart)mp).get_part(i);
337                         this.handle_part(mp,submime_obj);                       
338                     }
339                         print("got message??\n");
340                         return;
341                 }
342                 
343                 print("got something else\n");
344
345
346     }
347     public void update_attachment_db(GMime.Part attachment)
348     {
349         // only called when we have an sid...
350         var sid = attachment.get_header("X-strip-id");
351         if (sid == null || sid.length < 1) {
352                 GLib.debug("Strange - update attachment db called ?");
353                 return;
354         }
355         this.query("""
356                 SELECT attachment_update(
357                                 %d, -- in_id INT(11),
358                                 '%s', -- in_mime_type varchar(255),
359                                 %d, -- in_mime_size int(11),
360                                 '%s', -- in_created DATETIME,
361                                 '%s' -- in_mailfort_sig varchar(64)
362                                 
363                     )""
364         
365                                  
366               """.printf(
367                         int.parse(sid),
368                         "", // this will be ignored..
369                         0, // this will be ingored..
370                                 this.created_date,
371                                 this.mysql_escape(this.active_message_x_mailfort_sig)
372               
373               )
374                 );
375         
376         
377     
378     }
379     
380     
381     public void replace_attachment(GMime.Multipart parent, GMime.Part attachment)
382     {
383         var sid = attachment.get_header("X-strip-id");
384         if (sid != null && sid.length > 0) {
385                 GLib.debug("Skip attachment replace - it's already been done");
386                 return;
387         }
388         
389         var c = attachment.get_content_object();
390         
391         var filename = attachment.get_filename().replace("/", "-");
392         var fn = GLib.Environment.get_tmp_dir() +
393                         "/"+ this.active_name + "."+   filename;
394
395             var outfile = new GMime.StreamFile.for_path(fn, "w");
396             outfile.set_owner(true);
397             var file_size = (int) c.write_to_stream(outfile);
398             var chksum = this.md5_file(fn);
399             outfile.flush();
400             outfile = null;
401         
402         if (file_size == 0) {
403
404                 GLib.debug("ERROR - file size of write to stream returned 0?");
405                 Posix.unlink(fn);               
406                 return;
407         }
408         
409         
410         
411  
412         var mime_type= attachment.get_content_type().to_string();
413         // at this point we have to do our database magic...
414         //filesize / name / date / checksum / mimetype -- into mailfort should be OK.
415         
416         this.query("""
417                 SELECT 
418                 
419                 attachment_init(
420                                 '%s', -- in_msgid VARCHAR(32),
421                                 '%s', -- in_checksum VARCHAR(64),
422                                 '%s', -- in_mime_filename varchar(255)
423                                 %d -- filesize
424                         ) as id 
425                         
426           """.printf(
427                         this.mysql_escape(this.active_message_exim_id),
428                         chksum,
429                         this.mysql_escape( attachment.get_filename() ), // what is thsi is invalid?
430                          file_size)
431                 );
432                 var file_id = "0";
433         var rs = mysql.use_result();
434  
435                 var row = rs.fetch_row();
436                 
437                 var target_fn = "";
438                 
439                 //var create_dir = this.created_dir;
440                 
441                 
442                 if (rs == null  || rs.num_rows() < 1) {
443                         GLib.debug("ERROR - CALL to attachment_init failed");
444                 Posix.unlink(fn);               
445                 return;
446                 
447                 }
448                 file_id =  row[0];
449                 if (int.parse(file_id) < 1) {
450                         GLib.debug("ERROR - CALL to attachment_init failed - returned 0?");
451                 Posix.unlink(fn);               
452                 return;
453                 
454                 }
455                         
456         
457                 GLib.debug("fn = %s, m5=%s, id= %s", filename, mime_type, this.active_message_id);
458                 this.query("""
459                 
460                         SELECT attachment_update(
461                                 %d, -- in_id INT(11),
462                                 '%s', -- in_mime_type varchar(255),
463                                 '%s', -- in_created DATETIME,
464                                 '%s', -- in_mailfort_sig varchar(64)
465                                 
466                                 ) as result
467       """.printf(
468                 int.parse(file_id),
469                         this.mysql_escape(mime_type),
470                         this.created_date
471                         this.mysql_escape(this.active_message_x_mailfort_sig)
472                 ));
473
474                                  
475  
476                         this.used_space_after += file_size;
477                         
478                          
479                         file_id = "%d".printf((int)file_id_real);
480                         
481                         
482
483                    if (StripApplication.opt_is_extracting) {
484                                 target_fn = StripApplication.opt_target_path + "/" + this.created_dir +"/"+ file_id  + "-" + filename;
485                         } 
486                     
487                     var stored =  "/" + this.created_dir +"/"+ file_id  + "-" + filename;
488                     
489                         this.query("""
490                                 UPDATE
491                                         Attachment
492                                 SET
493                                         stored_filename = '%s'
494                                 WHERE
495                                         id = %s
496                         """.printf(
497                                 this.mysql_escape( stored),
498                                 file_id
499                         ));
500                 
501                 } 
502                 
503         var rep = new GMime.Part.with_type("text","html");
504         // we have to set up a redirect server - to redirect hpasite... to their internal service..
505         rep.set_filename(filename);
506         var txt = "<html><body>"+
507             "<a href=\"" + StripApplication.opt_replace_link + "/" +
508                         file_id + "/" + create_dir + "/"+chksum+"/"+ GLib.Uri.escape_string( filename) +"\">" + 
509             GLib.Uri.escape_string( filename) + // fixme needs html escaping...
510             "</a>" +
511             "</body></html>";
512
513         rep.get_content_type().set_parameter("charset", "utf-8");
514                 rep.set_header("X-strip-id", file_id);
515                 rep.set_header("X-strip-content-name",  filename);                              
516                 rep.set_header("X-strip-path", create_dir + "/" + file_id + "-" + filename);            
517                 rep.set_header("X-strip-content-type", mime_type);              
518         var stream =  new GMime.StreamMem.with_buffer(txt.data);
519         var con = new GMime.DataWrapper.with_stream(stream,GMime.ContentEncoding.DEFAULT);
520
521         rep.set_content_object(con);
522         GLib.debug("Replacing Attachment with HTML");
523         parent.replace(parent.index_of(attachment), rep);
524                 this.has_replaced = true;
525                  
526                 if (StripApplication.opt_is_extracting && target_fn.length > 0) {
527                         var dir = GLib.Path.get_dirname(target_fn);
528                         if (!FileUtils.test (dir, FileTest.IS_DIR)) {
529                                 GLib.DirUtils.create_with_parents(dir, 0755);
530                         }
531                         GLib.debug("Creating file %s", target_fn);
532                         if (!FileUtils.test (target_fn, FileTest.EXISTS)) {
533                                 Posix.link(fn, target_fn);
534                         }
535                 } else { 
536                         GLib.debug("Skipping extraction %s", target_fn);
537                 }
538                 Posix.unlink(fn);
539                 
540
541
542     }
543     
544     public int query(string str)
545     {
546         if (StripApplication.opt_debug_sql) {
547                 GLib.debug("SQL: %s\n", str);
548                 }
549         
550         var rc=  this.mysql.query(str);         
551         if ( rc != 0 ) {
552
553                     GLib.debug("ERROR %u: Query failed: %s\n", this.mysql.errno(), this.mysql.error());
554                 }
555                 return rc;
556         }
557     
558     public string mysql_escape(string str)
559     {
560             unichar[] value_escaped = new unichar[str.length * 2 + 1];
561                 this.mysql.real_escape_string ((string) value_escaped, str, str.length);
562                 return (string) value_escaped;
563     }
564     
565     public string  md5_file(string fn) {
566               Checksum checksum = new Checksum (ChecksumType.MD5);
567
568               FileStream stream = FileStream.open (fn, "rb");
569               uint8 fbuf[100];
570               size_t size;
571
572               while ((size = stream.read (fbuf)) > 0) {
573                       checksum.update (fbuf, size);
574               }
575
576               unowned string digest = checksum.get_string ();
577               return digest;
578     }
579
580         string active_path = "";    
581     string active_name = "";
582     string active_message_id = "";
583     string active_message_x_mailfort_sig = "";
584     string active_message_exim_id = "";
585     bool has_replaced = false;
586     string created_date = ""; // should be YYYY-mm-dd
587     string created_dir = ""; // should be YYY/mm/dd
588     
589     public void scan_file(string path, string name)
590     {
591                 GLib.debug("Scan: %s/%s", path,name); 
592                 
593                 this.has_replaced = false; 
594         this.active_path = path;
595         this.active_name = name;
596         this.active_message_id = "";
597
598         this.created_dir = this.active_path.substring(this.base_dir.length + 1 );
599                 this.created_date = this.created_dir.replace("/", "-");
600         
601         var file_size = (int) File.new_for_path(path +"/" + name)
602                                         .query_info(GLib.FileAttribute.STANDARD_SIZE,GLib.FileQueryInfoFlags.NONE,null)
603                                         .get_size();
604                                                
605         this.used_space_before += file_size;
606         
607         var stream = new GMime.StreamFs.for_path (path +"/" + name,Posix.O_RDONLY, 0);
608         //stream.set_owner(true);
609         var parser = new GMime.Parser.with_stream(stream);
610         var message = parser.construct_message();
611  
612                 if (message == null) {
613                         GLib.debug("Could not parse file? %s/%s", path,name);
614                 this.used_space_after += file_size;                     
615                 return;
616                 }       
617
618
619                 // check : - is message over a year old?                
620                 // get various msg info..
621                 this.active_message_id = message.get_message_id();
622                 this.active_message_x_mailfort_sig = message.get_header("x-mailfort-sig");
623                 var recvd = message.get_header("received");
624                 this.active_message_exim_id = "";
625                 if (recvd != null && recvd.length > 1) {
626                         GLib.debug("RECV: %s", recvd);
627                         var lines = recvd.split("\t");
628                         for (var i = 0; i < lines.length;i++) {
629                                 var bits = lines[i].strip().split(" ");
630                                 if (bits[0] == "id") {
631                                         this.active_message_exim_id = bits[1];
632                                 }
633                         }
634                 }
635                 GLib.debug("Message DATA:\n mid: %s\nmailfort: %s \nexim_id: %s",
636                         this.active_message_id,
637                         this.active_message_x_mailfort_sig,
638                         this.active_message_exim_id
639                 );
640                  
641                         
642                 // DATE?
643                 
644                 var mp = message.get_mime_part();
645
646                 if (!(mp is GMime.Multipart)) {
647                         GLib.debug("get mimepart does not return a Multipart?");
648                 this.used_space_after += file_size;                                             
649                         return;
650                 }
651                 
652                 var mpc = ((GMime.Multipart)mp).get_count();
653                 
654                 //GLib.debug("Message has %d parts", mpc); 
655                 for (var i =0 ; i < mpc; i++) {
656                         //GLib.debug("Getting part %d", i); 
657                         var mime_obj = ((GMime.Multipart)mp).get_part(i);
658             this.handle_part(mp,mime_obj);                      
659         }
660                 
661         parser= null;
662
663       //  stream.set_owner(false);
664             //stream.close();
665         stream = null;//.close();
666         
667         
668                 if (!this.has_replaced) {
669                         this.used_space_after += file_size;
670                         GLib.debug("skpping write file - no replacement occured");
671                         return;
672                 }
673                 string tmpfile = "";
674                 GMime.Stream outstream = new GMime.StreamNull();
675                 if (StripApplication.opt_is_replacing) {
676                 
677                         tmpfile = GLib.Environment.get_tmp_dir() +"/" + name;
678                 outstream = new GMime.StreamFile.for_path (tmpfile,"w");
679                 ((GMime.StreamFile)outstream).set_owner(true);
680         }
681                 if (StripApplication.opt_dump) {
682                         outstream = new GMime.StreamMem();
683         }
684         
685         file_size = (int) message.write_to_stream(outstream);
686         if (StripApplication.opt_is_replacing) {
687                 ((GMime.StreamFile)outstream).set_owner(false);
688         }
689                 if (StripApplication.opt_dump) {
690                         var ua = ((GMime.StreamMem)outstream).get_byte_array().data;
691                         print("%s\n", (string) ua);
692                 }        
693         message = null;
694         outstream.flush();
695         outstream.close();
696         GLib.debug("finished writing output %d", file_size);
697
698         //
699         
700           
701         this.used_space_after += file_size;
702         
703         
704         if (StripApplication.opt_is_replacing) {
705                 Posix.unlink(path +"/" + name);         
706                 GLib.debug("copy tmp file %s to %s" , tmpfile, path +"/" + name);               
707                 Posix.link(tmpfile, path +"/" + name);
708                 Posix.unlink(tmpfile);
709                 }
710         this.processed++;
711         
712         if (StripApplication.opt_limit > -1 && this.processed >= StripApplication.opt_limit) {
713                 GLib.debug("Reached replacement limit");
714                 Posix.exit(1);
715         }
716         
717         
718         
719         
720     }
721     
722     
723     public void scan_dir(string path)
724     {
725         var f = File.new_for_path(path);
726                 FileEnumerator file_enum;
727         var cancellable = new Cancellable ();
728         try {      
729             file_enum = f.enumerate_children(
730                 FileAttribute.STANDARD_DISPLAY_NAME + "," +   FileAttribute.STANDARD_TYPE,
731                         FileQueryInfoFlags.NOFOLLOW_SYMLINKS,  // FileQueryInfoFlags.NONE,
732                         cancellable
733                 );
734         } catch (Error e) {
735                 GLib.debug("Got error scanning dir? %s", e.message);
736             // FIXME - show error..
737             return;
738         }
739         FileInfo next_file;
740          
741         while (cancellable.is_cancelled () == false ) {
742             try {
743                 next_file = file_enum.next_file (cancellable);
744             } catch(Error e) {
745                 GLib.debug("error getting next file? %s", e.message);
746                 break;
747             }
748
749             if (next_file == null) {
750                 break;
751             }
752
753
754             if (next_file.get_file_type() != FileType.DIRECTORY) {
755                 
756                 if (next_file.get_display_name()[0] == ',') {
757                         continue;
758                 }
759                 
760                 this.scan_file(path , next_file.get_display_name());
761                 this.report_state("After scanning %s/%s".printf(path , next_file.get_display_name()));
762                 continue;
763             }
764
765
766             //stdout.printf("Monitor.monitor: got file %s : type :%u\n",
767             //        next_file.get_display_name(), next_file.get_file_type());
768
769
770             if (next_file.get_is_symlink()) {
771                 next_file = null;
772                 continue;
773             }
774             
775             var ds = next_file.get_display_name();
776             if (ds[0] == '.') {
777                 next_file = null;
778                 continue;
779             }
780             if (ds == "attachments") {
781                         continue;
782                 }
783             
784             
785             var sp = path+"/"+next_file.get_display_name();
786             // skip modules.
787             //print("got a file : " + sp);
788          
789             next_file = null;
790             
791             
792             this.scan_dir(sp);
793             
794         }
795     
796     
797     }
798     void report_state(string msg) 
799     {
800         // Saved: 2G  Original 10G : 20%
801         GLib.debug("Saved : %s (%.1f%%) | Original %s | %s", 
802                         GLib.format_size(this.used_space_before - this.used_space_after), 
803                         100f * ((1f * (this.used_space_before - this.used_space_after)) / (this.used_space_before * 1f)), 
804                         GLib.format_size(this.used_space_before),                       
805                         msg
806                 );
807         
808         }
809         
810         
811
812 }