2017-10-16 17:56:59 +02:00
< ? php
2023-09-26 18:43:25 +02:00
/* Copyright ( C ) 2015 Jean - François Ferry < jfefe @ aternatik . fr >
2020-10-31 09:27:58 +01:00
* Copyright ( C ) 2016 Laurent Destailleur < eldy @ users . sourceforge . net >
2024-12-31 16:25:57 +01:00
* Copyright ( C ) 2018 - 2024 Frédéric France < frederic . france @ free . fr >
2017-10-16 17:56:59 +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
2019-09-23 21:55:30 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2017-10-16 17:56:59 +02:00
*/
use Luracast\Restler\RestException ;
require_once DOL_DOCUMENT_ROOT . '/contrat/class/contrat.class.php' ;
/**
* API class for contracts
*
* @ access protected
* @ class DolibarrApiAccess { @ requires user , external }
*/
class Contracts extends DolibarrApi
{
2020-10-31 18:51:30 +01:00
/**
* @ var array $FIELDS Mandatory fields , checked when create and update object
*/
2023-12-04 12:01:45 +01:00
public static $FIELDS = array (
2020-10-31 18:51:30 +01:00
'socid' ,
'date_contrat' ,
'commercial_signature_id' ,
'commercial_suivi_id'
);
/**
* @ var Contrat $contract { @ type Contrat }
*/
public $contract ;
/**
* Constructor
*/
public function __construct ()
{
global $db , $conf ;
$this -> db = $db ;
$this -> contract = new Contrat ( $this -> db );
}
/**
* Get properties of a contract object
*
2024-01-14 12:26:37 +01:00
* Return an array with contract information
2020-10-31 18:51:30 +01:00
*
2023-06-19 00:52:43 +02:00
* @ param int $id ID of contract
2023-09-26 18:43:25 +02:00
* @ return Object Object with cleaned properties
* @ throws RestException
2020-10-31 18:51:30 +01:00
*/
public function get ( $id )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'lire' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Contract not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'contrat' , $this -> contract -> id )) {
2024-04-02 14:47:49 +02:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 18:51:30 +01:00
}
$this -> contract -> fetchObjectLinked ();
return $this -> _cleanObjectDatas ( $this -> contract );
}
/**
* List contracts
*
* Get a list of contracts
*
2023-09-26 18:43:25 +02:00
* @ param string $sortfield Sort field
* @ param string $sortorder Sort order
* @ param int $limit Limit for list
* @ param int $page Page number
* @ param string $thirdparty_ids Thirdparty ids to filter contracts of ( example '1' or '1,2,3' ) { @ pattern /^ [ 0 - 9 ,] * $ / i }
2020-10-31 18:51:30 +01:00
* @ 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-14 12:26:37 +01:00
* @ param string $properties Restrict the data returned to these properties . Ignored if empty . Comma separated list of properties names
2024-08-20 10:18:15 +02:00
* @ param bool $pagination_data If this parameter is set to true the response will include pagination data . Default value is false . Page starts from 0 *
* @ return array Array of order objects
2020-10-31 18:51:30 +01:00
*
* @ throws RestException 404 Not found
* @ throws RestException 503 Error
*/
2024-08-20 10:18:15 +02:00
public function index ( $sortfield = " t.rowid " , $sortorder = 'ASC' , $limit = 100 , $page = 0 , $thirdparty_ids = '' , $sqlfilters = '' , $properties = '' , $pagination_data = false )
2020-10-31 18:51:30 +01:00
{
global $db , $conf ;
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'lire' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2021-04-08 19:05:28 +02:00
}
2020-10-31 18:51:30 +01:00
$obj_ret = array ();
// case of external user, $thirdparty_ids param is ignored and replaced by user's socid
$socids = DolibarrApiAccess :: $user -> socid ? DolibarrApiAccess :: $user -> socid : $thirdparty_ids ;
// 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 ( ! DolibarrApiAccess :: $user -> hasRight ( 'societe' , 'client' , 'voir' ) && ! $socids ) {
2021-02-23 21:24:38 +01:00
$search_sale = DolibarrApiAccess :: $user -> id ;
}
2020-10-31 18:51:30 +01:00
$sql = " SELECT t.rowid " ;
2023-04-28 09:31:33 +02:00
$sql .= " FROM " . MAIN_DB_PREFIX . " contrat AS t LEFT JOIN " . MAIN_DB_PREFIX . " contrat_extrafields AS ef ON (ef.fk_object = t.rowid) " ; // Modification VMR Global Solutions to include extrafields as search parameters in the API GET call, so we will be able to filter on extrafields
2020-10-31 18:51:30 +01:00
$sql .= ' WHERE t.entity IN (' . getEntity ( 'contrat' ) . ')' ;
2021-02-23 21:24:38 +01:00
if ( $socids ) {
2021-03-22 11:30:18 +01:00
$sql .= " AND t.fk_soc IN ( " . $this -> db -> sanitize ( $socids ) . " ) " ;
2021-02-23 21:24:38 +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-31 18:51:30 +01:00
}
// Add sql filters
2021-02-23 21:24:38 +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-31 18:51:30 +01:00
}
}
2024-08-20 10:18:15 +02:00
//this query will return total orders with the filters given
$sqlTotals = str_replace ( 'SELECT t.rowid' , 'SELECT count(t.rowid) as total' , $sql );
2020-10-31 18:51:30 +01:00
$sql .= $this -> db -> order ( $sortfield , $sortorder );
if ( $limit ) {
2021-02-23 21:24:38 +01:00
if ( $page < 0 ) {
2020-10-31 18:51:30 +01:00
$page = 0 ;
}
$offset = $limit * $page ;
$sql .= $this -> db -> plimit ( $limit + 1 , $offset );
}
dol_syslog ( " API Rest request " );
$result = $this -> db -> query ( $sql );
2021-02-23 21:24:38 +01:00
if ( $result ) {
2020-10-31 18:51:30 +01:00
$num = $this -> db -> num_rows ( $result );
$min = min ( $num , ( $limit <= 0 ? $num : $limit ));
$i = 0 ;
2021-02-23 21:24:38 +01:00
while ( $i < $min ) {
2020-10-31 18:51:30 +01:00
$obj = $this -> db -> fetch_object ( $result );
$contrat_static = new Contrat ( $this -> db );
if ( $contrat_static -> fetch ( $obj -> rowid )) {
2023-09-26 18:04:48 +02:00
$obj_ret [] = $this -> _filterObjectProperties ( $this -> _cleanObjectDatas ( $contrat_static ), $properties );
2020-10-31 18:51:30 +01:00
}
$i ++ ;
}
} else {
throw new RestException ( 503 , 'Error when retrieve contrat list : ' . $this -> db -> lasterror ());
}
2023-12-31 14:11:05 +01:00
2024-08-20 10:18:15 +02:00
//if $pagination_data is true the response will contain element data with all values and element pagination with pagination data(total,page,limit)
if ( $pagination_data ) {
$totalsResult = $this -> db -> query ( $sqlTotals );
$total = $this -> db -> fetch_object ( $totalsResult ) -> total ;
$tmp = $obj_ret ;
$obj_ret = [];
$obj_ret [ 'data' ] = $tmp ;
$obj_ret [ 'pagination' ] = [
'total' => ( int ) $total ,
'page' => $page , //count starts from 0
'page_count' => ceil (( int ) $total / $limit ),
'limit' => $limit
];
}
2020-10-31 18:51:30 +01:00
return $obj_ret ;
}
/**
* Create contract object
*
* @ param array $request_data Request data
* @ return int ID of contrat
*/
public function post ( $request_data = null )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'creer' )) {
2024-04-07 14:59:25 +02:00
throw new RestException ( 403 , " Insufficient rights " );
2020-10-31 18:51:30 +01:00
}
// Check mandatory fields
$result = $this -> _validate ( $request_data );
foreach ( $request_data as $field => $value ) {
2023-12-15 12:15:33 +01:00
if ( $field === 'caller' ) {
2024-01-14 12:26:37 +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 -> contract -> 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 -> contract -> $field = $this -> _checkValForAPI ( $field , $value , $this -> contract );
2020-10-31 18:51:30 +01:00
}
/* if ( isset ( $request_data [ " lines " ])) {
2021-02-23 21:24:38 +01:00
$lines = array ();
foreach ( $request_data [ " lines " ] as $line ) {
array_push ( $lines , ( object ) $line );
}
$this -> contract -> lines = $lines ;
} */
2020-10-31 18:51:30 +01:00
if ( $this -> contract -> create ( DolibarrApiAccess :: $user ) < 0 ) {
throw new RestException ( 500 , " Error creating contract " , array_merge ( array ( $this -> contract -> error ), $this -> contract -> errors ));
}
return $this -> contract -> id ;
}
/**
* Get lines of a contract
*
* @ param int $id Id of contract
*
* @ url GET { id } / lines
*
* @ return array
*/
public function getLines ( $id )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'lire' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Contract not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'contrat' , $this -> contract -> id )) {
2024-04-02 14:47:49 +02:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 18:51:30 +01:00
}
$this -> contract -> getLinesArray ();
$result = array ();
foreach ( $this -> contract -> lines as $line ) {
array_push ( $result , $this -> _cleanObjectDatas ( $line ));
}
return $result ;
}
/**
* Add a line to given contract
*
* @ param int $id Id of contrat to update
* @ param array $request_data Contractline data
*
* @ url POST { id } / lines
*
* @ return int | bool
*/
public function postLine ( $id , $request_data = null )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'creer' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Contract not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'contrat' , $this -> contract -> id )) {
2024-04-02 14:47:49 +02:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 18:51:30 +01:00
}
2021-04-25 19:21:48 +02:00
2020-10-31 18:51:30 +01:00
$request_data = ( object ) $request_data ;
2021-04-25 19:21:48 +02:00
2022-03-30 12:16:17 +02:00
$request_data -> desc = sanitizeVal ( $request_data -> desc , 'restricthtml' );
$request_data -> price_base_type = sanitizeVal ( $request_data -> price_base_type );
2021-04-25 19:21:48 +02:00
2020-10-31 18:51:30 +01:00
$updateRes = $this -> contract -> addline (
$request_data -> desc ,
$request_data -> subprice ,
$request_data -> qty ,
$request_data -> tva_tx ,
$request_data -> localtax1_tx ,
$request_data -> localtax2_tx ,
$request_data -> fk_product ,
$request_data -> remise_percent ,
2022-10-07 12:02:53 +02:00
$request_data -> date_start ,
$request_data -> date_end ,
2021-04-25 19:21:48 +02:00
$request_data -> price_base_type ? $request_data -> price_base_type : 'HT' ,
2020-10-31 18:51:30 +01:00
$request_data -> subprice_excl_tax ,
$request_data -> info_bits ,
$request_data -> fk_fournprice ,
$request_data -> pa_ht ,
$request_data -> array_options ,
$request_data -> fk_unit ,
$request_data -> rang
);
if ( $updateRes > 0 ) {
return $updateRes ;
}
return false ;
}
/**
* Update a line to given contract
*
* @ param int $id Id of contrat to update
* @ param int $lineid Id of line to update
* @ param array $request_data Contractline data
*
* @ url PUT { id } / lines / { lineid }
*
2020-11-25 18:12:59 +01:00
* @ return Object | bool
2020-10-31 18:51:30 +01:00
*/
public function putLine ( $id , $lineid , $request_data = null )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'creer' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Contrat not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'contrat' , $this -> contract -> id )) {
2024-04-02 14:47:49 +02:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 18:51:30 +01:00
}
$request_data = ( object ) $request_data ;
2022-03-30 12:16:17 +02:00
$request_data -> desc = sanitizeVal ( $request_data -> desc , 'restricthtml' );
$request_data -> price_base_type = sanitizeVal ( $request_data -> price_base_type );
2021-04-25 19:21:48 +02:00
2020-10-31 18:51:30 +01:00
$updateRes = $this -> contract -> updateline (
$lineid ,
$request_data -> desc ,
$request_data -> subprice ,
$request_data -> qty ,
$request_data -> remise_percent ,
2022-10-07 12:02:53 +02:00
$request_data -> date_start ,
$request_data -> date_end ,
2020-10-31 18:51:30 +01:00
$request_data -> tva_tx ,
$request_data -> localtax1_tx ,
$request_data -> localtax2_tx ,
2022-10-07 12:02:53 +02:00
$request_data -> date_start_real ,
$request_data -> date_end_real ,
2021-04-25 19:21:48 +02:00
$request_data -> price_base_type ? $request_data -> price_base_type : 'HT' ,
2020-10-31 18:51:30 +01:00
$request_data -> info_bits ,
$request_data -> fk_fourn_price ,
$request_data -> pa_ht ,
$request_data -> array_options ,
$request_data -> fk_unit
);
if ( $updateRes > 0 ) {
$result = $this -> get ( $id );
unset ( $result -> line );
return $this -> _cleanObjectDatas ( $result );
}
return false ;
}
/**
* Activate a service line of a given contract
*
2023-09-26 18:43:25 +02:00
* @ param int $id Id of contract to activate
* @ param int $lineid Id of line to activate
* @ param string $datestart { @ from body } Date start { @ type timestamp }
2020-10-31 18:51:30 +01:00
* @ param string $dateend { @ from body } Date end { @ type timestamp }
2023-09-26 18:43:25 +02:00
* @ param string $comment { @ from body } Comment
2020-10-31 18:51:30 +01:00
*
* @ url PUT { id } / lines / { lineid } / activate
*
2020-11-25 18:12:59 +01:00
* @ return Object | bool
2020-10-31 18:51:30 +01:00
*/
public function activateLine ( $id , $lineid , $datestart , $dateend = null , $comment = null )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'creer' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Contrat not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'contrat' , $this -> contract -> id )) {
2024-04-02 14:47:49 +02:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 18:51:30 +01:00
}
$updateRes = $this -> contract -> active_line ( DolibarrApiAccess :: $user , $lineid , $datestart , $dateend , $comment );
if ( $updateRes > 0 ) {
$result = $this -> get ( $id );
unset ( $result -> line );
return $this -> _cleanObjectDatas ( $result );
}
return false ;
}
/**
* Unactivate a service line of a given contract
*
2023-09-26 18:43:25 +02:00
* @ param int $id Id of contract to activate
* @ param int $lineid Id of line to activate
* @ param string $datestart { @ from body } Date start { @ type timestamp }
* @ param string $comment { @ from body } Comment
2020-10-31 18:51:30 +01:00
*
* @ url PUT { id } / lines / { lineid } / unactivate
*
2020-11-25 18:12:59 +01:00
* @ return Object | bool
2020-10-31 18:51:30 +01:00
*/
public function unactivateLine ( $id , $lineid , $datestart , $comment = null )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'creer' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Contrat not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'contrat' , $this -> contract -> id )) {
2024-04-02 14:47:49 +02:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 18:51:30 +01:00
}
$updateRes = $this -> contract -> close_line ( DolibarrApiAccess :: $user , $lineid , $datestart , $comment );
if ( $updateRes > 0 ) {
$result = $this -> get ( $id );
unset ( $result -> line );
return $this -> _cleanObjectDatas ( $result );
}
return false ;
}
/**
* Delete a line to given contract
*
*
* @ param int $id Id of contract to update
* @ param int $lineid Id of line to delete
*
* @ url DELETE { id } / lines / { lineid }
*
* @ return array | mixed
*
* @ throws RestException 401
* @ throws RestException 404
*/
public function deleteLine ( $id , $lineid )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'creer' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Contrat not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'contrat' , $this -> contract -> id )) {
2024-04-02 14:47:49 +02:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 18:51:30 +01:00
}
// TODO Check the lineid $lineid is a line of object
2024-02-02 23:46:12 +01:00
$updateRes = $this -> contract -> deleteLine ( $lineid , DolibarrApiAccess :: $user );
2020-10-31 18:51:30 +01:00
if ( $updateRes > 0 ) {
return $this -> get ( $id );
} else {
2023-12-04 12:01:45 +01:00
throw new RestException ( 405 , $this -> contract -> error );
2020-10-31 18:51:30 +01:00
}
}
/**
* Update contract general fields ( won ' t touch lines of contract )
*
2024-02-22 01:32:55 +01:00
* @ param int $id Id of contract to update
* @ param array $request_data Datas
* @ return Object Updated object
2020-10-31 18:51:30 +01:00
*/
public function put ( $id , $request_data = null )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'creer' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Contrat not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'contrat' , $this -> contract -> id )) {
2024-04-02 14:47:49 +02:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 18:51:30 +01:00
}
foreach ( $request_data as $field => $value ) {
2021-02-23 21:24:38 +01:00
if ( $field == 'id' ) {
continue ;
}
2023-12-15 12:15:33 +01:00
if ( $field === 'caller' ) {
2024-01-14 12:26:37 +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 -> contract -> context [ 'caller' ] = sanitizeVal ( $request_data [ 'caller' ], 'aZ09' );
2023-12-15 12:15:33 +01:00
continue ;
}
2024-04-01 11:02:29 +02:00
if ( $field == 'array_options' && is_array ( $value )) {
foreach ( $value as $index => $val ) {
2024-12-31 16:25:57 +01:00
$this -> contract -> array_options [ $index ] = $this -> _checkValForAPI ( $field , $val , $this -> contract );
2024-04-01 11:02:29 +02:00
}
continue ;
}
2023-12-15 12:15:33 +01:00
2024-04-02 12:28:55 +02:00
$this -> contract -> $field = $this -> _checkValForAPI ( $field , $value , $this -> contract );
2020-10-31 18:51:30 +01:00
}
if ( $this -> contract -> update ( DolibarrApiAccess :: $user ) > 0 ) {
return $this -> get ( $id );
} else {
throw new RestException ( 500 , $this -> contract -> error );
}
}
/**
* Delete contract
*
* @ param int $id Contract ID
*
* @ return array
*/
public function delete ( $id )
{
2023-06-19 23:11:08 +02:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'supprimer' )) {
2024-02-01 13:34:55 +01:00
throw new RestException ( 403 );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Contract not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'contrat' , $this -> contract -> id )) {
2024-02-01 13:34:55 +01:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 18:51:30 +01:00
}
if ( ! $this -> contract -> delete ( DolibarrApiAccess :: $user )) {
throw new RestException ( 500 , 'Error when delete contract : ' . $this -> contract -> error );
}
return array (
'success' => array (
'code' => 200 ,
'message' => 'Contract deleted'
)
);
}
/**
* Validate a contract
*
* @ param int $id Contract ID
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
*
* @ url POST { id } / validate
*
* @ return array
* FIXME An error 403 is returned if the request has an empty body .
* Error message : " Forbidden: Content type `text/plain` is not supported. "
* Workaround : send this in the body
* {
* " notrigger " : 0
* }
*/
public function validate ( $id , $notrigger = 0 )
{
2024-02-01 13:34:55 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'creer' )) {
throw new RestException ( 403 );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Contract not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'contrat' , $this -> contract -> id )) {
2024-02-01 13:34:55 +01:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> validate ( DolibarrApiAccess :: $user , '' , $notrigger );
if ( $result == 0 ) {
throw new RestException ( 304 , 'Error nothing done. May be object is already validated' );
}
if ( $result < 0 ) {
throw new RestException ( 500 , 'Error when validating Contract: ' . $this -> contract -> error );
}
return array (
'success' => array (
'code' => 200 ,
'message' => 'Contract validated (Ref=' . $this -> contract -> ref . ')'
)
);
}
/**
* Close all services of a contract
*
* @ param int $id Contract ID
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
*
* @ url POST { id } / close
*
* @ return array
* FIXME An error 403 is returned if the request has an empty body .
* Error message : " Forbidden: Content type `text/plain` is not supported. "
* Workaround : send this in the body
* {
* " notrigger " : 0
* }
*/
public function close ( $id , $notrigger = 0 )
{
2024-02-09 15:58:49 +01:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'contrat' , 'creer' )) {
2024-02-01 19:16:58 +01:00
throw new RestException ( 403 );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Contract not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'contrat' , $this -> contract -> id )) {
2024-04-02 14:47:49 +02:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 18:51:30 +01:00
}
$result = $this -> contract -> closeAll ( DolibarrApiAccess :: $user , $notrigger );
if ( $result == 0 ) {
throw new RestException ( 304 , 'Error nothing done. May be object is already close' );
}
if ( $result < 0 ) {
throw new RestException ( 500 , 'Error when closing Contract: ' . $this -> contract -> error );
}
return array (
'success' => array (
'code' => 200 ,
'message' => 'Contract closed (Ref=' . $this -> contract -> ref . '). All services were closed.'
)
);
}
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
/**
* Clean sensible object datas
*
* @ param Object $object Object to clean
* @ return Object Object with cleaned properties
*/
protected function _cleanObjectDatas ( $object )
{
// phpcs:enable
$object = parent :: _cleanObjectDatas ( $object );
unset ( $object -> address );
unset ( $object -> civility_id );
return $object ;
}
/**
* Validate fields before create or update object
*
* @ param array $data Array with data to verify
* @ return array
* @ throws RestException
*/
private function _validate ( $data )
{
$contrat = array ();
foreach ( Contracts :: $FIELDS as $field ) {
2021-02-23 21:24:38 +01:00
if ( ! isset ( $data [ $field ])) {
2020-10-31 18:51:30 +01:00
throw new RestException ( 400 , " $field field missing " );
2021-02-23 21:24:38 +01:00
}
2020-10-31 18:51:30 +01:00
$contrat [ $field ] = $data [ $field ];
}
return $contrat ;
}
2017-10-16 17:56:59 +02:00
}