aboutsummaryrefslogtreecommitdiffstats
path: root/lib/FIDD.php
blob: d15ab35d7d378e36672e0616ed07998735e6d68e (plain)
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<?php
/**
 * FIDD class. See ../README.md.
 *
 * PHP 5.3
 *
 * @license http://www.opensource.org/licenses/MIT MIT
 * @author Romain d'Alverny @rdalverny
*/

include 'lib/lib.php';
include 'lib/fabpot-yaml/lib/sfYaml.php';
include 'lib/magnet.php';

/**
*/
class FIDD
{
    /**
     * @param string $app_path
     * @param string $url rsync url to sync from
     * @param string $prefix
     *
     * @return boolean
    */
    public static function run($app_path, $url, $prefix)
    {
        $tmp_path = $app_path . '/var/tmp';

        echo sprintf("rsync'ing bcd.mageia.org files from %s...\n", $url);
        if (self::rsync_mirror_files($url, $tmp_path)) {
            echo "Failed to rsync remote ISOs...\n";
            return false;
        }

        echo "fetching ISOs filesize...\n";
        $filesizes = self::rsync_get_filesizes($url);

        echo "building definition file...\n";
        $info = self::build_definitions($prefix, $tmp_path, $filesizes);

        self::save_definitions($info, $app_path . '/var/definitions');

        return true;
    }

    /**
     * Dump $definitions into JSON, YAML and INI formats in $dir.
     *
     * @param array $definitions
     * @param string $app_root
     *
     * @return void
    */
    private static function save_definitions($definitions, $dir)
    {
        ksort($definitions);

        // JSON
        file_put_contents($dir . '/data.json', json_encode($definitions));

        // dump into YAML
        $s = sfYaml::dump($definitions, 10);
        file_put_contents($dir . '/data.yaml', $s);

        // dump into INI
        write_ini_file($definitions, $dir . '/data.ini', true);

        echo sprintf("Found %d items:\n - %s\n\nand %d invalid ones.\n",
            count($definitions),
            implode("\n - ", array_keys($definitions)),
            isset($definitions['invalid']) ? count($definitions['invalid']) : 0);

        echo "Data is now available in 3 formats: var/definitions/data.{json,yaml,ini}. Help yourself!\n\n";
    }

    /**
     * Mirror files from remote.
     *
     * @param string $url
     * @param string $dir where to mirror files
    */
    private static function rsync_mirror_files($url, $dir)
    {
        $cmd = sprintf('/usr/bin/rsync -avHP --exclude=*.iso %s %s',
            escapeshellarg($url),
            escapeshellarg($dir));

        exec($cmd, $out, $ret);

        return $ret;
    }

    /**
     * Get and format all ISOs file size.
     *
     * @param string $url rsync url where to look at data.
     *
     * @return array ["file.iso" => "size", ...]
    */
    private static function rsync_get_filesizes($url)
    {
        $cmd = sprintf('/usr/bin/rsync -a --list-only --no-h %s | awk \'{print $2"\t"$5}\'',
            escapeshellarg($url));

        $isos = array();

        exec($cmd, $out, $ret);
        if ($ret === 0) {
            foreach ($out as $line) {
                $line = explode("\t", trim($line));
                if (trim(substr($line[1], -3, 3)) == 'iso') {
                    $file = explode('/', $line[1]);
                    $isos[$file[1]] = formatBytes($line[0], 1);
                }
            }
        }

        return $isos;
    }

    /**
     * Parse mirrors files in $dir and build a catalog of these.
     *
     * @param string $prefix
     * @param string $dir where to look for files
     * @param array $filesizes sizes of each .iso file
     *
     * @return array
    */
    function build_definitions($prefix, $dir, $filesizes)
    {
        $info = array();
        $isos = glob($dir . '/*');

        foreach ($isos as $isodir) {

            $data  = array();
            $files = glob($isodir . '/*.*');

            foreach ($files as $f) {

                $fi  = pathinfo($f);
                $ext = $fi['extension'];

                switch ($fi['extension'])
                {
                    case 'md5':
                        $key          = str_replace('.iso.md5', '.iso', basename($f));
                        $data['file'] = $key;
                        $data['md5']  = self::get_checksum_value($f);
                        $md5gpg          = str_replace('.iso.md5', '.md5.gpg', basename($f));
                        $data['md5.gpg'] = $md5gpg;
                    break;
                    case 'sha1':
                        $data['sha1'] = self::get_checksum_value($f);
                        $sha1gpg          = str_replace('.iso.sha1', '.sha1.gpg', basename($f));
                        $data['sha1.gpg'] = $sha1gpg;
                    break;
                    case 'sha512':
                        $data['sha512'] = self::get_checksum_value($f);
                        $sha512gpg          = str_replace('.iso.sha512', '.sha512.gpg', basename($f));
                        $data['sha512.gpg'] = $sha512gpg;
                    break;
                    case 'langs': $data['langs'] = implode(', ', explode("\n", trim(file_get_contents($f))));
                    break;

                }
            }


            if (null !== ($ret = self::is_correct_name($data['file']))) {
                $data['path']    = sprintf('%s/%s',
                    $ret['release'] == '' ? sprintf('iso/%s', $ret['version']) : 'iso/cauldron',
                    str_replace('.iso', '', $data['file'])
                );
                $torrentfile = str_replace('.iso', '.torrent', $data['file']);
                $data['torrent']    = sprintf('%s/%s',
                    $ret['release'] == '' ? sprintf('iso/%s/torrents', $ret['version']) : 'iso/cauldron/torrents',
                    $torrentfile
                );
                $torrentfile = "var/tmp/torrents/".$torrentfile;
                $data['magnet']    = sprintf('%s&dn=%s&tr=%s',
                    magnet($torrentfile),
                    str_replace('.iso', '', $data['file']),
                    'udp%3A%2F%2Ftracker.torrent.eu.org%3A451');
                $data['name']    = str_replace(array('-', '.iso', 'i586', 'x86_64'), array(' ', '', '32bit', '64bit'), $data['file']);
                $data['size']    = $filesizes[$data['file']];

                $info[$data['file']] = $data;
            } else {
                $info['invalid'][] = $data;
            }
            //$info[str_replace($prefix . '-', '', $key)] = $data;
        }

        return $info;
    }

    /**
     * Extract checksum from .md5 or .sha1 file.
     *
     * @param string $f
     *
     * @return string
    */
    private static function get_checksum_value($f)
    {
        $s = trim(file_get_contents($f));
        $s = explode("  ", $s);
        return trim($s[0]);
    }

    /**
     * Validate and extract Mageia image name.
     *
     * @see https://wiki.mageia.org/en/Product_naming
     * 
     * @param string $s
     *
     * @return array
    */
    public static function is_correct_name($s)
    {
        $re = '/^(Mageia)-(\d+(.\d)?)(-(alpha|beta|RC|rc)(\d*))?(-(.*))?-(i586|x86_64|dual)?(-(CD|DVD|BR))?(-(build\_\w+))?\.(.*)$/';
        if (preg_match($re, $s, $arr)) {
            $ret = array(
                'name'    => $arr[1],
                'version' => $arr[2],
                'release' => $arr[4] . $arr[5],
                'variant' => $arr[7],
                'arch'    => $arr[8],
                'medium'  => $arr[10],
                'build'   => $arr[12],
                'ext'     => $arr[13]
            );
            return $ret;
        }
        return false;
    }
}