getResponse() public method

public getResponse ( ) : Response
return Response
示例#1
0
 /**
  * @return mixed
  */
 public function authorize()
 {
     //check if auth user xero_gui exist
     if (null === ($oauth_session = $this->getOAuthSession())) {
         $url = new URL($this->xero, URL::OAUTH_REQUEST_TOKEN);
         $request = new Request($this->xero, $url);
         //Here's where you'll see if your keys are valid.  You can catch a BadRequestException.
         try {
             $request->send();
         } catch (\Exception $e) {
             return ['error' => true, 'message' => $e->getMessage()];
         }
         $oauth_response = $request->getResponse()->getOAuthResponse();
         $this->setOAuthSession($oauth_response['oauth_token'], $oauth_response['oauth_token_secret']);
         return ['error' => false, 'url' => $this->xero->getAuthorizeURL($oauth_response['oauth_token'])];
         exit;
         //return Response::json(['auth'=>false, 'url'=>$this->xero->getAuthorizeURL($oauth_response['oauth_token'])]);
     } else {
         //set auth session
         $oauth_session = Session::get('oauth');
         if ($oauth_session) {
             $this->xero->getOAuthClient()->setToken($oauth_session['token'])->setTokenSecret($oauth_session['token_secret']);
         }
         return ['error' => false, 'message' => "<h3> You are already connected to Xero APi </h3>"];
         exit;
     }
 }
示例#2
0
 public function getPDF()
 {
     /** @var Object $this */
     if ($this->hasGUID() === false) {
         throw new Exception('PDF files are only available to objects that exist remotely.');
     }
     $uri = sprintf('%s/%s', $this::getResourceURI(), $this->getGUID());
     $url = new URL($this->_application, $uri);
     $request = new Request($this->_application, $url, Request::METHOD_GET);
     $request->setHeader(Request::HEADER_ACCEPT, Request::CONTENT_TYPE_PDF);
     $request->send();
     return $request->getResponse()->getResponseBody();
 }
示例#3
0
 public function getAttachments()
 {
     /** @var Object $this */
     if ($this->hasGUID() === false) {
         throw new Exception('Attachments are only available to objects that exist remotely.');
     }
     $uri = sprintf('%s/%s/Attachments', $this::getResourceURI(), $this->getGUID());
     $url = new URL($this->_application, $uri);
     $request = new Request($this->_application, $url, Request::METHOD_GET);
     $request->send();
     $attachments = array();
     foreach ($request->getResponse()->getElements() as $element) {
         $attachment = new Attachment($this->_application);
         $attachment->fromStringArray($element);
         $attachments[] = $attachment;
     }
     return $attachments;
 }
示例#4
0
文件: Query.php 项目: steveh/xero-php
 /**
  * @return array
  */
 public function execute()
 {
     /** @var ObjectInterface $from_class */
     $from_class = $this->from;
     $url = new URL($this->app, $from_class::getResourceURI());
     $request = new Request($this->app, $url, Request::METHOD_GET);
     $where = $this->getWhere();
     if (!empty($where)) {
         $request->setParameter('where', $where);
     }
     if ($this->order !== null) {
         $request->setParameter('order', $this->order);
     }
     if ($this->modifiedAfter !== null) {
         $request->setHeader('If-Modified-Since', $this->modifiedAfter);
     }
     if ($this->page !== null) {
         $request->setParameter('page', $this->page);
     }
     if ($this->offset !== null) {
         $request->setParameter('offset', $this->offset);
     }
     $request->send();
     $elements = array();
     foreach ($request->getResponse()->getElements() as $element) {
         /** @var Object $built_element */
         $built_element = new $from_class($this->app);
         $built_element->fromStringArray($element);
         $elements[] = $built_element;
     }
     return $elements;
 }
示例#5
0
        if ($request->getResponse()) {
            print_r($request->getResponse()->getOAuthResponse());
        }
    }
    $oauth_response = $request->getResponse()->getOAuthResponse();
    setOAuthSession($oauth_response['oauth_token'], $oauth_response['oauth_token_secret']);
    printf('<a href="%s">Click here to Authorize</a>', $xero->getAuthorizeURL($oauth_response['oauth_token']));
    exit;
} else {
    $xero->getOAuthClient()->setToken($oauth_session['token'])->setTokenSecret($oauth_session['token_secret']);
    if (isset($_REQUEST['oauth_verifier'])) {
        $xero->getOAuthClient()->setVerifier($_REQUEST['oauth_verifier']);
        $url = new URL($xero, URL::OAUTH_ACCESS_TOKEN);
        $request = new Request($xero, $url);
        $request->send();
        $oauth_response = $request->getResponse()->getOAuthResponse();
        setOAuthSession($oauth_response['oauth_token'], $oauth_response['oauth_token_secret'], $oauth_response['oauth_expires_in']);
        //drop the qs
        $uri_parts = explode('?', $_SERVER['REQUEST_URI']);
        //Just for demo purposes
        header(sprintf('Location: http%s://%s%s', isset($_SERVER['HTTPS']) ? 's' : '', $_SERVER['HTTP_HOST'], $uri_parts[0]));
        exit;
    }
}
//Otherwise, you're in.
print_r($xero->load('Accounting\\Organisation')->execute());
//The following two functions are just for a demo - you should use a more robust mechanism of storing tokens than this!
function setOAuthSession($token, $secret, $expires = null)
{
    // expires sends back an int
    if ($expires !== null) {
示例#6
0
 /**
  * Function to save properties directly which do not update via a POST
  *
  * This is called automatically from the save method for things like adding contacts to ContactGroups
  *
  * @param Object $object
  * @throws Exception
  */
 private function savePropertiesDirectly(Object $object)
 {
     foreach ($object::getProperties() as $property_name => $meta) {
         if ($meta[Object::KEY_SAVE_DIRECTLY] && $object->isPropertyDirty($property_name)) {
             //Then actually save
             $property_objects = $object->{$property_name};
             $property_type = get_class(current($property_objects));
             $url = new URL($this, sprintf('%s/%s/%s', $object::getResourceURI(), $object->getGUID(), $property_type::getResourceURI()));
             $request = new Request($this, $url, Request::METHOD_PUT);
             $property_array = array();
             foreach ($property_objects as $property_object) {
                 $property_array[] = $property_object->toStringArray();
             }
             $root_node_name = Helpers::pluralize($property_type::getRootNodeName());
             $request->setBody(Helpers::arrayToXML(array($root_node_name => $property_array)));
             $request->send();
             $response = $request->getResponse();
             foreach ($response->getElements() as $element_index => $element) {
                 if ($response->getErrorsForElement($element_index) === null) {
                     $property_objects[$element_index]->fromStringArray($element);
                     $property_objects[$element_index]->setClean();
                 }
             }
             //Set it clean so the following save might have nothing to do.
             $object->setClean($property_name);
         }
     }
 }
示例#7
0
 private static function downloadContent(Application $app, $url)
 {
     $url = new URL($app, $url);
     $request = new Request($app, $url, Request::METHOD_GET);
     $request->setHeader(Request::HEADER_ACCEPT, '*/*');
     $request->send();
     return $request->getResponse()->getResponseBody();
 }
示例#8
0
 /**
  * @param Remote\Object $object
  * @return Remote\Response
  * @throws Exception
  */
 public function delete(Remote\Object $object)
 {
     if (!$object::supportsMethod(Request::METHOD_DELETE)) {
         throw new Exception(sprintf('%s doesn\'t support [DELETE] via the API', get_class($object)));
     }
     $uri = sprintf('%s/%s', $object::getResourceURI(), $object->getGUID());
     $url = new URL($this, $uri);
     $request = new Request($this, $url, Request::METHOD_DELETE);
     $request->send();
     return $request->getResponse();
 }