First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
55
sites/all/modules/civicrm/Civi/API/Event/AuthorizeEvent.php
Normal file
55
sites/all/modules/civicrm/Civi/API/Event/AuthorizeEvent.php
Normal file
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
namespace Civi\API\Event;
|
||||
|
||||
/**
|
||||
* Class AuthorizeEvent
|
||||
* @package Civi\API\Event
|
||||
*/
|
||||
class AuthorizeEvent extends Event {
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
private $authorized = FALSE;
|
||||
|
||||
/**
|
||||
* Mark the request as authorized.
|
||||
*/
|
||||
public function authorize() {
|
||||
$this->authorized = TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
* TRUE if the request has been authorized.
|
||||
*/
|
||||
public function isAuthorized() {
|
||||
return $this->authorized;
|
||||
}
|
||||
|
||||
}
|
91
sites/all/modules/civicrm/Civi/API/Event/Event.php
Normal file
91
sites/all/modules/civicrm/Civi/API/Event/Event.php
Normal file
|
@ -0,0 +1,91 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
namespace Civi\API\Event;
|
||||
|
||||
/**
|
||||
* Class Event
|
||||
* @package Civi\API\Event
|
||||
*/
|
||||
class Event extends \Symfony\Component\EventDispatcher\Event {
|
||||
|
||||
/**
|
||||
* @var \Civi\API\Kernel
|
||||
*/
|
||||
protected $apiKernel;
|
||||
|
||||
/**
|
||||
* @var \Civi\API\Provider\ProviderInterface
|
||||
* The API provider responsible for executing the request.
|
||||
*/
|
||||
protected $apiProvider;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
* The full description of the API request.
|
||||
*
|
||||
* @see \Civi\API\Request::create
|
||||
*/
|
||||
protected $apiRequest;
|
||||
|
||||
/**
|
||||
* @param \Civi\API\Provider\ProviderInterface $apiProvider
|
||||
* The API responsible for executing the request.
|
||||
* @param array $apiRequest
|
||||
* The full description of the API request.
|
||||
* @param \Civi\API\Kernel $apiKernel
|
||||
*/
|
||||
public function __construct($apiProvider, $apiRequest, $apiKernel) {
|
||||
$this->apiKernel = $apiKernel;
|
||||
$this->apiProvider = $apiProvider;
|
||||
$this->apiRequest = $apiRequest;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get api kernel.
|
||||
*
|
||||
* @return \Civi\API\Kernel
|
||||
*/
|
||||
public function getApiKernel() {
|
||||
return $this->apiKernel;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Civi\API\Provider\ProviderInterface
|
||||
*/
|
||||
public function getApiProvider() {
|
||||
return $this->apiProvider;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function getApiRequest() {
|
||||
return $this->apiRequest;
|
||||
}
|
||||
|
||||
}
|
63
sites/all/modules/civicrm/Civi/API/Event/ExceptionEvent.php
Normal file
63
sites/all/modules/civicrm/Civi/API/Event/ExceptionEvent.php
Normal file
|
@ -0,0 +1,63 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
namespace Civi\API\Event;
|
||||
|
||||
/**
|
||||
* Class ExceptionEvent
|
||||
* @package Civi\API\Event
|
||||
*/
|
||||
class ExceptionEvent extends Event {
|
||||
|
||||
/**
|
||||
* @var \Exception
|
||||
*/
|
||||
private $exception;
|
||||
|
||||
/**
|
||||
* @param \Exception $exception
|
||||
* The exception which arose while processing the API request.
|
||||
* @param \Civi\API\Provider\ProviderInterface $apiProvider
|
||||
* The API provider responsible for executing the request.
|
||||
* @param array $apiRequest
|
||||
* The full description of the API request.
|
||||
* @param \Civi\API\Kernel $apiKernel
|
||||
* The kernel which fired the event.
|
||||
*/
|
||||
public function __construct($exception, $apiProvider, $apiRequest, $apiKernel) {
|
||||
$this->exception = $exception;
|
||||
parent::__construct($apiProvider, $apiRequest, $apiKernel);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Exception
|
||||
*/
|
||||
public function getException() {
|
||||
return $this->exception;
|
||||
}
|
||||
|
||||
}
|
45
sites/all/modules/civicrm/Civi/API/Event/PrepareEvent.php
Normal file
45
sites/all/modules/civicrm/Civi/API/Event/PrepareEvent.php
Normal file
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
namespace Civi\API\Event;
|
||||
|
||||
/**
|
||||
* Class PrepareEvent
|
||||
* @package Civi\API\Event
|
||||
*/
|
||||
class PrepareEvent extends Event {
|
||||
/**
|
||||
* @param array $apiRequest
|
||||
* The full description of the API request.
|
||||
* @return PrepareEvent
|
||||
*/
|
||||
public function setApiRequest($apiRequest) {
|
||||
$this->apiRequest = $apiRequest;
|
||||
return $this;
|
||||
}
|
||||
|
||||
}
|
61
sites/all/modules/civicrm/Civi/API/Event/ResolveEvent.php
Normal file
61
sites/all/modules/civicrm/Civi/API/Event/ResolveEvent.php
Normal file
|
@ -0,0 +1,61 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
namespace Civi\API\Event;
|
||||
|
||||
/**
|
||||
* Class ResolveEvent
|
||||
* @package Civi\API\Event
|
||||
*/
|
||||
class ResolveEvent extends Event {
|
||||
/**
|
||||
* @param array $apiRequest
|
||||
* The full description of the API request.
|
||||
* @param \Civi\API\Kernel $apiKernel
|
||||
* The kernel which fired the event.
|
||||
*/
|
||||
public function __construct($apiRequest, $apiKernel) {
|
||||
parent::__construct(NULL, $apiRequest, $apiKernel);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param \Civi\API\Provider\ProviderInterface $apiProvider
|
||||
* The API provider responsible for executing the request.
|
||||
*/
|
||||
public function setApiProvider($apiProvider) {
|
||||
$this->apiProvider = $apiProvider;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $apiRequest
|
||||
* The full description of the API request.
|
||||
*/
|
||||
public function setApiRequest($apiRequest) {
|
||||
$this->apiRequest = $apiRequest;
|
||||
}
|
||||
|
||||
}
|
70
sites/all/modules/civicrm/Civi/API/Event/RespondEvent.php
Normal file
70
sites/all/modules/civicrm/Civi/API/Event/RespondEvent.php
Normal file
|
@ -0,0 +1,70 @@
|
|||
<?php
|
||||
/*
|
||||
+--------------------------------------------------------------------+
|
||||
| CiviCRM version 4.7 |
|
||||
+--------------------------------------------------------------------+
|
||||
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||||
+--------------------------------------------------------------------+
|
||||
| This file is a part of CiviCRM. |
|
||||
| |
|
||||
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||||
| under the terms of the GNU Affero General Public License |
|
||||
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||||
| |
|
||||
| CiviCRM is distributed in the hope that it will be useful, but |
|
||||
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||||
| See the GNU Affero General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Affero General Public |
|
||||
| License and the CiviCRM Licensing Exception along |
|
||||
| with this program; if not, contact CiviCRM LLC |
|
||||
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||||
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||||
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
namespace Civi\API\Event;
|
||||
|
||||
/**
|
||||
* Class RespondEvent
|
||||
* @package Civi\API\Event
|
||||
*/
|
||||
class RespondEvent extends Event {
|
||||
/**
|
||||
* @var mixed
|
||||
*/
|
||||
private $response;
|
||||
|
||||
/**
|
||||
* @param \Civi\API\Provider\ProviderInterface $apiProvider
|
||||
* The API provider responsible for executing the request.
|
||||
* @param array $apiRequest
|
||||
* The full description of the API request.
|
||||
* @param mixed $response
|
||||
* The response to return to the client.
|
||||
* @param \Civi\API\Kernel $apiKernel
|
||||
* The kernel which fired the event.
|
||||
*/
|
||||
public function __construct($apiProvider, $apiRequest, $response, $apiKernel) {
|
||||
$this->response = $response;
|
||||
parent::__construct($apiProvider, $apiRequest, $apiKernel);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function getResponse() {
|
||||
return $this->response;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $response
|
||||
* The response to return to the client.
|
||||
*/
|
||||
public function setResponse($response) {
|
||||
$this->response = $response;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue