aboutsummaryrefslogtreecommitdiff
blob: ab57a1e20b253d397d50c0eddb3102f0367fff91 (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
<?php

    // Gentoaster web interface finished stage
    // Licensed under GPL v3, see COPYING file

    require_once "config.php";

    $buildID = filter_input(INPUT_GET, "uuid", FILTER_UNSAFE_RAW);
    $simultaneous = filter_input(
        INPUT_GET, 
        "simultaneous", 
        FILTER_VALIDATE_BOOLEAN
    );
    $bres = "Unknown!";
    $inprogress = false;
    $builddone = false;
    $simultaneousString = "";

    if ($simultaneous && !SIMULTANEOUS_BUILDS) {
        $simultaneousString = "You were redirected to this page because you ". 
                              "already have a build in progress. Simultaneous ".
                              "builds are disabled on this server.<br/><br/>";
    }

    $db = new mysqli(
        MYSQL_HOSTNAME, 
        MYSQL_USERNAME,
        MYSQL_PASSWORD, 
        MYSQL_DATABASE
    );
    
    if (mysqli_connect_errno()) {
       die("Could not connect to database ".mysqli_connect_error());
    }

    $stmt = $db->prepare("SELECT handle FROM builds WHERE id = ?");
    $stmt->bind_param("s", $buildID);
    $stmt->execute();
    $stmt->store_result();
    if ($stmt->num_rows == 1) {
            $stmt->bind_result($handle);
            $stmt->fetch();
            $stmt->close();
            $client = new GearmanClient();
            $client->addServer();

            $status = $client->jobStatus($handle);
            if ($status[0]) {
                    if ($status[3] != 0) {
                            $percentage = ceil($status[2]/$status[3]*100);
                            $bres = "Your build is currently running".
                                           " and is ".$percentage."% complete";
                            $inprogress = true;
                    } else {
                            $bres = "Task has not yet been processed";
                    }
            } else {
                    $query = "SELECT returncode, result ".
                             "FROM builds WHERE id = ?";
                    $stmt = $db->prepare($query);
                    $stmt->bind_param("s", $buildID);
                    $stmt->execute();
                    $stmt->bind_result($returncode, $result);
                    $stmt->fetch();
                    $stmt->close();
                    if ($returncode !== null) {
                            if ($returncode == 0) {
                                $bres = "Your build is complete! ".
                                   "What would you like to do now?".
                                   "<br /><br /><center>".
                                   "<table><tr><td>".
                                   "<a href=\"/gentoaster/".
                                   $buildID."/".$buildID.
                                   ".tar.gz\">".
                                   "<img style=\"padding: 10px;\" ".
                                   "src=\"img/icons/download.png\">".
                                   "</a></td><td>".
                                   "<a href=\"testdrive.php?uuid=".
                                   $buildID."\">".
                                   "<img style=\"padding: 10px;\" ".
                                   "src=\"img/icons/testdrive.png\">".
                                   "</a></td></tr>".
                                   "<tr><td>Download</td>".
                                   "<td>Testdrive</td></tr>".
                                   "</table></center>";
                                $builddone = true;
                            } else {
                                $bres = "Job returned with code ".
                                        $returncode.": ".$result;
                            }
                    } else {
                            $bres = "Job failed";
                    }
            }
    } else {
            $stmt->close();
            $bres = "Invalid handle hash";
    }

    $db->close();
    
    if (!$builddone) {
        $titleString = "How's things?";
    } else {
        $titleString = "It's showtime!";
    }
?>
<html>
    <head>
        <title>Gentoaster</title>
        <link rel="stylesheet" type="text/css" href="css/style.css">
        <link rel="stylesheet" type="text/css"
          href="css/ui-lightness/jquery-ui-1.8.14.custom.css">
        <script type="text/javascript" src="/js/jquery-1.5.1.min.js"></script>
        <script type="text/javascript" src="/js/jquery-ui-1.8.14.js"></script>
        <?php
            if ($inprogress) {
                echo '<script>
                  $(document).ready(function() {
                    $("#progressbar").progressbar({ value: '.$percentage.' });
                  });
                </script>';
            }
        ?>
    </head>
    <body>
        <div id="container">
            <div id="header"></div>
            <div id="content">
                <div id="main">
                    <div id="status" class="step">
                        <h1><?php echo $titleString; ?></h1>
                        <p>
                            <?php echo $simultaneousString; ?>
                            <?php echo $bres; ?>
                            <div id="progressbar"></div>
                        </p>
                    </div>
                </div>
                <div id="navigation">

                </div>
            </div>
        </div>
        </script>
    </body>
</html>