dolibarr 24.0.0-beta
modAi.class.php
1<?php
2/* Copyright (C) 2004-2018 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2018-2019 Nicolas ZABOURI <info@inovea-conseil.com>
4 * Copyright (C) 2019-2024 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 * Copyright (C) 2026 Jose Martinez <jose.martinez@pichinov.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
30include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
31
36{
42 public function __construct($db)
43 {
44 global $conf;
45
46 $this->db = $db;
47
48 // Id for module (must be unique).
49 // Use here a free id (See in Home -> System information -> Dolibarr for list of used modules id).
50 $this->numero = 4560;
51
52 // Key text used to identify module (for permissions, menus, etc...)
53 $this->rights_class = 'ai';
54
55 // Family can be 'base' (core modules),'crm','financial','hr','projects','products','ecm','technic' (transverse modules),'interface' (link with external tools),'other','...'
56 // It is used to group modules by family in module setup page
57 $this->family = "technic";
58
59 // Module position in the family on 2 digits ('01', '10', '20', ...)
60 $this->module_position = '50';
61
62 // Gives the possibility for the module, to provide his own family info and position of this family (Overwrite $this->family and $this->module_position. Avoid this)
63 //$this->familyinfo = array('myownfamily' => array('position' => '01', 'label' => $langs->trans("MyOwnFamily")));
64 // Module label (no space allowed), used if translation string 'ModuleAiName' not found (Ai is name of module).
65 $this->name = preg_replace('/^mod/i', '', get_class($this));
66
67 // Module description, used if translation string 'ModuleAiDesc' not found (Ai is name of module).
68 $this->description = "AiDescription";
69 // Used only if file README.md and README-LL.md not found.
70 $this->descriptionlong = "AiDescriptionLong";
71
72 // Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated' or a version string like 'x.y.z'
73 $this->version = 'dolibarr';
74
75 // Key used in llx_const table to save module status enabled/disabled (where BOOKCAL is value of property name of module in uppercase)
76 $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
77
78 // Name of image file used for this module.
79 // If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
80 // If file is in module/img directory under name object_pictovalue.png, use this->picto='pictovalue@module'
81 // To use a supported fa-xxx css style of font awesome, use this->picto='xxx'
82 $this->picto = 'fa-magic';
83
84 // Define some features supported by module (triggers, login, substitutions, menus, css, etc...)
85 $this->module_parts = array(
86 // Set this to 1 if module has its own trigger directory (core/triggers)
87 'triggers' => 0,
88 // Set this to 1 if module has its own login method file (core/login)
89 'login' => 0,
90 // Set this to 1 if module has its own substitution function file (core/substitutions)
91 'substitutions' => 0,
92 // Set this to 1 if module has its own menus handler directory (core/menus)
93 'menus' => 0,
94 // Set this to 1 if module overwrite template dir (core/tpl)
95 'tpl' => 0,
96 // Set this to 1 if module has its own barcode directory (core/modules/barcode)
97 'barcode' => 0,
98 // Set this to 1 if module has its own models directory (core/modules/xxx)
99 'models' => 0,
100 // Set this to 1 if module has its own printing directory (core/modules/printing)
101 'printing' => 0,
102 // Set this to 1 if module has its own theme directory (theme)
103 'theme' => 0,
104 // Set this to relative path of css file if module has its own css file
105 'css' => array(
106 // '/ai/css/ai.css.php',
107 ),
108 // Set this to relative path of js file if module must load a js on all pages
109 'js' => array(
110 // '/ai/js/ai.js.php',
111 ),
112 // Set here all hooks context managed by module. To find available hook context, make a "grep -r '>initHooks(' *" on source code. You can also set hook context to 'all'
113 'hooks' => array(
114 // 'data' => array(
115 // 'hookcontext1',
116 // 'hookcontext2',
117 // ),
118 // 'entity' => '0',
119 ),
120 // Set this to 1 if features of module are opened to external users
121 'moduleforexternal' => 0,
122 );
123
124 // Data directories to create when module is enabled.
125 // Example: this->dirs = array("/ai/temp","/ai/subdir");
126 $this->dirs = array("/ai/temp");
127
128 // Config pages. Put here list of php page, stored into ai/admin directory, to use to setup module.
129 $this->config_page_url = array("setup.php@ai");
130
131 // Dependencies
132 // A condition to hide module
133 $this->hidden = false;
134 // List of module class names as string that must be enabled if this module is enabled. Example: array('always'=>array('modModuleToEnable1','modModuleToEnable2'), 'FR'=>array('modModuleToEnableFR'...))
135 $this->depends = array();
136 $this->requiredby = array(); // List of module class names as string to disable if this one is disabled. Example: array('modModuleToDisable1', ...)
137 $this->conflictwith = array(); // List of module class names as string this module is in conflict with. Example: array('modModuleToDisable1', ...)
138
139 // The language file dedicated to your module
140 $this->langfiles = array("ai");
141
142 // Prerequisites
143 $this->phpmin = array(7, 0); // Minimum version of PHP required by module
144
145 // Messages at activation
146 $this->warnings_activation = array();
147 $this->warnings_activation_ext = array();
148 //$this->automatic_activation = array('FR'=>'AiWasAutomaticallyActivatedBecauseOfYourCountryChoice');
149
150 // Constants
151 // List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 'current' or 'allentities', deleteonunactive)
152 // Example: $this->const=array(1 => array('BOOKCAL_MYNEWCONST1', 'chaine', 'myvalue', 'This is a constant to add', 1),
153 // 2 => array('BOOKCAL_MYNEWCONST2', 'chaine', 'myvalue', 'This is another constant to add', 0, 'current', 1)
154 // );
155 $this->const = array();
156
157 // Some keys to add into the overwriting translation tables
158 /*$this->overwrite_translation = array(
159 'en_US:ParentCompany'=>'Parent company or reseller',
160 'fr_FR:ParentCompany'=>'Maison mère ou revendeur'
161 )*/
162
163 if (!isset($conf->ai) || !isset($conf->ai->enabled)) {
164 $conf->ai = new stdClass();
165 $conf->ai->enabled = 0;
166 }
167
168 // Array to add new pages in new tabs
169 $this->tabs = array();
170 // Example:
171 // $this->tabs[] = array('data'=>'objecttype:+tabname1:Title1:mylangfile@ai:$user->hasRight('ai','read'):/ai/mynewtab1.php?id=__ID__'); // To add a new tab identified by code tabname1
172 // $this->tabs[] = array('data'=>'objecttype:+tabname2:SUBSTITUTION_Title2:mylangfile@ai:$user->hasRight('othermodule','read'):/ai/mynewtab2.php?id=__ID__', // To add another new tab identified by code tabname2. Label will be result of calling all substitution functions on 'Title2' key.
173 // $this->tabs[] = array('data'=>'objecttype:-tabname:NU:conditiontoremove'); // To remove an existing tab identified by code tabname
174 //
175 // Where objecttype can be
176 // 'categories_x' to add a tab in category view (replace 'x' by type of category (0=product, 1=supplier, 2=customer, 3=member)
177 // 'contact' to add a tab in contact view
178 // 'contract' to add a tab in contract view
179 // 'group' to add a tab in group view
180 // 'intervention' to add a tab in intervention view
181 // 'invoice' to add a tab in customer invoice view
182 // 'invoice_supplier' to add a tab in supplier invoice view
183 // 'member' to add a tab in foundation member view
184 // 'opensurveypoll' to add a tab in opensurvey poll view
185 // 'order' to add a tab in customer order view
186 // 'order_supplier' to add a tab in supplier order view
187 // 'payment' to add a tab in payment view
188 // 'payment_supplier' to add a tab in supplier payment view
189 // 'product' to add a tab in product view
190 // 'propal' to add a tab in propal view
191 // 'project' to add a tab in project view
192 // 'stock' to add a tab in stock view
193 // 'thirdparty' to add a tab in third party view
194 // 'user' to add a tab in user view
195
196 // Dictionaries
197 $this->dictionaries = array();
198 /* Example:
199 $this->dictionaries=array(
200 'langs'=>'ai@ai',
201 // List of tables we want to see into dictionary editor
202 'tabname'=>array("table1", "table2", "table3"),
203 // Label of tables
204 'tablib'=>array("Table1", "Table2", "Table3"),
205 // Request to select fields
206 'tabsql'=>array('SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table1 as f', 'SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table2 as f', 'SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table3 as f'),
207 // Sort order
208 'tabsqlsort'=>array("label ASC", "label ASC", "label ASC"),
209 // List of fields (result of select to show dictionary)
210 'tabfield'=>array("code,label", "code,label", "code,label"),
211 // List of fields (list of fields to edit a record)
212 'tabfieldvalue'=>array("code,label", "code,label", "code,label"),
213 // List of fields (list of fields for insert)
214 'tabfieldinsert'=>array("code,label", "code,label", "code,label"),
215 // Name of columns with primary key (try to always name it 'rowid')
216 'tabrowid'=>array("rowid", "rowid", "rowid"),
217 // Condition to show each dictionary
218 'tabcond'=>array($conf->ai->enabled, $conf->ai->enabled, $conf->ai->enabled)
219 // Help tooltip for each fields of the dictionary
220 'tabhelp'=>array(array('code'=>$langs->trans('CodeTooltipHelp')))
221 );
222 */
223
224 // Boxes/Widgets
225 // Add here list of php file(s) stored in ai/core/boxes that contains a class to show a widget.
226 $this->boxes = array(
227 // 0 => array(
228 // 'file' => 'aiwidget1.php@ai',
229 // 'note' => 'Widget provided by Ai',
230 // 'enabledbydefaulton' => 'Home',
231 // ),
232 // ...
233 );
234
235 // Cronjobs (List of cron jobs entries to add when module is enabled)
236 // unit_frequency must be 60 for minute, 3600 for hour, 86400 for day, 604800 for week
237 $this->cronjobs = array(
238 // 0 => array(
239 // 'label' => 'MyJob label',
240 // 'jobtype' => 'method',
241 // 'class' => '/ai/class/availabilities.class.php',
242 // 'objectname' => 'Availabilities',
243 // 'method' => 'doScheduledJob',
244 // 'parameters' => '',
245 // 'comment' => 'Comment',
246 // 'frequency' => 2,
247 // 'unitfrequency' => 3600,
248 // 'status' => 0,
249 // 'test' => 'isModEnabled('ai')',
250 // 'priority' => 50,
251 // ),
252 );
253 // Example: $this->cronjobs=array(
254 // 0=>array('label'=>'My label', 'jobtype'=>'method', 'class'=>'/dir/class/file.class.php', 'objectname'=>'MyClass', 'method'=>'myMethod', 'parameters'=>'param1, param2', 'comment'=>'Comment', 'frequency'=>2, 'unitfrequency'=>3600, 'status'=>0, 'test'=>'$conf->ai->enabled', 'priority'=>50),
255 // 1=>array('label'=>'My label', 'jobtype'=>'command', 'command'=>'', 'parameters'=>'param1, param2', 'comment'=>'Comment', 'frequency'=>1, 'unitfrequency'=>3600*24, 'status'=>0, 'test'=>'$conf->ai->enabled', 'priority'=>50)
256 // );
257
258 // Permissions provided by this module
259 $this->rights = array();
260 $r = 0;
261 // Add here entries to declare new permissions
262 /* BEGIN MODULEBUILDER PERMISSIONS */
263 // Right to use the AI Assistant chat (read-level access to the AI workflow).
264 //
265 // NOT granted by default: per the GDPR / EU AI Act discussion on
266 // issue #38331 (and feedback by @sonikf and @eldy on this PR),
267 // AI Assistant usage must be attributed explicitly by an admin to
268 // the users/groups who are authorized to send organisational data
269 // to the configured LLM provider. The admin is typically the GDPR
270 // DPO officer who is also the de-facto DPA for the AI module, and
271 // owns the per-user authorization decision.
272 //
273 // Setup access intentionally remains a hard $user->admin check
274 // (technical setup, no dedicated right declared) so that the
275 // API-key configuration of the AI module stays in admin scope,
276 // in line with how every other Dolibarr module is configured.
277 $this->rights[$r][0] = $this->numero + 1;
278 $this->rights[$r][1] = 'Use the AI Assistant';
279 $this->rights[$r][3] = 0; // default: NOT granted
280 $this->rights[$r][4] = 'assistant';
281 $this->rights[$r][5] = 'use';
282 $r++;
283 /* END MODULEBUILDER PERMISSIONS */
284
285 // Main menu entries to add
286 $this->menu = array();
287 $r = 0;
288 // Add here entries to declare new menus
289 /* BEGIN MODULEBUILDER TOPMENU */
290 /* END MODULEBUILDER TOPMENU */
291
292 /* BEGIN MODULEBUILDER LEFTMENU AI */
293 /* END MODULEBUILDER LEFTMENU AI */
294
295 /* BEGIN MODULEBUILDER LEFTMENU AVAILABILITIES
296 /* END MODULEBUILDER LEFTMENU AVAILABILITIES */
297
298 // Exports profiles provided by this module
299 $r = 1;
300 /* BEGIN MODULEBUILDER EXPORT AVAILABILITIES */
301 /*
302 $langs->load("agenda");
303 $this->export_code[$r]=$this->rights_class.'_'.$r;
304 $this->export_label[$r]='AvailabilitiesLines'; // Translation key (used only if key ExportDataset_xxx_z not found)
305 $this->export_icon[$r]='availabilities@ai';
306 // Define $this->export_fields_array, $this->export_TypeFields_array and $this->export_entities_array
307 $keyforclass = 'Availabilities'; $keyforclassfile='/ai/class/availabilities.class.php'; $keyforelement='availabilities@ai';
308 include DOL_DOCUMENT_ROOT.'/core/commonfieldsinexport.inc.php';
309 //$this->export_fields_array[$r]['t.fieldtoadd']='FieldToAdd'; $this->export_TypeFields_array[$r]['t.fieldtoadd']='Text';
310 //unset($this->export_fields_array[$r]['t.fieldtoremove']);
311 //$keyforclass = 'AvailabilitiesLine'; $keyforclassfile='/ai/class/availabilities.class.php'; $keyforelement='availabilitiesline@ai'; $keyforalias='tl';
312 //include DOL_DOCUMENT_ROOT.'/core/commonfieldsinexport.inc.php';
313 $keyforselect='availabilities'; $keyforaliasextra='extra'; $keyforelement='availabilities@ai';
314 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
315 //$keyforselect='availabilitiesline'; $keyforaliasextra='extraline'; $keyforelement='availabilitiesline@ai';
316 //include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
317 //$this->export_dependencies_array[$r] = array('availabilitiesline'=>array('tl.rowid','tl.ref')); // To force to activate one or several fields if we select some fields that need same (like to select a unique key if we ask a field of a child to avoid the DISTINCT to discard them, or for computed field than need several other fields)
318 //$this->export_special_array[$r] = array('t.field'=>'...');
319 //$this->export_examplevalues_array[$r] = array('t.field'=>'Example');
320 //$this->export_help_array[$r] = array('t.field'=>'FieldDescHelp');
321 $this->export_sql_start[$r]='SELECT DISTINCT ';
322 $this->export_sql_end[$r] =' FROM '.MAIN_DB_PREFIX.'availabilities as t';
323 //$this->export_sql_end[$r] =' LEFT JOIN '.MAIN_DB_PREFIX.'availabilities_line as tl ON tl.fk_availabilities = t.rowid';
324 $this->export_sql_end[$r] .=' WHERE 1 = 1';
325 $this->export_sql_end[$r] .=' AND t.entity IN ('.getEntity('availabilities').')';
326 $r++; */
327 /* END MODULEBUILDER EXPORT AVAILABILITIES */
328
329 // Imports profiles provided by this module
330 $r = 1;
331 /* BEGIN MODULEBUILDER IMPORT AVAILABILITIES */
332 /*
333 $langs->load("agenda");
334 $this->import_code[$r]=$this->rights_class.'_'.$r;
335 $this->import_label[$r]='AvailabilitiesLines'; // Translation key (used only if key ExportDataset_xxx_z not found)
336 $this->import_icon[$r]='availabilities@ai';
337 $this->import_tables_array[$r] = array('t' => MAIN_DB_PREFIX.'ai_availabilities', 'extra' => MAIN_DB_PREFIX.'ai_availabilities_extrafields');
338 $this->import_tables_creator_array[$r] = array('t' => 'fk_user_author'); // Fields to store import user id
339 $import_sample = array();
340 $keyforclass = 'Availabilities'; $keyforclassfile='/ai/class/availabilities.class.php'; $keyforelement='availabilities@ai';
341 include DOL_DOCUMENT_ROOT.'/core/commonfieldsinimport.inc.php';
342 $import_extrafield_sample = array();
343 $keyforselect='availabilities'; $keyforaliasextra='extra'; $keyforelement='availabilities@ai';
344 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinimport.inc.php';
345 $this->import_fieldshidden_array[$r] = array('extra.fk_object' => 'lastrowid-'.MAIN_DB_PREFIX.'ai_availabilities');
346 $this->import_regex_array[$r] = array();
347 $this->import_examplevalues_array[$r] = array_merge($import_sample, $import_extrafield_sample);
348 $this->import_updatekeys_array[$r] = array('t.ref' => 'Ref');
349 $this->import_convertvalue_array[$r] = array(
350 't.ref' => array(
351 'rule'=>'getrefifauto',
352 'class'=>(empty($conf->global->BOOKCAL_AVAILABILITIES_ADDON) ? 'mod_availabilities_standard' : $conf->global->BOOKCAL_AVAILABILITIES_ADDON),
353 'path'=>"/core/modules/commande/".(empty($conf->global->BOOKCAL_AVAILABILITIES_ADDON) ? 'mod_availabilities_standard' : $conf->global->BOOKCAL_AVAILABILITIES_ADDON).'.php'
354 'classobject'=>'Availabilities',
355 'pathobject'=>'/ai/class/availabilities.class.php',
356 ),
357 't.fk_soc' => array('rule' => 'fetchidfromref', 'file' => '/societe/class/societe.class.php', 'class' => 'Societe', 'method' => 'fetch', 'element' => 'ThirdParty'),
358 't.fk_user_valid' => array('rule' => 'fetchidfromref', 'file' => '/user/class/user.class.php', 'class' => 'User', 'method' => 'fetch', 'element' => 'user'),
359 't.fk_mode_reglement' => array('rule' => 'fetchidfromcodeorlabel', 'file' => '/compta/paiement/class/cpaiement.class.php', 'class' => 'Cpaiement', 'method' => 'fetch', 'element' => 'cpayment'),
360 );
361 $r++; */
362 /* END MODULEBUILDER IMPORT AVAILABILITIES */
363 }
364
373 public function init($options = '')
374 {
375 //global $conf, $langs;
376
377 $result = $this->_load_tables('/install/mysql/', 'ai');
378 if ($result < 0) {
379 return -1; // Do not activate module if error 'not allowed' returned when loading module SQL queries (the _load_table run sql with run_sql with the error allowed parameter set to 'default')
380 }
381
382 // Permissions
383 $this->remove($options);
384
385 $sql = array();
386
387 return $this->_init($sql, $options);
388 }
389
398 public function remove($options = '')
399 {
400 $sql = array();
401 return $this->_remove($sql, $options);
402 }
403}
Class DolibarrModules.
_init($array_sql, $options='')
Enables a module.
_remove($array_sql, $options='')
Disable function.
_load_tables($reldir, $onlywithsuffix='')
Create tables and keys required by module:
Description and activation class for module Ai.
__construct($db)
Constructor.
init($options='')
Function called when module is enabled.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:133