31 lines
880 B
PHP
31 lines
880 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
class Home extends BaseController
|
|
{
|
|
public function index(): string
|
|
{
|
|
return view('welcome_message');
|
|
}
|
|
|
|
public function promoIndex($promo,$promoOwner=''){
|
|
|
|
// var_dump( $_SERVER);
|
|
//exit();
|
|
|
|
if ( $_SERVER['HTTP_HOST'] == 'https://promo.wrenchboard.com'){
|
|
$_SERVER['CI_ENV'] = 'production';
|
|
}
|
|
|
|
$in["promo"] = $promo;
|
|
$in["promo_owner"] = $promoOwner;
|
|
$out = $this->APIcall('POST', $this->wrenchApiServer(). 'start',$in);
|
|
if ( !isset($out) || !isset($out["status_message"]) || $out["status_message"] != "VALID_LINK_FOUND"){
|
|
return redirect()->to($out["user_server_name"]);
|
|
}
|
|
$out["task"] = $this->APIcall('POST', $this->wrenchApiServer(). 'tasks',$in)["result_list"];
|
|
return view('welcome_message', $out);
|
|
}
|
|
}
|