/usr/share/civicrm/api/class.api.php is in civicrm-common 4.7.30+dfsg-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | <?php
/**
*
* This class allows to consume the API, either from within a module that knows civicrm already:
*
* @code
* require_once('api/class.api.php');
* $api = new civicrm_api3();
* @endcode
*
* or from any code on the same server as civicrm
*
* @code
* require_once('/your/civi/folder/api/class.api.php');
* // the path to civicrm.settings.php
* $api = new civicrm_api3 (array('conf_path'=> '/your/path/to/your/civicrm/or/joomla/site));
* @endcode
*
* or to query a remote server via the rest api
*
* @code
* $api = new civicrm_api3 (array ('server' => 'http://example.org',
* 'api_key'=>'theusersecretkey',
* 'key'=>'thesitesecretkey'));
* @endcode
*
* No matter how initialised and if civicrm is local or remote, you use the class the same way.
*
* @code
* $api->{entity}->{action}($params);
* @endcode
*
* So, to get the individual contacts:
*
* @code
* if ($api->Contact->Get(array('contact_type'=>'Individual','return'=>'sort_name,current_employer')) {
* // each key of the result array is an attribute of the api
* echo "\n contacts found " . $api->count;
* foreach ($api->values as $c) {
* echo "\n".$c->sort_name. " working for ". $c->current_employer;
* }
* // in theory, doesn't append
* } else {
* echo $api->errorMsg();
* }
* @endcode
*
* Or, to create an event:
*
* @code
* if ($api->Event->Create(array('title'=>'Test','event_type_id' => 1,'is_public' => 1,'start_date' => 19430429))) {
* echo "created event id:". $api->id;
* } else {
* echo $api->errorMsg();
* }
* @endcode
*
* To make it easier, the Actions can either take for input an
* associative array $params, or simply an id. The following two lines
* are equivalent.
*
* @code
* $api->Activity->Get (42);
* $api->Activity->Get (array('id'=>42));
* @endcode
*
*
* You can also get the result like civicrm_api does, but as an object
* instead of an array (eg $entity->attribute instead of
* $entity['attribute']).
*
* @code
* $result = $api->result;
* // is the json encoded result
* echo $api;
* @endcode
*/
class civicrm_api3 {
/**
* Class constructor.
*
* @param array $config API configuration.
*/
public function __construct($config = NULL) {
$this->local = TRUE;
$this->input = array();
$this->lastResult = array();
if (isset($config) && isset($config['server'])) {
// we are calling a remote server via REST
$this->local = FALSE;
$this->uri = $config['server'];
if (isset($config['path'])) {
$this->uri .= "/" . $config['path'];
}
else {
$this->uri .= '/sites/all/modules/civicrm/extern/rest.php';
}
if (isset($config['key'])) {
$this->key = $config['key'];
}
else {
die("\nFATAL:param['key] missing\n");
}
if (isset($config['api_key'])) {
$this->api_key = $config['api_key'];
}
else {
die("\nFATAL:param['api_key] missing\n");
}
return;
}
if (isset($config) && isset($config['conf_path'])) {
if (!defined('CIVICRM_SETTINGS_PATH')) {
define('CIVICRM_SETTINGS_PATH', $config['conf_path'] . '/civicrm.settings.php');
}
require_once CIVICRM_SETTINGS_PATH;
require_once 'CRM/Core/ClassLoader.php';
require_once 'api/api.php';
require_once "api/v3/utils.php";
CRM_Core_ClassLoader::singleton()->register();
$this->cfg = CRM_Core_Config::singleton();
$this->init();
}
else {
$this->cfg = CRM_Core_Config::singleton();
}
}
/**
* Convert to string.
*
* @return string
*/
public function __toString() {
return json_encode($this->lastResult);
}
/**
* Perform action.
*
* @param $action
* @param $params
*
* @return bool
*/
public function __call($action, $params) {
// @TODO Check if it's a valid action.
if (isset($params[0])) {
return $this->call($this->currentEntity, $action, $params[0]);
}
else {
return $this->call($this->currentEntity, $action, $this->input);
}
}
/**
* Call via rest.
*
* @param $entity
* @param $action
* @param array $params
*
* @return \stdClass
*/
private function remoteCall($entity, $action, $params = array()) {
$query = $this->uri . "?entity=$entity&action=$action";
$fields = http_build_query(array(
'key' => $this->key,
'api_key' => $this->api_key,
'json' => json_encode($params),
));
if (function_exists('curl_init')) {
// To facilitate debugging without leaking info, entity & action
// are GET, other data is POST.
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $query);
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$result = curl_exec($ch);
// CiviCRM expects to get back a CiviCRM error object.
if (curl_errno($ch)) {
$res = new stdClass();
$res->is_error = 1;
$res->error_message = curl_error($ch);
$res->level = "cURL";
$res->error = array('cURL error' => curl_error($ch));
return $res;
}
curl_close($ch);
}
else {
// Should be discouraged, because the API credentials and data
// are submitted as GET data, increasing chance of exposure..
$result = file_get_contents($query . '&' . $fields);
}
if (!$res = json_decode($result)) {
$res = new stdClass();
$res->is_error = 1;
$res->error_message = 'Unable to parse returned JSON';
$res->level = 'json_decode';
$res->error = array('Unable to parse returned JSON' => $result);
$res->row_result = $result;
}
return $res;
}
/**
* Call api function.
*
* @param $entity
* @param string $action
* @param array $params
*
* @return bool
*/
private function call($entity, $action = 'Get', $params = array()) {
if (is_int($params)) {
$params = array('id' => $params);
}
elseif (is_string($params)) {
$params = json_decode($params);
}
if (!isset($params['version'])) {
$params['version'] = 3;
}
if (!isset($params['sequential'])) {
$params['sequential'] = 1;
}
if (!$this->local) {
$this->lastResult = $this->remoteCall($entity, $action, $params);
}
else {
// Converts a multi-dimentional array into an object.
$this->lastResult = json_decode(json_encode(civicrm_api($entity, $action, $params)));
}
// Reset the input to be ready for a new call.
$this->input = array();
if (property_exists($this->lastResult, 'is_error')) {
return !$this->lastResult->is_error;
}
// getsingle doesn't have is_error.
return TRUE;
}
/**
* Helper method for long running programs (eg bots).
*/
public function ping() {
global $_DB_DATAOBJECT;
foreach ($_DB_DATAOBJECT['CONNECTIONS'] as & $c) {
if (!$c->connection->ping()) {
$c->connect($this->cfg->dsn);
if (!$c->connection->ping()) {
die("we couldn't connect");
}
}
}
}
/**
* Return the last error message.
* @return string
*/
public function errorMsg() {
return $this->lastResult->error_message;
}
/**
* Initialize.
*/
public function init() {
CRM_Core_DAO::init($this->cfg->dsn);
}
/**
* Get attribute.
*
* @param $name
* @param null $value
*
* @return $this
*/
public function attr($name, $value = NULL) {
if ($value === NULL) {
if (property_exists($this->lastResult, $name)) {
return $this->lastResult->$name;
}
}
else {
$this->input[$name] = $value;
}
return $this;
}
/**
* Is this an error.
*
* @return bool
*/
public function is_error() {
return (property_exists($this->lastResult, 'is_error') && $this->lastResult->is_error);
}
/**
* Check if var is set.
*
* @param string $name
*
* @return bool
*/
public function is_set($name) {
return (isset($this->lastResult->$name));
}
/**
* Get object.
*
* @param string $name
*
* @return $this
*/
public function __get($name) {
// @TODO Test if valid entity.
if (strtolower($name) !== $name) {
// Cheap and dumb test to differentiate call to
// $api->Entity->Action & value retrieval.
$this->currentEntity = $name;
return $this;
}
if ($name === 'result') {
return $this->lastResult;
}
if ($name === 'values') {
return $this->lastResult->values;
}
if (property_exists($this->lastResult, $name)) {
return $this->lastResult->$name;
}
$this->currentEntity = $name;
return $this;
}
/**
* Or use $api->value.
* @return array
*/
public function values() {
if (is_array($this->lastResult)) {
return $this->lastResult['values'];
}
else {
return $this->lastResult->values;
}
}
/**
* Or use $api->result.
* @return array
*/
public function result() {
return $this->lastResult;
}
}
|