/**
  * @depends testPutPerson
  * @param Batchblue_Service_BatchBook_Person $person
  * @return void
  */
 public function testDeletePerson(Batchblue_Service_BatchBook_Person $person)
 {
     //        $this->_personService->deletePerson($person);
     $getPerson = $this->_personService->getPerson($person->getId());
     //TODO:  Test is incomplete because the API is returning deleted Person objects
     $this->markTestIncomplete("Test is incomplete as the REST API currently returns deleted Person objects");
     // When REST API is fixed, remove comment below and delete the markTestIncomplete() line above
     //$this->assertNull($getPerson);
 }
 /**
  * Add Tag
  *
  * @param Batchblue_Service_BatchBook_Person $person
  * @param string $tag
  */
 public function addTag(Batchblue_Service_BatchBook_Person $person, Batchblue_Service_BatchBook_Tag $tag)
 {
     $httpClient = new Zend_Http_Client('https://' . $this->_accountName . '.batchbook.com/service/people/' . $person->getId() . '/add_tag.xml');
     $paramsPut = array('tag' => $tag->getName());
     $httpClient->setAuth($this->_token, 'x');
     $httpClient->setHeaders(Zend_Http_Client::CONTENT_TYPE, Zend_Http_Client::ENC_URLENCODED);
     $httpClient->setRawData(http_build_query($paramsPut, '', '&'), Zend_Http_Client::ENC_URLENCODED);
     $response = $httpClient->request(Zend_Http_Client::PUT);
     if (200 != $response->getStatus()) {
         //TODO: throw more specific exception
         throw new Exception('Tag not added to person with id=' . $person->getId());
     }
 }
Example #3
0
 /**
     Note: REST API supports adding company to the deal too
 */
 public function addPersonToDeal(Batchblue_Service_BatchBook_Deal $deal, Batchblue_Service_BatchBook_Person $person)
 {
     $httpClient = new Zend_Http_Client('https://' . $this->_accountName . '.batchbook.com/service/deals/' . $deal->getId() . '/add_related_contact.xml');
     $paramsPut = array('contact_id' => $person->getId());
     $httpClient->setAuth($this->_token, 'x');
     $httpClient->setHeaders(Zend_Http_Client::CONTENT_TYPE, Zend_Http_Client::ENC_URLENCODED);
     $httpClient->setRawData(http_build_query($paramsPut, '', '&'), Zend_Http_Client::ENC_URLENCODED);
     $response = $httpClient->request(Zend_Http_Client::PUT);
     if (200 != $response->getStatus()) {
         //TODO: throw more specific exception
         throw new Exception('Person not added to deal');
     }
     return $this;
 }