Example #1
0
File: Call.php Project: m6w6/seekat
 /**
  * Completion callback
  * @param callable $resolve
  * @param callable $reject
  */
 private function complete(callable $resolve, callable $reject)
 {
     $this->client->detach($this);
     if ($this->response) {
         try {
             $resolve($this->api->import($this->response));
         } catch (Exception $e) {
             $reject($e);
         }
     } else {
         $reject($this->client->getTransferInfo($this->request)->error);
     }
 }
Example #2
0
 function next()
 {
     if (list($key, $cur) = each($this->data)) {
         $this->key = $key;
         if ($this->api->{$key}->exists("url", $url)) {
             $url = new Url($url);
             $this->cur = $this->api->withUrl($url)->withData($cur);
         } else {
             $this->cur = $this->api->{$key}->withData($cur);
         }
     } else {
         $this->key = null;
         $this->cur = null;
     }
 }
Example #3
0
#!/usr/bin/env php
<?php 
require_once __DIR__ . "/../vendor/autoload.php";
use seekat\API;
$log = new Monolog\Logger("seekat");
$log->pushHandler((new Monolog\Handler\StreamHandler(STDERR))->setLevel(Monolog\Logger::INFO));
$api = new API(["Authorization" => "token " . getenv("GITHUB_TOKEN")], null, null, $log);
$api->users->m6w6->gists()->done(function ($gists) {
    foreach ($gists as $gist) {
        $gist->commits()->then(function ($commits) use($gist) {
            foreach ($commits as $i => $commit) {
                if (!$i) {
                    printf("\nGist %s, %s:\n", $gist->id, $gist->description ?: "<no title>");
                }
                $cs = $commit->change_status;
                printf("\t%s: ", substr($commit->version, 0, 8));
                printf("-%s+%s=%s\n", $cs->deletions, $cs->additions, $cs->total);
            }
        });
    }
});
$api->send();