aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/bin/build.php
blob: 54174a777d9a2b57c44ef8f96086ffdec1bbfdcc (plain) (blame)
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
#!/usr/bin/env php
<?php

$tasks = [
    'buildzip' => [
        'init', 'test', 'clean',
    ],
    'markrelease' => [
        'init', 'test', 'clean',
    ],
    'clean' => [],
    'test' => [
        'composerupdate',
    ],
    'init' => [],
    'composerupdate' => [],
 ];

$default = 'buildzip';

$baseDir = __DIR__.'/../';
chdir($baseDir);

$currentTask = $default;
if ($argc > 1) {
    $currentTask = $argv[1];
}
$version = null;
if ($argc > 2) {
    $version = $argv[2];
}

if (!isset($tasks[$currentTask])) {
    echo 'Task not found: ',  $currentTask, "\n";
    die(1);
}

// Creating the dependency graph
$newTaskList = [];
$oldTaskList = [$currentTask => true];

while (count($oldTaskList) > 0) {
    foreach ($oldTaskList as $task => $foo) {
        if (!isset($tasks[$task])) {
            echo 'Dependency not found: '.$task, "\n";
            die(1);
        }
        $dependencies = $tasks[$task];

        $fullFilled = true;
        foreach ($dependencies as $dependency) {
            if (isset($newTaskList[$dependency])) {
                // Already in the fulfilled task list.
                continue;
            } else {
                $oldTaskList[$dependency] = true;
                $fullFilled = false;
            }
        }
        if ($fullFilled) {
            unset($oldTaskList[$task]);
            $newTaskList[$task] = 1;
        }
    }
}

foreach (array_keys($newTaskList) as $task) {
    echo 'task: '.$task, "\n";
    call_user_func($task);
    echo "\n";
}

function init()
{
    global $version;
    if (!$version) {
        include __DIR__.'/../vendor/autoload.php';
        $version = Sabre\DAV\Version::VERSION;
    }

    echo '  Building sabre/dav '.$version, "\n";
}

function clean()
{
    global $baseDir;
    echo "  Removing build files\n";
    $outputDir = $baseDir.'/build/SabreDAV';
    if (is_dir($outputDir)) {
        system('rm -r '.$baseDir.'/build/SabreDAV');
    }
}

function composerupdate()
{
    global $baseDir;
    echo "  Updating composer packages to latest version\n\n";
    system('cd '.$baseDir.'; composer update');
}

function test()
{
    global $baseDir;

    echo "  Running all unittests.\n";
    echo "  This may take a while.\n\n";
    system(__DIR__.'/phpunit --configuration '.$baseDir.'/tests/phpunit.xml.dist --stop-on-failure', $code);
    if (0 != $code) {
        echo "PHPUnit reported error code $code\n";
        die(1);
    }
}

function buildzip()
{
    global $baseDir, $version;
    echo "  Generating composer.json\n";

    $input = json_decode(file_get_contents(__DIR__.'/../composer.json'), true);
    $newComposer = [
        'require' => $input['require'],
        'config' => [
            'bin-dir' => './bin',
        ],
        'prefer-stable' => true,
        'minimum-stability' => 'alpha',
    ];
    unset(
        $newComposer['require']['sabre/vobject'],
        $newComposer['require']['sabre/http'],
        $newComposer['require']['sabre/uri'],
        $newComposer['require']['sabre/event']
    );
    $newComposer['require']['sabre/dav'] = $version;
    mkdir('build/SabreDAV');
    file_put_contents('build/SabreDAV/composer.json', json_encode($newComposer, JSON_PRETTY_PRINT));

    echo "  Downloading dependencies\n";
    system('cd build/SabreDAV; composer install -n', $code);
    if (0 !== $code) {
        echo "Composer reported error code $code\n";
        die(1);
    }

    echo "  Removing pointless files\n";
    unlink('build/SabreDAV/composer.json');
    unlink('build/SabreDAV/composer.lock');

    echo "  Moving important files to the root of the project\n";

    $fileNames = [
        'CHANGELOG.md',
        'LICENSE',
        'README.md',
        'examples',
    ];
    foreach ($fileNames as $fileName) {
        echo "    $fileName\n";
        rename('build/SabreDAV/vendor/sabre/dav/'.$fileName, 'build/SabreDAV/'.$fileName);
    }

    // <zip destfile="build/SabreDAV-${sabredav.version}.zip" basedir="build/SabreDAV" prefix="SabreDAV/" />

    echo "\n";
    echo "Zipping the sabredav distribution\n\n";
    system('cd build; zip -qr sabredav-'.$version.'.zip SabreDAV');

    echo 'Done.';
}