public function run() { $G = new Github(); $req_url = $_SERVER['REQUEST_SCHEME'] . "://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']; $path = parse_url($req_url, PHP_URL_PATH); $paths = explode("/", $path); $project_name = $paths[2] . '/' . $paths[3]; $this->state['project_name'] = $project_name; $this->state['repo'] = $G->load_stored_repo($project_name); if ($this->state['repo']['status'] == 4) { if (!$this->state['repo']['public']) { $G->load_user(); } $G->load_coin_owners($project_name); $this->state['date_minted'] = $G->date_minted; $this->state['last_commit'] = strftime("%b %d", strtotime(query_grab("SELECT max(commit_date) FROM commit_log WHERE repo = '" . $this->state['repo']['name'] . "'"))); $this->state['asset_hash'] = $G->asset_hash; $this->state['cal'] = $G->schedule; $this->state['contributors'] = $G->contributors; $this->state['equity'] = $G->equity; $this->state['today'] = $G->today; } else { $G->load_user(); $BTC = new Bitcoin(); $BTC->generate_address($project_name); $this->state['btc_address'] = $BTC->input_address; $this->state['status'] = $BTC->status; $this->state['hash'] = $BTC->transaction_hash; } $this->_load("mint.html"); }
public function run() { $G = new Github(); $G->load_user(); $G->load_repos(); $arr = array(); foreach ($G->repos as $k => $v) { if ($v->owner->id == $_SESSION['user']['github_id']) { $owner = "You"; } else { $owner = $v->owner->login; } $arr[] = array('id' => $v->id, 'name' => $v->name, 'fullname' => $v->full_name, 'dateraw' => strtotime($v->updated_at), 'date' => strftime("%x", strtotime($v->updated_at)), 'url' => $v->html_url, 'owner' => $owner, 'status' => $v->status, 'confirmations' => $v->confirmations, 'address' => $v->address, 'transaction_hash' => $v->transaction_hash); } usort($arr, "arrsort"); $this->state['debug'] = print_r($G->repos, 1); $this->state['repos'] = $arr; $this->_load("dash.html"); }