2019-05-19 21:12:22 +02:00
< ? php
/* Copyright ( C ) 2015 Jean - François Ferry < jfefe @ aternatik . fr >
2024-10-03 15:43:04 +02:00
* Copyright ( C ) 2019 - 2024 Frédéric France < frederic . france @ free . fr >
* Copyright ( C ) 2024 MDW < mdeweerd @ users . noreply . github . com >
2019-05-19 21:12:22 +02:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 3 of the License , or
* ( at your option ) any later version .
*
* This program 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 General Public License for more details .
*
* You should have received a copy of the GNU General Public License
2022-09-07 20:21:01 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2019-05-19 21:12:22 +02:00
*/
/**
2019-12-15 10:02:20 +01:00
* \file htdocs / zapier / class / api_zapier . class . php
2019-05-19 21:12:22 +02:00
* \ingroup zapier
2023-05-23 01:52:49 +02:00
* \brief File for API management of Zapier hooks .
2019-05-19 21:12:22 +02:00
*/
2022-08-26 12:07:48 +02:00
use Luracast\Restler\RestException ;
require_once DOL_DOCUMENT_ROOT . '/zapier/class/hook.class.php' ;
2019-05-19 21:12:22 +02:00
/**
* API class for zapier hook
*
* @ access protected
* @ class DolibarrApiAccess { @ requires user , external }
*/
2022-09-27 00:01:29 +02:00
class Zapier extends DolibarrApi
2019-05-19 21:12:22 +02:00
{
2020-10-27 19:46:07 +01:00
/**
* @ var array $FIELDS Mandatory fields , checked when create and update object
*/
2021-02-26 11:59:13 +01:00
public static $FIELDS = array (
2020-10-27 19:46:07 +01:00
'url' ,
);
/**
* @ var Hook $hook { @ type Hook }
*/
public $hook ;
/**
* Constructor
*
* @ url GET /
*
*/
public function __construct ()
{
2024-01-09 10:44:50 +01:00
global $db ;
2020-10-27 19:46:07 +01:00
$this -> db = $db ;
$this -> hook = new Hook ( $this -> db );
}
/**
* Get properties of a hook object
*
2024-01-12 17:18:52 +01:00
* Return an array with hook information
2020-10-27 19:46:07 +01:00
*
2023-09-26 18:43:25 +02:00
* @ param int $id ID of hook
* @ return Object Object with cleaned properties
2020-10-27 19:46:07 +01:00
*
* @ url GET / hooks / { id }
* @ throws RestException
*/
public function get ( $id )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'zapier' , 'read' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-27 19:46:07 +01:00
}
$result = $this -> hook -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Hook not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'hook' , $this -> hook -> id )) {
2024-04-02 14:47:49 +02:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-27 19:46:07 +01:00
}
return $this -> _cleanObjectDatas ( $this -> hook );
}
/**
* Get list of possibles choices for module
*
2024-01-12 17:18:52 +01:00
* Return an array with hook information
2020-10-27 19:46:07 +01:00
*
2020-10-30 09:25:14 +01:00
* @ return array data
2020-10-27 19:46:07 +01:00
*
* @ url GET / getmoduleschoices /
* @ throws RestException
*/
2020-10-30 09:25:14 +01:00
public function getModulesChoices ()
2020-10-27 19:46:07 +01:00
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'zapier' , 'read' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-27 19:46:07 +01:00
}
2021-04-08 19:05:28 +02:00
2020-10-27 19:46:07 +01:00
$arraychoices = array (
'invoices' => 'Invoices' ,
'orders' => 'Orders' ,
'thirdparties' => 'Thirparties' ,
'contacts' => 'Contacts' ,
2020-10-29 20:53:28 +01:00
'users' => 'Users' ,
2020-10-27 19:46:07 +01:00
);
// $result = $this->hook->fetch($id);
// if (! $result ) {
// throw new RestException(404, 'Hook not found');
// }
// if (! DolibarrApi::_checkAccessToResource('hook', $this->hook->id)) {
2024-04-02 14:47:49 +02:00
// throw new RestException(403, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
2020-10-27 19:46:07 +01:00
// }
return $arraychoices ;
}
/**
* List hooks
*
* Get a list of hooks
*
* @ param string $sortfield Sort field
* @ param string $sortorder Sort order
* @ param int $limit Limit for list
* @ param int $page Page number
* @ param string $sqlfilters Other criteria to filter answers separated by a comma . Syntax example " (t.ref:like:'SO-%') and (t.date_creation:<:'20160101') "
2024-01-12 17:18:52 +01:00
* @ param string $properties Restrict the data returned to these properties . Ignored if empty . Comma separated list of properties names
2020-10-27 19:46:07 +01:00
* @ return array Array of order objects
*
* @ throws RestException
*
* @ url GET / hooks /
*/
2023-09-26 18:04:48 +02:00
public function index ( $sortfield = " t.rowid " , $sortorder = 'ASC' , $limit = 100 , $page = 0 , $sqlfilters = '' , $properties = '' )
2020-10-27 19:46:07 +01:00
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'zapier' , 'read' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2021-04-08 19:05:28 +02:00
}
2020-10-27 19:46:07 +01:00
$obj_ret = array ();
2024-01-09 10:44:50 +01:00
$socid = DolibarrApiAccess :: $user -> socid ? DolibarrApiAccess :: $user -> socid : 0 ;
2020-10-27 19:46:07 +01:00
// Set to 1 if there is a field socid in table of object
$restrictonsocid = 0 ;
// If the internal user must only see his customers, force searching by him
$search_sale = 0 ;
2024-02-09 15:58:49 +01:00
if ( $restrictonsocid && ! DolibarrApiAccess :: $user -> hasRight ( 'societe' , 'client' , 'voir' ) && ! $socid ) {
2020-10-27 19:46:07 +01:00
$search_sale = DolibarrApiAccess :: $user -> id ;
}
$sql = " SELECT t.rowid " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " hook_mytable as t " ;
$sql .= " WHERE 1 = 1 " ;
$tmpobject = new Hook ( $this -> db );
if ( $tmpobject -> ismultientitymanaged ) {
$sql .= ' AND t.entity IN (' . getEntity ( 'hook' ) . ')' ;
}
if ( $restrictonsocid && $socid ) {
2021-03-22 13:31:06 +01:00
$sql .= " AND t.fk_soc = " . (( int ) $socid );
2020-10-27 19:46:07 +01:00
}
2024-01-09 10:44:50 +01:00
// Search on sale representative
if ( $search_sale && $search_sale != '-1' ) {
if ( $search_sale == - 2 ) {
$sql .= " AND NOT EXISTS (SELECT sc.fk_soc FROM " . MAIN_DB_PREFIX . " societe_commerciaux as sc WHERE sc.fk_soc = t.fk_soc) " ;
} elseif ( $search_sale > 0 ) {
$sql .= " AND EXISTS (SELECT sc.fk_soc FROM " . MAIN_DB_PREFIX . " societe_commerciaux as sc WHERE sc.fk_soc = t.fk_soc AND sc.fk_user = " . (( int ) $search_sale ) . " ) " ;
}
2020-10-27 19:46:07 +01:00
}
if ( $sqlfilters ) {
2021-12-20 20:49:32 +01:00
$errormessage = '' ;
2023-02-25 19:48:33 +01:00
$sql .= forgeSQLFromUniversalSearchCriteria ( $sqlfilters , $errormessage );
if ( $errormessage ) {
throw new RestException ( 400 , 'Error when validating parameter sqlfilters -> ' . $errormessage );
2020-10-27 19:46:07 +01:00
}
}
$sql .= $this -> db -> order ( $sortfield , $sortorder );
if ( $limit ) {
if ( $page < 0 ) {
$page = 0 ;
}
$offset = $limit * $page ;
$sql .= $this -> db -> plimit ( $limit + 1 , $offset );
}
$result = $this -> db -> query ( $sql );
$i = 0 ;
if ( $result ) {
$num = $this -> db -> num_rows ( $result );
while ( $i < $num ) {
$obj = $this -> db -> fetch_object ( $result );
$hook_static = new Hook ( $this -> db );
if ( $hook_static -> fetch ( $obj -> rowid )) {
2023-09-26 18:04:48 +02:00
$obj_ret [] = $this -> _filterObjectProperties ( $this -> _cleanObjectDatas ( $hook_static ), $properties );
2020-10-27 19:46:07 +01:00
}
$i ++ ;
}
} else {
throw new RestException ( 503 , 'Error when retrieve hook list' );
}
2023-12-31 15:25:18 +01:00
2020-10-27 19:46:07 +01:00
return $obj_ret ;
}
/**
* Create hook object
*
* @ param array $request_data Request datas
2023-02-14 14:09:56 +01:00
* @ return array ID of hook
2020-10-27 19:46:07 +01:00
*
* @ url POST / hook /
*/
public function post ( $request_data = null )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'zapier' , 'write' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-27 19:46:07 +01:00
}
2021-04-08 19:05:28 +02:00
2023-12-15 12:15:33 +01:00
dol_syslog ( " API Zapier create hook receive : " . print_r ( $request_data , true ), LOG_DEBUG );
2020-10-27 19:46:07 +01:00
// Check mandatory fields
$fields = array (
'url' ,
);
$result = $this -> validate ( $request_data , $fields );
foreach ( $request_data as $field => $value ) {
2023-12-15 12:15:33 +01:00
if ( $field === 'caller' ) {
2024-01-12 17:18:52 +01:00
// Add a mention of caller so on trigger called after action, we can filter to avoid a loop if we try to sync back again with the caller
2024-04-02 12:28:55 +02:00
$this -> hook -> context [ 'caller' ] = sanitizeVal ( $request_data [ 'caller' ], 'aZ09' );
2023-12-15 12:15:33 +01:00
continue ;
}
2024-04-02 12:28:55 +02:00
$this -> hook -> $field = $this -> _checkValForAPI ( $field , $value , $this -> hook );
2020-10-27 19:46:07 +01:00
}
2023-12-15 12:15:33 +01:00
2020-10-27 19:46:07 +01:00
$this -> hook -> fk_user = DolibarrApiAccess :: $user -> id ;
2023-05-23 01:52:49 +02:00
// we create the hook into database
2020-10-27 19:46:07 +01:00
if ( ! $this -> hook -> create ( DolibarrApiAccess :: $user )) {
throw new RestException ( 500 , " Error creating Hook " , array_merge ( array ( $this -> hook -> error ), $this -> hook -> errors ));
}
return array (
'id' => $this -> hook -> id ,
);
}
/**
* Delete hook
*
* @ param int $id Hook ID
* @ return array
*
* @ url DELETE / hook / { id }
*/
public function delete ( $id )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'zapier' , 'delete' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-27 19:46:07 +01:00
}
2021-04-08 19:05:28 +02:00
2020-10-27 19:46:07 +01:00
$result = $this -> hook -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Hook not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'hook' , $this -> hook -> id )) {
2024-04-02 14:47:49 +02:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-27 19:46:07 +01:00
}
if ( ! $this -> hook -> delete ( DolibarrApiAccess :: $user )) {
throw new RestException ( 500 , 'Error when deleting Hook : ' . $this -> hook -> error );
}
return array (
'success' => array (
'code' => 200 ,
'message' => 'Hook deleted'
)
);
}
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
/**
* Clean sensible object datas
*
2020-10-30 18:01:01 +01:00
* @ param Object $object Object to clean
* @ return Object Object with cleaned properties
2020-10-27 19:46:07 +01:00
*/
public function _cleanObjectDatas ( $object )
{
// phpcs:disable
$object = parent :: _cleanObjectDatas ( $object );
return $object ;
}
/**
* Validate fields before create or update object
*
2024-08-21 13:23:35 +02:00
* @ param array < string , mixed > $data Array of data to validate
* @ param string [] $fields Array of fields needed
* @ return array < string , mixed >
2020-10-27 19:46:07 +01:00
*
* @ throws RestException
*/
private function validate ( $data , $fields )
{
$hook = array ();
foreach ( $fields as $field ) {
if ( ! isset ( $data [ $field ])) {
throw new RestException ( 400 , $field . " field missing " );
}
$hook [ $field ] = $data [ $field ];
}
return $hook ;
}
2019-05-19 21:12:22 +02:00
}