Can change mbox ==> can generate spool for mbox-based protocoles
[banana.git] / examples / spoolgen.php
CommitLineData
916e4a56 1#!/usr/bin/php5
78cd27b3 2<?php
3/********************************************************************************
4 * spoolgen.php : spool generation
5 * --------------
6 *
7 * This file is part of the banana distribution
8 * Copyright: See COPYING files that comes with this distribution
9 ********************************************************************************/
10
11require_once("banana/banana.inc.php");
12
13$opt = getopt('u:p:h');
14
15if(isset($opt['h'])) {
16 echo <<<EOF
709369b8 17usage: spoolgen.php [ -u user ] [ -p pass ]
78cd27b3 18 create all spools, using user user and pass pass
19EOF;
20 exit;
21}
22
23class MyBanana extends Banana
24{
916e4a56 25 public function __construct()
78cd27b3 26 {
27 global $opt;
916e4a56 28 Banana::$host = "news://{$opt['u']}:{$opt['p']}@localhost:119/\n";
29 echo Banana::$host;
30 parent::__construct();
78cd27b3 31 }
32
916e4a56 33 private function checkErrors()
78cd27b3 34 {
916e4a56 35 if (Banana::$protocole->lastErrno()) {
36 echo "\nL'erreur suivante s'est produite : "
37 . Banana::$protocole->lastErrno() . " "
38 . Banana::$protocole->lastError() . "\n";
39 exit;
40 }
41 }
78cd27b3 42
916e4a56 43 public function createAllSpool()
44 {
45 $this->checkErrors();
46 $groups = Banana::$protocole->getBoxList();
47 $this->checkErrors();
78cd27b3 48
916e4a56 49 foreach (array_keys($groups) as $g) {
78cd27b3 50 print "Generating spool for $g : ";
916e4a56 51 Banana::$group = $g;
52 $spool = $this->loadSpool($g);
53 $this->checkErrors();
78cd27b3 54 print "done.\n";
55 unset($spool);
56 }
78cd27b3 57 }
58}
59
60
61$banana = new MyBanana();
62$banana->createAllSpool();
f6df9eb2 63
64// vim:set et sw=4 sts=4 ts=4
78cd27b3 65?>