summaryrefslogtreecommitdiffstats
path: root/WebPush/upload.php
blob: f971062eddf1afdbf16f18832ab89cbf8fc950ca (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
<?php

include_once('simple_html_dom.php');

function uploadit($build, $branch, $file, $version, $changes) {
  file_put_contents('status.log', "\nUploading file $file to devbukkit! ", FILE_APPEND);
  $slug = "essentials";
  $plugin = "Essentials";
  $url = "http://ci.earth2me.net/guestAuth/repository/download/$branch/$build:id/$file";
  $filename = explode('.', $file);
  $request_url = "http://dev.bukkit.org/server-mods/$slug/upload-file.json";

  include ('apikey.php');

  $params['name'] = $filename[0] . '-' . $version;
  $params['game_versions'] = 176;
  $params['change_log'] = $changes;
  $params['change_markup_type'] = "html";
  $params['fileurl'] = $url;

  if (stripos($version, 'Dev') !== false) {
    $params['file_type'] = "a";
  }
  elseif (stripos($version, 'Pre') !== false) {
    $params['file_type'] = "b";
  }
  else {
    $params['file_type'] = "r";
  }

  $content = file_get_contents($url);
  file_put_contents($file, $content);

  $params['file'] = '@' . $file;

  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $request_url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_POST, true);
  curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
  $result = curl_exec($ch);

  if ($result === false) {
    $result = curl_error($ch);
  }
  elseif ($result == "") {
    $result = "Success uploading $file - $version";
  }
  curl_close($ch);

  file_put_contents('status.log', $result, FILE_APPEND);
  return true;
}

function getChanges($job, $project) {
  $commitblacklist = array(
      'Merge branch',
      'Merge pull',
      'Revert',
      'Cleanup',
  );

  $url = "http://ci.earth2me.net/viewLog.html?buildId=$job&tab=buildChangesDiv&buildTypeId=$project&guest=1";

  $html = new simple_html_dom();
  $html->load_file($url);

  $output = "Change Log:<ul>";
  foreach ($html->find('.changelist') as $list) {
    foreach ($list->find('.comment') as $comment) {
      $text = $comment->innertext;
      foreach ($commitblacklist as $matchtext) {
        if (stripos($text, $matchtext) !== FALSE) {
          $text = "";
        }
      }
      if ($text != "") {
        $output .= "<li>$text</li>\n";
      }
    }
  }
  $output .= "</ul>";

  file_put_contents('status.log', "Collected changes! ", FILE_APPEND);

  return $output;
}
?>