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: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 
<?php
/**
 * Upwork auth library for using with public API by OAuth
 *
 * @final
 * @package     UpworkAPI
 * @since       04/21/2014
 * @copyright   Copyright 2014(c) Upwork.com
 * @author      Maksym Novozhylov <mnovozhilov@upwork.com>
 * @license     Upwork's API Terms of Use {@link https://developers.upwork.com/api-tos.html}
 */

namespace Upwork\API;

use Upwork\API\Config as ApiConfig;
use Upwork\API\Debug as ApiDebug;
use Upwork\API\Utils as ApiUtils;

/**
 * Client
 */
class Client
{
    // we will deal only with json inside library
    // and return already decoded data
    const DATA_FORMAT = 'json';

    /**
     * @var Entry point name
     */
    static protected $_epoint = UPWORK_API_EP_NAME;

    /**
     * @var Server instance (AuthTypes)
     */
    protected $_server;

    /**
     * Constructor
     *
     * @param   ApiConfig $config Config object
     * @access  public
     */
    public function __construct(ApiConfig $config)
    {
        ApiDebug::p('preparing Client');

        $key        = $config::get('consumerKey');
        $secret     = $config::get('consumerSecret');
        $aToken     = $config::get('accessToken');
        $aSecret    = $config::get('accessSecret');
        $verifySsl  = $config::get('verifySsl');
        $auth       = 'Upwork\API\AuthTypes\\' . $config::get('authType');

        $this->_server = new $auth($key, $secret);
        !$aToken  || $this->_server->option('accessToken', $aToken);
        !$aSecret || $this->_server->option('accessSecret', $aSecret);
        $this->_server->option('verifySsl', $verifySsl);
    }

    /**
     * Get server instance
     *
     * @return  object
     * @access  public
     */
    public function getServer()
    {
        return $this->_server;
    }

    /**
     * Get request token for web-base apps
     *
     * @access  public
     * @return  array
     */
    public function getRequestToken()
    {
        ApiDebug::p('getRequestToken');

        return $this->_server->setupRequestToken();
    }

    /**
     * Auth application
     *
     * @access  public
     * @return  mixed
     */
    public function auth()
    {
        ApiDebug::p('authing Client');

        $this->_server->option('mode', ApiConfig::get('mode'));
        $this->_server->option('sigMethod', ApiConfig::get('sigMethod'));

        // setup request tokens for web-based app
        // they must be already obrained on the first step
        if (ApiConfig::get('mode') === 'web') {
            $rToken     = ApiConfig::get('requestToken');
            $rSecret    = ApiConfig::get('requestSecret');
            $oVerifier  = ApiConfig::get('verifier');

            !$rToken    || $this->_server->option('requestToken', $rToken);
            !$rSecret   || $this->_server->option('requestSecret', $rSecret);
            !$oVerifier || $this->_server->option('verifier', $oVerifier);
        }

        return $this->_server->auth();
    }

    /**
     * Run API request
     *
     * @param   string $type Type of request, i.e. method
     * @param   string $url URL
     * @param   array $params (Optional) Additional list of parameters
     * @access  protected
     * @return  array
     */
    protected function _request($type, $url, $params = array())
    {
        ApiDebug::p('running Client request', $this->_server);

        $method = 'POST';
        switch ($type) {
            case 'PUT':
                $params['http_method'] = 'put';
                break;
            case 'DELETE':
                $params['http_method'] = 'delete';
                break;
            case 'GET':
                $method = 'GET';
                break;
            default:
                break;
        }

        if (self::$_epoint == UPWORK_API_EP_NAME) {
            $url = $url . '.' . self::DATA_FORMAT;
        } elseif (self::$_epoint == UPWORK_GDS_EP_NAME) {
            $params['tqx'] = 'out:' . self::DATA_FORMAT;
        }

        $this->_server->option('sigMethod', ApiConfig::get('sigMethod'));
        $this->_server->option('epoint', self::$_epoint);

        $response = $this->_server->request($method, $url, $params);

        return json_decode($response);
    }

    /**
     * Do GET request 
     * 
     * @param   string $url API URL
     * @param   array $params (Optional) Additional parameters
     * @access  public
     * @return  mixed
     */
    public function get($url, $params = array())
    {
        ApiDebug::p('starting GET request');
        return $this->_request('GET', $url, $params);
    }

    /**
     * Do POST request 
     * 
     * @param   string $url API URL
     * @param   array $params (Optional) Additional parameters
     * @access  public
     * @return  mixed
     */
    public function post($url, $params = array())
    {
        ApiDebug::p('starting POST request');
        return $this->_request('POST', $url, $params);
    }

    /**
     * Do PUT request 
     * 
     * @param   string $url API URL
     * @param   array $params (Optional) Additional parameters
     * @access  public
     * @return  mixed
     */
    public function put($url, $params = array())
    {
        ApiDebug::p('starting PUT request');
        return $this->_request('PUT', $url, $params);
    }

    /**
     * Do DELETE request 
     * 
     * @param   string $url API URL
     * @param   array $params (Optional) Additional parameters
     * @access  public
     * @return  mixed
     */
    public function delete($url, $params = array())
    {
        ApiDebug::p('starting DELETE request');
        return $this->_request('DELETE', $url, $params);
    }
}