Jacek Kowalski
2012-06-23 8bd4d9f5065a5b94dc83f0ed6859ed0d93c75d84
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
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
<?php
/**
 * Klasa ładująca dla modułów napisanych dla poprzedniej wersji bota
 */
class bot_legacy_init implements BotModuleInit {
    const BOT_FUNCTIONS_FILE = '/cache/legacy.functions';
    const BOT_HELP_FILE = '/cache/legacy.help';
    
    /**
     * Wypisuje listę komend obsługiwanych przez dany plik modułu
     * @param string $file Nazwa pliku
     * @return array
     */
    function load_funcs($file) {
        $name = substr(basename($file), 3, -4);
        
        $ret = @include_once($file);
        if(!$ret) return array();
        
        $funcs = call_user_func(array($name, 'register_cmd'));
        
        $return = array();
        
        foreach($funcs as $n => $method) {
            if(!isset($return[$n])) {
                $return[$n] = array();
            }
            
            $return[$n][] = array(
                'file' => 'handler.php',
                'class' => 'bot_legacy_module',
                'method' => 'handle',
                'params' => array(basename($file), $name, $method)
            );
        }
        
        return $return;
    }
    
    /**
     * Zwraca (z użyciem cache'a) listę obsługiwanych komend ze starych modułów
     * @return array
     */
    function register() {
        if(is_file(BOT_TOPDIR.self::BOT_FUNCTIONS_FILE)) {
            return unserialize(file_get_contents(BOT_TOPDIR.self::BOT_FUNCTIONS_FILE));
        }
        else
        {
            $return = array();
            $files = glob('./modules/*.php');
            
            foreach($files as $file) {
                $return = array_merge_recursive($return, $this->load_funcs($file));
            }
            
            file_put_contents(BOT_TOPDIR.self::BOT_FUNCTIONS_FILE, serialize($return));
            
            return $return;
        }
    }
    
    /**
     * Ładuje skróconą listę poleceń i ich parametrów z pliku starego modułu
     * @param string $file Nazwa pliku
     */
    function load_help($file) {
        $name = substr(basename($file), 3, -4);
        
        $ret = @include_once($file);
        if(!$ret) return array();
        
        call_user_func(array($name, 'help'), NULL);
    }
    
    /**
     * Zwraca (z użyciem cache'a) skróconą pomoc dla obsługiwanych poleceń
     * @return BotMsg
     */
    function cache_help() {
        if(is_file(BOT_TOPDIR.self::BOT_HELP_FILE)) {
            return unserialize(file_get_contents(BOT_TOPDIR.self::BOT_HELP_FILE));
        }
        else
        {
            $files = glob(BOT_TOPDIR.'/modules/*.php');
            
            foreach($files as $file) {
                $this->load_help($file);
            }
            
            $return = GGapi::getResponse();
            
            file_put_contents(BOT_TOPDIR.self::BOT_HELP_FILE, serialize($return));
            
            return $return;
        }
    }
    
    /**
     * Zwraca pomoc dla określonej parametrem komendy
     * @param null|string $params Nazwa komendy
     * @return false|BotMsg Zwracana wiadomość
     */
    function help($params = NULL) {
        if($params === NULL) {
            return $this->cache_help();
        }
        else
        {
            $data = $this->register();
            
            if(!$data[$params]) {
                return FALSE;
            }
            
            foreach($data[$params] as $module) {
                $ret = @include_once(BOT_TOPDIR.'/modules/'.$module['params'][0]);
                if(!$ret) continue;
                
                call_user_func(array($module['params'][1], 'help'), $params);
            }
            
            $data = GGapi::getResponse();
            if($data instanceof BotMsg) {
                return $data;
            }
            else
            {
                return FALSE;
            }
        }
    }
}
 
return 'bot_legacy_init';
?>