2016-11-09 21:54:51 +00:00
< ? php
2025-09-26 21:56:51 +00:00
/* Copyright ( C ) 2015 Jean - François Ferry < jfefe @ aternatik . fr >
* Copyright ( C ) 2016 Laurent Destailleur < eldy @ users . sourceforge . net >
2026-05-21 19:54:31 +00:00
* Copyright ( C ) 2024 - 2026 MDW < mdeweerd @ users . noreply . github . com >
2025-09-26 21:56:51 +00:00
* Copyright ( C ) 2025 Charlene Benke < charlene @ patas - monkey . com >
2025-09-24 08:37:26 +00:00
* Copyright ( C ) 2025 Frédéric France < frederic . france @ free . fr >
2025-11-06 23:09:14 +00:00
* Copyright ( C ) 2025 Jessica Kowal < jessicakowal69 @ gmail . com >
2016-11-09 21:54:51 +00: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 19:55:30 +00:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2016-11-09 21:54:51 +00:00
*/
2024-09-22 22:37:30 +00:00
use Luracast\Restler\RestException ;
2016-11-09 21:54:51 +00:00
2025-11-06 23:09:14 +00:00
require_once DOL_DOCUMENT_ROOT . '/projet/class/project.class.php' ;
require_once DOL_DOCUMENT_ROOT . '/projet/class/task.class.php' ;
2017-06-01 16:18:57 +00:00
2016-11-09 21:54:51 +00:00
/**
* API class for projects
*
2026-02-23 19:07:15 +00:00
* @ since 5.0 . 0 Initial implementation
2016-11-09 21:54:51 +00:00
* @ access protected
* @ class DolibarrApiAccess { @ requires user , external }
*/
class Projects extends DolibarrApi
{
2020-10-31 17:51:30 +00:00
/**
2025-02-10 20:20:09 +00:00
* @ var string [] Mandatory fields , checked when create and update object
2020-10-31 17:51:30 +00:00
*/
2021-02-26 17:49:22 +00:00
public static $FIELDS = array (
2020-10-31 17:51:30 +00:00
'ref' ,
'title'
);
2016-11-09 21:54:51 +00:00
2020-10-31 17:51:30 +00:00
/**
2025-02-10 20:20:09 +00:00
* @ var Project { @ type Project }
2020-10-31 17:51:30 +00:00
*/
public $project ;
2016-11-09 21:54:51 +00:00
2023-08-23 17:29:14 +00:00
/**
2025-02-10 20:20:09 +00:00
* @ var Task { @ type Task }
2023-08-23 17:29:14 +00:00
*/
public $task ;
2020-10-31 17:51:30 +00:00
/**
* Constructor
*/
public function __construct ()
{
global $db , $conf ;
$this -> db = $db ;
$this -> project = new Project ( $this -> db );
$this -> task = new Task ( $this -> db );
}
2016-11-09 21:54:51 +00:00
2020-10-31 17:51:30 +00:00
/**
* Get properties of a project object
*
2024-01-12 16:55:52 +00:00
* Return an array with project information
2020-10-31 17:51:30 +00:00
*
2026-02-23 19:07:15 +00:00
* @ since 5.0 . 0 Initial implementation
2023-06-18 22:52:43 +00:00
* @ param int $id ID of project
2023-09-26 16:43:25 +00:00
* @ return Object Object with cleaned properties
2020-10-31 17:51:30 +00:00
*
2023-09-26 16:43:25 +00:00
* @ throws RestException
2020-10-31 17:51:30 +00:00
*/
public function get ( $id )
{
2024-02-09 14:58:49 +00:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'lire' )) {
2024-02-01 18:16:58 +00:00
throw new RestException ( 403 );
2020-10-31 17:51:30 +00:00
}
2016-11-09 21:54:51 +00:00
2020-10-31 17:51:30 +00:00
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
2024-04-01 19:57:47 +00:00
throw new RestException ( 404 , 'Project with supplied id not found' );
2020-10-31 17:51:30 +00:00
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 17:51:30 +00:00
}
$this -> project -> fetchObjectLinked ();
return $this -> _cleanObjectDatas ( $this -> project );
}
2016-11-09 21:54:51 +00:00
2024-04-01 19:57:47 +00:00
/**
* Get properties of a project object
*
* Return an array with project information
*
2026-02-23 19:07:15 +00:00
* @ since 20.0 . 0 Initial implementation
2024-04-01 19:57:47 +00:00
* @ param string $ref Ref of project
* @ return Object Object with cleaned properties
*
* @ url GET ref / { ref }
*
* @ throws RestException
*/
public function getByRef ( $ref )
{
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'lire' )) {
throw new RestException ( 403 );
}
2024-09-22 22:37:30 +00:00
$result = $this -> project -> fetch ( 0 , $ref );
2024-04-01 19:57:47 +00:00
if ( ! $result ) {
throw new RestException ( 404 , 'Project with supplied ref not found' );
2020-10-31 17:51:30 +00:00
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 17:51:30 +00:00
}
$this -> project -> fetchObjectLinked ();
return $this -> _cleanObjectDatas ( $this -> project );
}
2016-11-09 21:54:51 +00:00
2024-04-04 20:46:54 +00:00
/**
* Get properties of a project object
*
* Return an array with project information
*
2026-02-23 19:07:15 +00:00
* @ since 20.0 . 0 Initial implementation
2024-04-04 20:46:54 +00:00
* @ param string $ref_ext Ref_Ext of project
* @ return Object Object with cleaned properties
*
* @ url GET ref_ext / { ref_ext }
*
* @ throws RestException
*/
public function getByRefExt ( $ref_ext )
{
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'lire' )) {
throw new RestException ( 403 );
}
2024-09-22 22:37:30 +00:00
$result = $this -> project -> fetch ( 0 , '' , $ref_ext );
2024-04-04 20:46:54 +00:00
if ( ! $result ) {
throw new RestException ( 404 , 'Project with supplied ref_ext not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2024-04-04 20:46:54 +00:00
}
$this -> project -> fetchObjectLinked ();
return $this -> _cleanObjectDatas ( $this -> project );
}
2024-04-01 19:57:47 +00:00
/**
* Get properties of a project object
*
* Return an array with project information
*
2026-02-23 19:07:15 +00:00
* @ since 20.0 . 0 Initial implementation
2024-04-01 19:57:47 +00:00
* @ param string $email_msgid Email msgid of project
* @ return Object Object with cleaned properties
*
* @ url GET email_msgid / { email_msgid }
*
* @ throws RestException
*/
public function getByMsgId ( $email_msgid )
{
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'lire' )) {
throw new RestException ( 403 );
}
2024-09-22 22:37:30 +00:00
$result = $this -> project -> fetch ( 0 , '' , '' , $email_msgid );
2024-04-01 19:57:47 +00:00
if ( ! $result ) {
throw new RestException ( 404 , 'Project with supplied email_msgid not found' );
}
2017-06-01 16:18:57 +00:00
2024-04-01 19:57:47 +00:00
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2024-04-01 19:57:47 +00:00
}
$this -> project -> fetchObjectLinked ();
return $this -> _cleanObjectDatas ( $this -> project );
}
2017-06-01 16:18:57 +00:00
2020-10-31 17:51:30 +00:00
/**
* List projects
*
* Get a list of projects
*
2026-02-23 19:07:15 +00:00
* @ since 5.0 . 0 Initial implementation
2023-09-26 16:43:25 +00: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 projects of ( example '1' or '1,2,3' ) { @ pattern /^ [ 0 - 9 ,] * $ / i }
2020-04-15 17:29:00 +00:00
* @ param int $category Use this param to filter list by category
2026-05-29 10:16:42 +00: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-12 16:55:52 +00:00
* @ param string $properties Restrict the data returned to these properties . Ignored if empty . Comma separated list of properties names
2024-09-10 00:09:35 +00: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 *
2020-10-31 17:51:30 +00:00
* @ return array Array of project objects
2024-10-06 11:03:43 +00:00
* @ phan - return array { data : Project [], pagination : array { total : int , page : int , page_count : int , limit : int }}
* @ phpstan - return array { data : Project [], pagination : array { total : int , page : int , page_count : int , limit : int }}
2020-10-31 17:51:30 +00:00
*/
2024-09-10 00:09:35 +00:00
public function index ( $sortfield = " t.rowid " , $sortorder = 'ASC' , $limit = 100 , $page = 0 , $thirdparty_ids = '' , $category = 0 , $sqlfilters = '' , $properties = '' , $pagination_data = false )
2020-10-31 17:51:30 +00:00
{
2024-02-09 14:58:49 +00:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'lire' )) {
2024-02-01 18:16:58 +00:00
throw new RestException ( 403 );
2021-04-08 17:05:28 +00:00
}
2020-10-31 17:51:30 +00:00
$obj_ret = array ();
2017-06-01 16:18:57 +00:00
2020-10-31 17:51:30 +00:00
// case of external user, $thirdparty_ids param is ignored and replaced by user's socid
2025-07-01 18:34:09 +00:00
$socids = DolibarrApiAccess :: $user -> socid ? : $thirdparty_ids ;
2016-11-09 21:54:51 +00:00
2020-10-31 17:51:30 +00:00
// If the internal user must only see his customers, force searching by him
$search_sale = 0 ;
2024-02-09 14:58:49 +00:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'societe' , 'client' , 'voir' ) && ! $socids ) {
2021-02-26 17:49:22 +00:00
$search_sale = DolibarrApiAccess :: $user -> id ;
}
2016-11-09 21:54:51 +00:00
2020-10-31 17:51:30 +00:00
$sql = " SELECT t.rowid " ;
2025-11-06 23:09:14 +00:00
$sql .= " FROM " . MAIN_DB_PREFIX . " projet as t " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe AS s ON (s.rowid = t.fk_soc) " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " projet_extrafields AS ef ON ef.fk_object = t.rowid " ; // So we will be able to filter on extrafields
2020-10-31 17:51:30 +00:00
if ( $category > 0 ) {
2025-11-06 23:09:14 +00:00
$sql .= " , " . MAIN_DB_PREFIX . " categorie_project as c " ;
2020-10-31 17:51:30 +00:00
}
2025-11-06 23:09:14 +00:00
$sql .= ' WHERE t.entity IN (' . getEntity ( 'project' ) . ')' ;
2021-02-26 17:49:22 +00:00
if ( $socids ) {
2025-11-06 23:09:14 +00:00
$sql .= " AND t.fk_soc IN ( " . $this -> db -> sanitize ( $socids ) . " ) " ;
2021-02-26 17:49:22 +00:00
}
2024-01-09 09:44:50 +00:00
// Search on sale representative
if ( $search_sale && $search_sale != '-1' ) {
if ( $search_sale == - 2 ) {
2025-11-06 23:09:14 +00:00
$sql .= " AND NOT EXISTS (SELECT sc.fk_soc FROM " . MAIN_DB_PREFIX . " societe_commerciaux as sc WHERE sc.fk_soc = t.fk_soc) " ;
2024-01-09 09:44:50 +00:00
} elseif ( $search_sale > 0 ) {
2025-11-06 23:09:14 +00:00
$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 ) . " ) " ;
2024-01-09 09:44:50 +00:00
}
2020-10-31 17:51:30 +00:00
}
// Select projects of given category
if ( $category > 0 ) {
2025-11-06 23:09:14 +00:00
$sql .= " AND c.fk_categorie = " . (( int ) $category ) . " AND c.fk_project = t.rowid " ;
2020-10-31 17:51:30 +00:00
}
// Add sql filters
2021-02-26 17:49:22 +00:00
if ( $sqlfilters ) {
2021-12-20 19:49:32 +00:00
$errormessage = '' ;
2023-02-25 18:48:33 +00:00
$sql .= forgeSQLFromUniversalSearchCriteria ( $sqlfilters , $errormessage );
if ( $errormessage ) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 400 , 'Error when validating parameter sqlfilters -> ' . $errormessage );
2020-10-31 17:51:30 +00:00
}
}
2024-09-10 00:09:35 +00: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 17:51:30 +00:00
$sql .= $this -> db -> order ( $sortfield , $sortorder );
if ( $limit ) {
if ( $page < 0 ) {
$page = 0 ;
}
$offset = $limit * $page ;
$sql .= $this -> db -> plimit ( $limit + 1 , $offset );
}
dol_syslog ( " API Rest request " );
$result = $this -> db -> query ( $sql );
2021-02-26 17:49:22 +00:00
if ( $result ) {
2020-10-31 17:51:30 +00:00
$num = $this -> db -> num_rows ( $result );
$min = min ( $num , ( $limit <= 0 ? $num : $limit ));
2020-10-31 08:40:15 +00:00
$i = 0 ;
2020-10-31 17:51:30 +00:00
while ( $i < $min ) {
$obj = $this -> db -> fetch_object ( $result );
$project_static = new Project ( $this -> db );
if ( $project_static -> fetch ( $obj -> rowid )) {
2023-09-26 16:04:48 +00:00
$obj_ret [] = $this -> _filterObjectProperties ( $this -> _cleanObjectDatas ( $project_static ), $properties );
2020-10-31 17:51:30 +00:00
}
$i ++ ;
}
} else {
2025-11-06 23:09:14 +00:00
throw new RestException ( 503 , 'Error when retrieve project list : ' . $this -> db -> lasterror ());
2020-10-31 17:51:30 +00:00
}
2023-12-31 13:05:21 +00:00
2024-09-10 00:09:35 +00: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 17:51:30 +00:00
return $obj_ret ;
}
2016-11-09 21:54:51 +00:00
2020-10-31 17:51:30 +00:00
/**
* Create project object
*
2026-02-23 19:07:15 +00:00
* @ since 5.0 . 0 Initial implementation
2020-10-31 17:51:30 +00:00
* @ param array $request_data Request data
2024-10-06 11:03:43 +00:00
* @ phan - param array < string , mixed > $request_data
* @ phpstan - param array < string , mixed > $request_data
2020-10-31 17:51:30 +00:00
* @ return int ID of project
*/
public function post ( $request_data = null )
{
2024-08-15 14:48:28 +00:00
global $conf ;
2024-02-09 14:58:49 +00:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'creer' )) {
2025-09-11 10:25:22 +00:00
throw new RestException ( 403 , " Insufficiant rights " );
2020-10-31 17:51:30 +00:00
}
// Check mandatory fields
$result = $this -> _validate ( $request_data );
foreach ( $request_data as $field => $value ) {
2023-12-15 11:15:33 +00:00
if ( $field === 'caller' ) {
2024-01-12 16:55:52 +00: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 10:28:55 +00:00
$this -> project -> context [ 'caller' ] = sanitizeVal ( $request_data [ 'caller' ], 'aZ09' );
2023-12-15 11:15:33 +00:00
continue ;
}
2024-04-02 10:28:55 +00:00
$this -> project -> $field = $this -> _checkValForAPI ( $field , $value , $this -> project );
2020-10-31 17:51:30 +00:00
}
/* if ( isset ( $request_data [ " lines " ])) {
2021-02-26 17:49:22 +00:00
$lines = array ();
foreach ( $request_data [ " lines " ] as $line ) {
array_push ( $lines , ( object ) $line );
}
$this -> project -> lines = $lines ;
} */
2024-08-15 14:48:28 +00:00
// Auto-generate the "ref" field if it is set to "auto"
if ( $this -> project -> ref == - 1 || $this -> project -> ref === 'auto' ) {
$reldir = '' ;
$defaultref = '' ;
$file = '' ;
$classname = '' ;
$filefound = 0 ;
2024-08-15 14:53:49 +00:00
$modele = getDolGlobalString ( 'PROJECT_ADDON' , 'mod_project_simple' );
2024-08-15 14:48:28 +00:00
$dirmodels = array_merge ( array ( '/' ), ( array ) $conf -> modules_parts [ 'models' ]);
foreach ( $dirmodels as $reldir ) {
2025-11-06 23:09:14 +00:00
$file = dol_buildpath ( $reldir . " core/modules/project/ " . $modele . '.php' , 0 );
2024-08-15 14:48:28 +00:00
if ( file_exists ( $file )) {
$filefound = 1 ;
$classname = $modele ;
break ;
}
}
if ( $filefound && ! empty ( $classname )) {
$result = dol_include_once ( $reldir . " core/modules/project/ " . $modele . '.php' );
if ( $result !== false && class_exists ( $classname )) {
$modProject = new $classname ();
2024-10-06 11:03:43 +00:00
'@phan-var-force ModeleNumRefProjects $modProject' ;
2024-08-15 14:48:28 +00:00
$defaultref = $modProject -> getNextValue ( null , $this -> project );
} else {
dol_syslog ( " Failed to include module file or invalid classname: " . $reldir . " core/modules/project/ " . $modele . '.php' , LOG_ERR );
}
} else {
dol_syslog ( " Module file not found or classname is empty: " . $modele , LOG_ERR );
}
if ( is_numeric ( $defaultref ) && $defaultref <= 0 ) {
$defaultref = '' ;
}
if ( empty ( $defaultref )) {
$defaultref = 'PJ' . dol_print_date ( dol_now (), 'dayrfc' );
}
$this -> project -> ref = $defaultref ;
}
2020-10-31 17:51:30 +00:00
if ( $this -> project -> create ( DolibarrApiAccess :: $user ) < 0 ) {
throw new RestException ( 500 , " Error creating project " , array_merge ( array ( $this -> project -> error ), $this -> project -> errors ));
}
2016-11-09 21:54:51 +00:00
2020-10-31 17:51:30 +00:00
return $this -> project -> id ;
}
2017-06-01 16:18:57 +00:00
2025-09-26 21:56:51 +00:00
/**
* Adds a contact to an project
*
2026-02-23 19:07:15 +00:00
* @ since 23.0 . 0 Initial implementation
2025-09-26 21:56:51 +00:00
* @ param int $id project ID
* @ param int $fk_socpeople Id of thirdparty contact ( if source = 'external' ) or id of user ( if source = 'internal' ) to link
* @ param string $type_contact Type of contact ( code ) . Must a code found into table llx_c_type_contact . For example : BILLING
* @ param string $source external = Contact extern ( llx_socpeople ), internal = Contact intern ( llx_user )
* @ param int $notrigger Disable all triggers
*
* @ url POST { id } / contacts
*
* @ return object
*
* @ throws RestException 304
* @ throws RestException 401
* @ throws RestException 404
* @ throws RestException 500 System error
*/
public function addContact ( $id , $fk_socpeople , $type_contact , $source , $notrigger = 0 )
{
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'creer' )) {
throw new RestException ( 403 );
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'ficheinter' , $this -> project -> id )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2025-09-26 21:56:51 +00:00
}
$result = $this -> project -> add_contact ( $fk_socpeople , $type_contact , $source , $notrigger );
if ( $result < 0 ) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 500 , 'Error : ' . $this -> project -> error );
2025-09-26 21:56:51 +00:00
}
return $this -> _cleanObjectDatas ( $this -> project );
}
/**
* Delete a contact type of given project
*
2026-02-23 19:07:15 +00:00
* @ since 23.0 . 0 Initial implementation
2025-09-26 21:56:51 +00:00
* @ param int $id Id of project to update
* @ param int $contactid Row key of the contact in the array contact_ids .
* @ param string $type Type of the contact ( BILLING , SHIPPING , CUSTOMER ) .
* @ return Object Object with cleaned properties
*
* @ url DELETE { id } / contact / { contactid } / { type }
*
* @ throws RestException 401
* @ throws RestException 404
* @ throws RestException 500 System error
*/
public function deleteContact ( $id , $contactid , $type )
{
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'creer' )) {
throw new RestException ( 403 );
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2025-09-26 21:56:51 +00:00
}
foreach ( array ( 'internal' , 'external' ) as $source ) {
$contacts = $this -> project -> liste_contact ( - 1 , $source );
foreach ( $contacts as $contact ) {
if ( $contact [ 'id' ] == $contactid && $contact [ 'code' ] == $type ) {
$result = $this -> project -> delete_contact ( $contact [ 'rowid' ]);
if ( ! $result ) {
throw new RestException ( 500 , 'Error when deleted the contact' );
}
}
}
}
return $this -> _cleanObjectDatas ( $this -> project );
}
2020-10-31 17:51:30 +00:00
/**
* Get tasks of a project .
* See also API / tasks
*
2026-02-23 19:07:15 +00:00
* @ since 5.0 . 0 Initial implementation
2020-10-31 17:51:30 +00:00
* @ param int $id Id of project
2022-01-28 21:59:32 +00:00
* @ param int $includetimespent 0 = Return only list of tasks . 1 = Include a summary of time spent , 2 = Include details of time spent lines
2023-02-08 18:09:05 +00:00
* @ return array
2024-10-06 11:03:43 +00:00
* @ phan - return Object []
* @ phpstan - return Object []
2020-10-31 17:51:30 +00:00
*
* @ url GET { id } / tasks
*/
public function getLines ( $id , $includetimespent = 0 )
{
2024-02-09 14:58:49 +00:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'lire' )) {
2024-02-01 18:16:58 +00:00
throw new RestException ( 403 );
2020-10-31 17:51:30 +00:00
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 17:51:30 +00:00
}
$this -> project -> getLinesArray ( DolibarrApiAccess :: $user );
$result = array ();
2021-02-26 17:49:22 +00:00
foreach ( $this -> project -> lines as $line ) { // $line is a task
if ( $includetimespent == 1 ) {
2020-10-31 17:51:30 +00:00
$timespent = $line -> getSummaryOfTimeSpent ( 0 );
}
2022-01-28 21:59:32 +00:00
if ( $includetimespent == 2 ) {
2022-01-28 22:03:08 +00:00
$timespent = $line -> fetchTimeSpentOnTask ();
2020-10-31 17:51:30 +00:00
}
array_push ( $result , $this -> _cleanObjectDatas ( $line ));
}
return $result ;
}
2017-06-01 16:18:57 +00:00
2020-10-31 17:51:30 +00:00
/**
* Get roles a user is assigned to a project with
*
2026-02-23 19:07:15 +00:00
* @ since 5.0 . 0 Initial implementation
2020-10-31 17:51:30 +00:00
* @ param int $id Id of project
* @ param int $userid Id of user ( 0 = connected user )
2023-01-04 17:34:54 +00:00
* @ return array
2026-05-21 19:54:31 +00:00
* @ phan - return string []
* @ phpstan - return string []
2020-10-31 17:51:30 +00:00
*
* @ url GET { id } / roles
*/
public function getRoles ( $id , $userid = 0 )
{
2024-02-09 14:58:49 +00:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'lire' )) {
2024-02-01 18:16:58 +00:00
throw new RestException ( 403 );
2020-10-31 17:51:30 +00:00
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 17:51:30 +00:00
}
2025-11-06 23:09:14 +00:00
require_once DOL_DOCUMENT_ROOT . '/projet/class/task.class.php' ;
2020-10-31 17:51:30 +00:00
$taskstatic = new Task ( $this -> db );
$userp = DolibarrApiAccess :: $user ;
2021-02-26 17:49:22 +00:00
if ( $userid > 0 ) {
2020-10-31 17:51:30 +00:00
$userp = new User ( $this -> db );
$userp -> fetch ( $userid );
}
2025-02-10 20:20:09 +00:00
$this -> project -> roles = $taskstatic -> getUserRolesForProjectsOrTasks ( $userp , null , ( string ) $id , 0 );
2020-10-31 17:51:30 +00:00
$result = array ();
foreach ( $this -> project -> roles as $line ) {
array_push ( $result , $this -> _cleanObjectDatas ( $line ));
}
2023-01-04 17:34:54 +00:00
2020-10-31 17:51:30 +00:00
return $result ;
}
2017-06-01 16:18:57 +00:00
2020-10-31 17:51:30 +00:00
/**
* Add a task to given project
*
* @ param int $id Id of project to update
* @ param array $request_data Projectline data
2024-10-06 11:03:43 +00:00
* @ phan - param array < string , mixed > $request_data
* @ phpstan - param array < string , mixed > $request_data
2020-10-31 17:51:30 +00:00
*
* @ url POST { id } / tasks
*
* @ return int
*/
/*
2021-02-26 17:49:22 +00:00
public function postLine ( $id , $request_data = null )
{
2024-02-09 14:58:49 +00:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'creer' )) {
2024-02-01 18:16:58 +00:00
throw new RestException ( 403 );
2021-02-26 17:49:22 +00:00
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2024-04-02 12:47:49 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2021-02-26 17:49:22 +00:00
}
2021-04-25 17:21:48 +00:00
2021-02-26 17:49:22 +00:00
$request_data = ( object ) $request_data ;
2021-04-25 17:21:48 +00:00
2022-03-30 10:16:17 +00:00
$request_data -> desc = sanitizeVal ( $request_data -> desc , 'restricthtml' );
2021-04-25 17:21:48 +00:00
2021-02-26 17:49:22 +00:00
$updateRes = $this -> project -> 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 ,
$request_data -> info_bits ,
$request_data -> fk_remise_except ,
'HT' ,
0 ,
$request_data -> date_start ,
$request_data -> date_end ,
$request_data -> product_type ,
$request_data -> rang ,
$request_data -> special_code ,
$fk_parent_line ,
$request_data -> fk_fournprice ,
$request_data -> pa_ht ,
$request_data -> label ,
$request_data -> array_options ,
$request_data -> fk_unit ,
$this -> element ,
$request_data -> id
);
if ( $updateRes > 0 ) {
return $updateRes ;
}
return false ;
}
*/
2017-06-01 16:18:57 +00:00
2020-10-31 13:32:18 +00:00
/**
* Update a task to given project
*
* @ param int $id Id of project to update
* @ param int $taskid Id of task to update
* @ param array $request_data Projectline data
2024-10-06 11:03:43 +00:00
* @ phan - param array < string , mixed > $request_data
* @ phpstan - param array < string , mixed > $request_data
2020-10-31 13:32:18 +00:00
*
* @ url PUT { id } / tasks / { taskid }
*
* @ return object
*/
/*
2021-02-26 17:49:22 +00:00
public function putLine ( $id , $lineid , $request_data = null )
{
2024-02-09 14:58:49 +00:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'creer' )) {
2024-02-01 18:16:58 +00:00
throw new RestException ( 403 );
2021-02-26 17:49:22 +00:00
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2024-04-02 12:47:49 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2021-02-26 17:49:22 +00:00
}
2021-04-25 17:21:48 +00:00
2021-02-26 17:49:22 +00:00
$request_data = ( object ) $request_data ;
2021-04-25 17:21:48 +00:00
2022-03-30 10:16:17 +00:00
$request_data -> desc = sanitizeVal ( $request_data -> desc , 'restricthtml' );
2021-04-25 17:21:48 +00:00
2021-02-26 17:49:22 +00:00
$updateRes = $this -> project -> updateline (
$lineid ,
$request_data -> desc ,
$request_data -> subprice ,
$request_data -> qty ,
$request_data -> remise_percent ,
$request_data -> tva_tx ,
$request_data -> localtax1_tx ,
$request_data -> localtax2_tx ,
'HT' ,
$request_data -> info_bits ,
$request_data -> date_start ,
$request_data -> date_end ,
$request_data -> product_type ,
$request_data -> fk_parent_line ,
0 ,
$request_data -> fk_fournprice ,
$request_data -> pa_ht ,
$request_data -> label ,
$request_data -> special_code ,
$request_data -> array_options ,
$request_data -> fk_unit
);
if ( $updateRes > 0 ) {
$result = $this -> get ( $id );
unset ( $result -> line );
return $this -> _cleanObjectDatas ( $result );
}
return false ;
} */
2016-11-09 21:54:51 +00:00
2017-06-01 16:18:57 +00:00
2020-10-31 17:51:30 +00:00
/**
* Update project general fields ( won ' t touch lines of project )
*
2026-02-23 19:07:15 +00:00
* @ since 5.0 . 0 Initial implementation
2024-02-22 00:32:55 +00:00
* @ param int $id Id of project to update
* @ param array $request_data Datas
2024-10-06 11:03:43 +00:00
* @ phan - param ? array < string , mixed > $request_data
* @ phpstan - param ? array < string , mixed > $request_data
2024-02-22 00:32:55 +00:00
* @ return Object Updated object
2024-10-06 11:03:43 +00:00
* @ phan - return Object | false
* @ phpstan - return Object | false
2020-10-31 17:51:30 +00:00
*/
public function put ( $id , $request_data = null )
{
2024-02-09 14:58:49 +00:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'creer' )) {
2024-02-01 18:16:58 +00:00
throw new RestException ( 403 );
2020-10-31 17:51:30 +00:00
}
$result = $this -> project -> fetch ( $id );
if ( $result <= 0 ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 17:51:30 +00:00
}
foreach ( $request_data as $field => $value ) {
2021-02-26 17:49:22 +00:00
if ( $field == 'id' ) {
continue ;
}
2023-12-15 11:15:33 +00:00
if ( $field === 'caller' ) {
2024-01-12 16:55:52 +00: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 10:28:55 +00:00
$this -> project -> context [ 'caller' ] = sanitizeVal ( $request_data [ 'caller' ], 'aZ09' );
2023-12-15 11:15:33 +00:00
continue ;
}
2024-04-01 09:29:03 +00:00
if ( $field == 'array_options' && is_array ( $value )) {
foreach ( $value as $index => $val ) {
2026-05-08 23:16:35 +00:00
$this -> project -> array_options [ $index ] = $this -> _checkValExtrafieldsForAPI ( $index , $val , $this -> project );
2024-04-01 09:29:03 +00:00
}
continue ;
}
2023-12-15 11:15:33 +00:00
2024-04-02 10:28:55 +00:00
$this -> project -> $field = $this -> _checkValForAPI ( $field , $value , $this -> project );
2020-10-31 17:51:30 +00:00
}
2021-02-26 17:49:22 +00:00
if ( $this -> project -> update ( DolibarrApiAccess :: $user ) >= 0 ) {
2020-10-31 17:51:30 +00:00
return $this -> get ( $id );
} else {
throw new RestException ( 500 , $this -> project -> error );
}
}
2017-06-01 16:18:57 +00:00
2020-10-31 17:51:30 +00:00
/**
* Delete project
*
2026-02-23 19:07:15 +00:00
* @ since 5.0 . 0 Initial implementation
2020-10-31 17:51:30 +00:00
* @ param int $id Project ID
*
* @ return array
2024-10-06 11:03:43 +00:00
* @ phan - return array { success : array { code : int , message : string }}
* @ phpstan - return array { success : array { code : int , message : string }}
2020-10-31 17:51:30 +00:00
*/
public function delete ( $id )
{
2024-02-09 14:58:49 +00:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'supprimer' )) {
2024-02-01 18:16:58 +00:00
throw new RestException ( 403 );
2020-10-31 17:51:30 +00:00
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 17:51:30 +00:00
}
if ( ! $this -> project -> delete ( DolibarrApiAccess :: $user )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 500 , 'Error when delete project : ' . $this -> project -> error );
2020-10-31 17:51:30 +00:00
}
return array (
'success' => array (
'code' => 200 ,
'message' => 'Project deleted'
)
);
}
2017-06-01 16:18:57 +00:00
2020-10-31 17:51:30 +00:00
/**
* Validate a project .
* You can test this API with the following input message
* { " notrigger " : 0 }
*
2026-02-23 19:07:15 +00:00
* @ since 5.0 . 0 Initial implementation
2020-10-31 17:51:30 +00:00
* @ param int $id Project ID
* @ param int $notrigger 1 = Does not execute triggers , 0 = execute triggers
2024-10-06 11:03:43 +00:00
* @ phan - param int < 0 , 1 > $notrigger
* @ phpstan - param int < 0 , 1 > $notrigger
2020-10-31 17:51:30 +00:00
*
* @ url POST { id } / validate
*
* @ return array
2024-10-06 11:03:43 +00:00
* @ phan - return array { success : array { code : int , message : string }}
* @ phpstan - return array { success : array { code : int , message : string }}
2020-10-31 17:51:30 +00:00
* 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-09 14:58:49 +00:00
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'creer' )) {
2024-02-01 18:16:58 +00:00
throw new RestException ( 403 );
2020-10-31 17:51:30 +00:00
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
2020-10-31 17:51:30 +00:00
}
$result = $this -> project -> setValid ( DolibarrApiAccess :: $user , $notrigger );
if ( $result == 0 ) {
throw new RestException ( 304 , 'Error nothing done. May be object is already validated' );
}
if ( $result < 0 ) {
2025-11-06 23:09:14 +00:00
throw new RestException ( 500 , 'Error when validating Project: ' . $this -> project -> error );
2020-10-31 17:51:30 +00:00
}
return array (
'success' => array (
'code' => 200 ,
'message' => 'Project validated'
)
);
}
2025-11-06 01:10:53 +00:00
/**
* Get all timespent
*
2026-02-23 19:07:15 +00:00
* @ since 23.0 . 0 Initial implementation
2025-11-06 01:10:53 +00: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 projects of ( example '1' or '1,2,3' ) { @ pattern /^ [ 0 - 9 ,] * $ / i }
* @ param int $category Use this param to filter list by category
2026-05-29 10:16:42 +00:00
* @ param string $sqlfilters Other criteria to filter answers separated by a comma . Syntax example " (t.ref:like:'SO-%') and (t.date_creation:>:'20160101') "
2025-11-06 01:10:53 +00:00
* @ param string $properties Restrict the data returned to these properties . Ignored if empty . Comma separated list of properties names
* @ 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 project objects
* @ phan - return array { data : Project [], pagination : array { total : int , page : int , page_count : int , limit : int }}
* @ phpstan - return array { data : Project [], pagination : array { total : int , page : int , page_count : int , limit : int }}
* @ url GET / alltimespent
*/
public function listTimespent ( $sortfield = " t.rowid " , $sortorder = 'ASC' , $limit = 100 , $page = 0 , $thirdparty_ids = '' , $category = 0 , $sqlfilters = '' , $properties = '' , $pagination_data = false )
{
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'lire' )) {
throw new RestException ( 403 );
}
// case of external user, $thirdparty_ids param is ignored and replaced by user's socid
$socids = DolibarrApiAccess :: $user -> socid ? : $thirdparty_ids ;
// If the internal user must only see his customers, force searching by him
$search_sale = 0 ;
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'societe' , 'client' , 'voir' ) && ! $socids ) {
$search_sale = DolibarrApiAccess :: $user -> id ;
}
$sql = " SELECT et.rowid, et.element_duration, et.element_datehour, et.fk_user, et.note as time_note, et.thm, " ;
$sql .= " u.login as user_login, u.firstname as user_firstname, u.lastname as user_lastname, " ;
$sql .= " p.rowid as project_id, p.ref as project_ref, p.title as project_title, " ;
$sql .= " t.rowid as task_id, t.ref as task_ref, t.label as task_label, " ;
$sql .= " s.rowid as soc_id, s.nom as soc_name " ;
$sql .= " FROM " . MAIN_DB_PREFIX . " projet as p " ;
$sql .= " INNER JOIN " . MAIN_DB_PREFIX . " projet_task as t ON (t.fk_projet = p.rowid) " ;
$sql .= " INNER JOIN " . MAIN_DB_PREFIX . " element_time as et ON (et.fk_element = t.rowid AND et.elementtype = 'task') " ;
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . " societe AS s ON (s.rowid = p.fk_soc) " ;
$sql .= " INNER JOIN " . MAIN_DB_PREFIX . " user AS u ON (u.rowid = et.fk_user) " ;
$sql .= ' WHERE t.entity IN (' . getEntity ( 'project' ) . ')' ;
if ( $socids ) {
$sql .= " AND t.fk_soc IN ( " . $this -> db -> sanitize ( $socids ) . " ) " ;
}
// 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 ) . " ) " ;
}
}
// Select projects of given category
if ( $category > 0 ) {
$sql .= " AND c.fk_categorie = " . (( int ) $category ) . " AND c.fk_project = t.rowid " ;
}
// Add sql filters
if ( $sqlfilters ) {
$errormessage = '' ;
$sql .= forgeSQLFromUniversalSearchCriteria ( $sqlfilters , $errormessage );
if ( $errormessage ) {
throw new RestException ( 400 , 'Error when validating parameter sqlfilters -> ' . $errormessage );
}
}
//this query will return total orders with the filters given
$sqlTotals = str_replace ( 'SELECT t.rowid' , 'SELECT count(t.rowid) as total' , $sql );
$sql .= $this -> db -> order ( $sortfield , $sortorder );
if ( $limit ) {
if ( $page < 0 ) {
$page = 0 ;
}
$offset = $limit * $page ;
$sql .= $this -> db -> plimit ( $limit + 1 , $offset );
}
dol_syslog ( " API Rest request " );
$result = $this -> db -> query ( $sql );
$obj_ret = array ();
if ( $result ) {
$num = $this -> db -> num_rows ( $result );
$min = min ( $num , ( $limit <= 0 ? $num : $limit ));
$i = 0 ;
while ( $i < $min ) {
$obj = $this -> db -> fetch_object ( $result );
$obj_ret [] = $this -> _filterObjectProperties ( $this -> _cleanObjectDatas ( $obj ), $properties );
$i ++ ;
}
} else {
throw new RestException ( 503 , 'Error when retrieve timestamp list : ' . $this -> db -> lasterror ());
}
//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 [ 'data' ] = $tmp ;
$obj_ret [ 'pagination' ] = [
'total' => ( int ) $total ,
'page' => $page , //count starts from 0
'page_count' => ceil (( int ) $total / $limit ),
'limit' => $limit
];
}
return $obj_ret ;
}
2020-10-31 17:51:30 +00:00
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
/**
* Clean sensible object datas
2025-11-20 00:47:46 +00:00
* @ phpstan - template T
2020-10-31 17:51:30 +00:00
*
* @ param Object $object Object to clean
* @ return Object Object with cleaned properties
2025-11-20 00:47:46 +00:00
* @ phpstan - param T $object
* @ phpstan - return T
2020-10-31 17:51:30 +00:00
*/
protected function _cleanObjectDatas ( $object )
{
// phpcs:enable
$object = parent :: _cleanObjectDatas ( $object );
unset ( $object -> datec );
unset ( $object -> datem );
unset ( $object -> barcode_type );
unset ( $object -> barcode_type_code );
unset ( $object -> barcode_type_label );
unset ( $object -> barcode_type_coder );
unset ( $object -> cond_reglement_id );
unset ( $object -> cond_reglement );
unset ( $object -> fk_delivery_address );
unset ( $object -> shipping_method_id );
unset ( $object -> fk_account );
unset ( $object -> note );
unset ( $object -> fk_incoterms );
unset ( $object -> label_incoterms );
unset ( $object -> location_incoterms );
unset ( $object -> name );
unset ( $object -> lastname );
unset ( $object -> firstname );
unset ( $object -> civility_id );
unset ( $object -> mode_reglement_id );
unset ( $object -> country );
unset ( $object -> country_id );
unset ( $object -> country_code );
unset ( $object -> weekWorkLoad );
unset ( $object -> weekWorkLoad );
//unset($object->lines); // for task we use timespent_lines, but for project we use lines
unset ( $object -> total_ht );
unset ( $object -> total_tva );
unset ( $object -> total_localtax1 );
unset ( $object -> total_localtax2 );
unset ( $object -> total_ttc );
unset ( $object -> comments );
return $object ;
}
2017-06-01 16:18:57 +00:00
2020-10-31 17:51:30 +00:00
/**
* Validate fields before create or update object
*
2024-10-06 11:03:43 +00:00
* @ param array < string , mixed > $data Array with data to verify
* @ return array < string , mixed >
2020-10-31 17:51:30 +00:00
* @ throws RestException
*/
private function _validate ( $data )
{
$object = array ();
foreach ( self :: $FIELDS as $field ) {
2021-02-26 17:49:22 +00:00
if ( ! isset ( $data [ $field ])) {
2020-10-31 17:51:30 +00:00
throw new RestException ( 400 , " $field field missing " );
2021-02-26 17:49:22 +00:00
}
2020-10-31 17:51:30 +00:00
$object [ $field ] = $data [ $field ];
}
return $object ;
}
2025-11-06 23:09:14 +00:00
/**
* Get contacts of given project
*
* Return an array with contact information
*
2026-02-23 19:07:15 +00:00
* @ since 23.0 . 0 Initial implementation
2025-11-06 23:09:14 +00:00
* @ param int $id ID of project
* @ param string $type Type of the contact
* @ return array < int , mixed > Array with cleaned properties
*
* @ url GET { id } / contacts
*
* @ throws RestException
*/
public function getContacts ( $id , $type = '' )
{
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'lire' )) {
throw new RestException ( 403 );
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
}
$contacts = $this -> project -> liste_contact ( - 1 , 'external' , 0 , $type );
$socpeoples = $this -> project -> liste_contact ( - 1 , 'internal' , 0 , $type );
$contacts = array_merge ( $contacts , $socpeoples );
return $contacts ;
}
/**
* Adds a contact to a project
*
2026-02-23 19:07:15 +00:00
* @ since 23.0 . 0 Initial implementation
2025-11-06 23:09:14 +00:00
* @ param int $id Project ID
* @ param int $fk_socpeople Id of thirdparty contact ( if source = 'external' ) or id of user ( if source = 'internal' ) to link
* @ param string $type_contact Type of contact ( code ) . Must a code found into table llx_c_type_contact . For example : BILLING
* @ param string $source external = Contact extern ( llx_socpeople ), internal = Contact intern ( llx_user )
* @ param int $notrigger Disable all triggers
* @ param int [] $affect_to_tasks Array of task IDs to also add the contact to ( empty array = all tasks , null = no tasks )
*
* @ url POST { id } / contacts
*
* @ return object
*
* @ throws RestException 304
* @ throws RestException 401
* @ throws RestException 404
* @ throws RestException 500 System error
*/
public function addToContact ( $id , $fk_socpeople , $type_contact , $source , $notrigger = 0 , $affect_to_tasks = null )
{
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'creer' )) {
throw new RestException ( 403 );
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
}
// Ajouter le contact au projet
$result = $this -> project -> add_contact ( $fk_socpeople , $type_contact , $source , $notrigger );
if ( $result <= 0 ) {
throw new RestException ( 500 , 'Error : ' . $this -> project -> error . 'result :' . $result );
}
2026-07-01 10:26:51 +00:00
// If requested, add the contact to tasks
2025-11-06 23:09:14 +00:00
if ( $affect_to_tasks !== null ) {
$this -> project -> getLinesArray ( DolibarrApiAccess :: $user );
foreach ( $this -> project -> lines as $task ) {
2026-07-01 10:26:51 +00:00
// If $affect_to_tasks is empty, assign to all tasks
// Otherwise, check if the task is in the list
2025-11-06 23:09:14 +00:00
if ( empty ( $affect_to_tasks ) || in_array ( $task -> id , $affect_to_tasks )) {
$task -> add_contact ( $fk_socpeople , $type_contact , $source , $notrigger );
}
}
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
return $this -> _cleanObjectDatas ( $this -> project );
}
/**
* Delete a contact type of given project
*
2026-02-23 19:07:15 +00:00
* @ since 23.0 . 0 Initial implementation
2025-11-06 23:09:14 +00:00
* @ param int $id Id of project to update
* @ param int $contactid Row key of the contact in the array contact_ids .
* @ param string $type Type of the contact ( BILLING , SHIPPING , CUSTOMER ) .
* @ return Object Object with cleaned properties
*
* @ url DELETE { id } / contact / { contactid } / { type }
*
* @ throws RestException 401
* @ throws RestException 404
* @ throws RestException 500 System error
*/
public function deleteToContact ( $id , $contactid , $type )
{
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'creer' )) {
throw new RestException ( 403 );
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
}
foreach ( array ( 'internal' , 'external' ) as $source ) {
$contacts = $this -> project -> liste_contact ( - 1 , $source );
foreach ( $contacts as $contact ) {
if ( $contact [ 'id' ] == $contactid && $contact [ 'code' ] == $type ) {
$result = $this -> project -> delete_contact ( $contact [ 'rowid' ]);
if ( ! $result ) {
throw new RestException ( 500 , 'Error when deleted the contact' );
}
break 2 ;
}
}
}
return $this -> _cleanObjectDatas ( $this -> project );
}
/**
* Get timespent of a project ( from all its tasks )
*
2026-02-23 19:07:15 +00:00
* @ since 23.0 . 0 Initial implementation
2025-11-06 23:09:14 +00:00
* @ param int $id ID of project
* @ return array < int , mixed > Array of timespent objects
*
* @ url GET { id } / timespent
*
* @ throws RestException
*/
public function getTimespent ( $id )
{
if ( ! DolibarrApiAccess :: $user -> hasRight ( 'projet' , 'lire' )) {
throw new RestException ( 403 );
}
$result = $this -> project -> fetch ( $id );
if ( ! $result ) {
throw new RestException ( 404 , 'Project not found' );
}
if ( ! DolibarrApi :: _checkAccessToResource ( 'project' , $this -> project -> id )) {
throw new RestException ( 403 , 'Access not allowed for login ' . DolibarrApiAccess :: $user -> login );
}
$this -> project -> getLinesArray ( DolibarrApiAccess :: $user );
$allTimespent = array ();
foreach ( $this -> project -> lines as $task ) {
$allTimespent [] = $task -> getSummaryOfTimeSpent ();
//var_dump($taskTimespent);
//foreach ($taskTimespent as $time) {
// $this->_cleanObjectDatas($time);
//}
}
return $allTimespent ;
}
2020-10-31 17:51:30 +00:00
// TODO
// getSummaryOfTimeSpent
2016-11-09 21:54:51 +00:00
}