Bimba.git

ref: 50a2717a3233bf9d1810a8ee0a17f42e66b92186

converter/server/upload.php


 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
<?php

set_time_limit(0);

require_once 'vendor/paragonie/sodium_compat/autoload.php';
require_once 'vendor/mustangostang/spyc/Spyc.php';
require_once 'vendor/autoload.php';
use MessagePack\BufferUnpacker;
use MessagePack\Exception\UnpackingFailedException;

$publicKey = sodium_hex2bin('8593a07f70809c0adc0c72e16c2a958997419bdc428fe1eb46f58e59ac2e53d0');

$unpacker = new BufferUnpacker();
$unpacker->reset(file_get_contents("php://input"));
$post = [];
try {
    $post = $unpacker->unpack();
} catch (UnpackingFailedException $e) {
    http_response_code(400);
    die;
}

if (!file_exists('metadata.yml') )
    $oldMetadata = [];
else
    $oldMetadata = Spyc::YAMLLoad('metadata.yml');
$signature = $post['signature'];
$verified = sodium_crypto_sign_verify_detached($signature, $post['metadata'],
    $publicKey);
if (!$verified) {
    http_response_code(403);
    die;
}
$newMetadata = Spyc::YAMLLoadString($post['metadata']);
$timetables = $post['timetables'];
foreach ($timetables as $id => $timetable) {
    $t = $timetable['t'];
    $sha = $timetable['sha'];

    $shallSkip = false;
    foreach ($oldMetadata as $entry) {
        if ($entry['id'] == $id)
            $shallSkip = true;
    }

    if ($shallSkip) continue;

    $fp = fopen(dirname(__FILE__) . "/$id.db.gz", 'wb');
    $ch = curl_init($t);
    curl_setopt($ch, CURLOPT_TIMEOUT, 50);
    curl_setopt($ch, CURLOPT_FILE, $fp);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    curl_exec($ch);
    curl_close($ch);
    fclose($fp);

    $checksum = hash_file('sha256', "$id.db.gz");
    if ($checksum != $sha) {
        unlink("$id.db.gz");
        http_response_code(400);
        die("checksums invalid for $id, expected $sha got $checksum");
    }
}

$oldIDs = [];
$newIDs = [];
foreach ($oldMetadata as $it) {
    array_push($oldIDs, $it['id']);
}
foreach ($newMetadata as $it) {
    array_push($newIDs, $it['id']);
}
$toDelete = array_diff($oldIDs, $newIDs);
foreach ($toDelete as $it) {
    unlink("$it.db.gz");
}

file_put_contents('metadata.yml', $post['metadata']);
?>