dolibarr 25.0.0-alpha
externalModules.class.php
1<?php
2/*
3 * Copyright (C) 2025 Mohamed DAOUD <mdaoud@dolicloud.com>
4 * Copyright (C) 2025-2026 MDW <mdeweerd@users.noreply.github.com>
5 * Copyright (C) 2025 Frédéric France <frederic.france@free.fr>
6 *
7 * This program is free software; you can redistribute it and/or modifyion 2.0 (the "License");
8 * it under the terms of the GNU General Public License as published bypliance with the License.
9 * the Free Software Foundation; either version 3 of the License, or
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 * or see https://www.gnu.org/
19 */
20
21include_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
22
27{
31 public $no_page;
32
36 public $per_page;
40 public $categorie;
41
45 public $search;
46
47 // setups
55 public $file_source_url;
56
60 public $cache_file;
61
66 public $url;
70 public $shop_url; // the url of the shop
74 public $lang; // the integer representing the lang in the store
78 public $debug_api; // useful if no dialog
82 public $dolistore_api_url;
86 public $dolistore_api_key;
87
91 public $dolistoreApiStatus;
92
96 public $dolistoreApiError;
97
101 public $githubFileStatus;
102
106 public $githubFileError;
107
111 public $error;
112
116 public $numberOfProviders;
117
121 public $products;
122
126 public $numberTotalOfProducts;
127
131 public $numberTotalOfPages;
132
136 public $numberOfProducts;
137
143 public function __construct($debug = false)
144 {
145 global $langs;
146
147 $this->debug_api = $debug;
148
149 $this->url = DOL_URL_ROOT.'/admin/modules.php?mode=marketplace';
150
151 // For dolistore modules
152 $this->dolistore_api_url = getDolGlobalString('MAIN_MODULE_DOLISTORE_API_SRV', 'https://www.dolistore.com/api/'); // 'https://www.dolistore.com/api/', 'https://admin2.dolibarr.org/api/index.php/marketplace/'
153 $this->dolistore_api_key = getDolGlobalString('MAIN_MODULE_DOLISTORE_API_KEY', 'dolistorepublicapi');
154 $this->shop_url = getDolGlobalString('MAIN_MODULE_DOLISTORE_SHOP_URL', 'https://www.dolistore.com');
155
156 // For community modules
157 $this->file_source_url = "https://raw.githubusercontent.com/Dolibarr/dolibarr-community-modules/refs/heads/main/index.yaml";
158 $this->cache_file = DOL_DATA_ROOT.'/admin/temp/remote_github_modules_file.yaml';
159
160 $lang = $langs->defaultlang;
161 $lang_array = array('en_US', 'fr_FR', 'es_ES', 'it_IT', 'de_DE');
162 if (!in_array($lang, $lang_array)) {
163 $lang = 'en_US';
164 }
165 $this->lang = $lang;
166 }
167
174 public function loadRemoteSources($debug = false)
175 {
176 // Check access to Community repo
177 if (getDolGlobalString('MAIN_ENABLE_EXTERNALMODULES_COMMUNITY')) {
178 $cachedelayforgithubrepo = getDolGlobalInt('MAIN_REMOTE_GITHUBREPO_CACHE_DELAY', 86400);
179
180 $this->getRemoteYamlFile($this->file_source_url, $cachedelayforgithubrepo);
181
182 $this->githubFileError = $this->error;
183 $this->githubFileStatus = dol_is_file($this->cache_file) ? 1 : 0;
184 }
185
186 // Check access to Dolistore API /api/categories -> /api/index.php/marketplace/categories
187 if (getDolGlobalString('MAIN_ENABLE_EXTERNALMODULES_DOLISTORE')) {
188 $this->dolistoreApiStatus = $this->checkApiStatus();
189 }
190
191 // Count the number of online providers
192 $this->numberOfProviders = $this->dolistoreApiStatus + $this->githubFileStatus;
193 }
194
202 public function callApi($resource, $options = false)
203 {
204 // If no dolistore_api_key is set, we can't access the API
205 if (empty($this->dolistore_api_key) || empty($this->dolistore_api_url)) {
206 return array('status_code' => 0, 'response' => null);
207 }
208
209 // Add basic auth if needed
210 $basicAuthLogin = getDolGlobalString('MAIN_MODULE_DOLISTORE_BASIC_LOGIN');
211 $basicAuthPassword = getDolGlobalString('MAIN_MODULE_DOLISTORE_BASIC_PASSWORD');
212
213 $httpheader = array('DOLAPIKEY: '.$this->dolistore_api_key);
214 if ($basicAuthLogin) {
215 $httpheader[] = 'Authorization: Basic '.base64_encode($basicAuthLogin.':'.$basicAuthPassword);
216 }
217
218 $url = $this->dolistore_api_url . (preg_match('/\/$/', $this->dolistore_api_url) ? '' : '/') . $resource;
219
220 $options['apikey'] = $this->dolistore_api_key;
221
222 if ($options) {
223 $url .= '?' . http_build_query($options);
224 }
225
226 $response = getURLContent($url, 'GET', '', 1, $httpheader, array('https'), 0, -1, 5, 5);
227
228 $status_code = $response['http_code'];
229 $body = 'Error';
230
231 if ($status_code == 200) {
232 $body = $response['content'];
233 $body = json_decode($body, true);
234 $returnarray = array(
235 'status_code' => $status_code,
236 'response' => $body
237 );
238 } else {
239 $returnarray = array(
240 'status_code' => $status_code,
241 'response' => $body
242 );
243 if (!empty($response['curl_error_no'])) {
244 $returnarray['curl_error_no'] = $response['curl_error_no'];
245 }
246 if (!empty($response['curl_error_msg'])) {
247 $returnarray['curl_error_msg'] = $response['curl_error_msg'];
248 }
249 }
250
251 return $returnarray;
252 }
253
260 public function fetchModulesFromFile($options = array())
261 {
262 $modules = array();
263
264 if (!empty($this->cache_file) && file_exists($this->cache_file)) {
265 dol_syslog(__METHOD__ . " - Loading cache file: " . $this->cache_file, LOG_DEBUG);
266
267 $content = file_get_contents($this->cache_file);
268 if ($content !== false) {
269 $modules = $this->readYaml($content);
270 } else {
271 dol_syslog(__METHOD__ . " - Error reading cache file", LOG_ERR);
272 }
273 }
274
275 return $modules;
276 }
277
284 public function getCategories($active = 0)
285 {
286 $organized_tree = array();
287 $html = '';
288
289 $data = [
290 'lang' => $this->lang
291 ];
292
293 $current = $active;
294
295 $resCategories = $this->callApi('categories', $data);
296 if (isset($resCategories['response']) && is_array($resCategories['response'])) {
297 $organized_tree = $resCategories['response'];
298 } else {
299 return $html ;
300 }
301
302 $html = '';
303 foreach ($organized_tree as $key => $value) {
304 if ($value['label'] != "Versions" && $value['label'] != "Specials") {
305 $html .= '<li' . ($current == $value['rowid'] ? ' class="active"' : '') . '>';
306 $html .= '<a href="?mode=marketplace&categorie=' . $value['rowid'] . '">' . $value['label'] . '</a>';
307 if (isset($value['children'])) {
308 $html .= '<ul>';
309 usort($value['children'], $this->buildSorter('position'));
310 foreach ($value['children'] as $key_children => $value_children) {
311 $html .= '<li' . ($current == $value_children['rowid'] ? ' class="active"' : '') . '>';
312 $html .= '<a href="?mode=marketplace&categorie=' . $value_children['rowid'] . '" title="' . dol_escape_htmltag(strip_tags($value_children['description'])) . '">' . $value_children['label'] . '</a>';
313 $html .= '</li>';
314 }
315 $html .= '</ul>';
316 }
317 $html .= '</li>';
318 }
319 }
320 return $html;
321 }
322
329 public function getProducts($options)
330 {
331 global $langs;
332
333 $langs->load("products");
334
335 $html = "";
336 $last_month = dol_now() - (30 * 24 * 60 * 60);
337 $dolibarrversiontouse = DOL_VERSION; // full string with version
338
339 $this->products = array();
340
341 $this->categorie = $options['categorie'] ?? 0;
342 $this->per_page = $options['per_page'] ?? 11;
343 $this->no_page = $options['no_page'] ?? 1;
344 $this->search = $options['search'] ?? '';
345
346 $this->per_page = 11; // We fix number of products per page to 11
347
348 // Length of $search must be at least 2 characters
349 if (!empty($this->search) && strlen(str_replace(' ', '', (string) $this->search)) < 2) {
350 $html .= '<tr class=""><td colspan="3" class="center">';
351 $html .= '<br><br>';
352 $html .= $langs->trans("SearchStringMinLength").'...';
353 $html .= '<br><br>';
354 $html .= '</td></tr>';
355 return $html;
356 }
357
358 $data = [
359 'categorieid' => $this->categorie,
360 'limit' => $this->per_page,
361 'page' => $this->no_page,
362 'search' => $this->search,
363 'lang' => $this->lang
364 ];
365
366
367 $this->numberTotalOfProducts = 0;
368
369 // Special case of category goodies
370 if ($this->categorie == 87) {
371 $html = '<div class="shop-container">
372 <div class="shop-image">
373 <a href="https://merch.dolibarr.org/" target="_blank">
374 <img src="https://www.dolistore.com/medias/image/marketplace/img/goodies-shop.jpg" width="50%" alt="DoliStore Merch and Gifts" />
375 <div class="shop-overlay">
376 <button target="new" class="shop-button">'.$langs->trans("GoodiesButtonTitle").' <i class="icon-chevron-right"></i></button>
377 </div>
378 </a>
379 </div>
380 </div>';
381
382 return $html;
383 }
384
385 // Fetch the products from Dolistore source
386
387 $dolistoreProducts = array();
388 $dolistoreProductsTotal = 0;
389 if ($this->dolistoreApiStatus > 0 && getDolGlobalInt('MAIN_ENABLE_EXTERNALMODULES_DOLISTORE')) {
390 $getDolistoreProducts = $this->callApi('products', $data);
391
392 if (!isset($getDolistoreProducts['response']) || !is_array($getDolistoreProducts['response']) || ($getDolistoreProducts['status_code'] != 200 && $getDolistoreProducts['status_code'] != 201)) {
393 $dolistoreProducts = array();
394 $dolistoreProductsTotal = 0;
395 } else {
396 $dolistoreProducts = $this->adaptData($getDolistoreProducts['response']['products'], 'dolistore');
397 $dolistoreProductsTotal = (int) $getDolistoreProducts['response']['total'];
398 $this->numberTotalOfProducts += $dolistoreProductsTotal;
399 }
400 }
401
402 // Fetch the products from the github repo
403
404 $fileProducts = array();
405 $fileProductsTotal = 0;
406 if (!empty($this->githubFileStatus) && getDolGlobalInt('MAIN_ENABLE_EXTERNALMODULES_COMMUNITY')) {
407 $fileProducts = $this->fetchModulesFromFile($data); // Return an array with all modules from the cache filecontent in $data
408
409 $fileProducts = $this->adaptData($fileProducts, 'githubcommunity');
410
411 $fileProducts = $this->applyFilters($fileProducts, $data);
412
413 $fileProductsTotal = $fileProducts['total'];
414
415 $this->numberTotalOfProducts += $fileProductsTotal;
416
417 $fileProducts = $fileProducts['data'];
418 }
419
420 // Number of pages
421 $this->numberTotalOfPages = (int) ceil(max($fileProductsTotal / $this->per_page, $dolistoreProductsTotal / $this->per_page));
422
423 // Merge both sources (github community modules have priority on dolistore).
424 $this->products = $dolistoreProducts;
425 foreach ($fileProducts as $fileProduct) {
426 $id = $fileProduct['id'];
427 if ($id > 0) {
428 if (empty($this->products[$id])) { // Not already present in array
429 array_unshift($this->products, $fileProduct);
430 } else {
431 $this->products[$id] = $fileProduct;
432 $this->products[$id]['category'] = $fileProduct['category'];
433 }
434 } else {
435 array_unshift($this->products, $fileProduct);
436 }
437 }
438
439
440 $i = 0;
441 foreach ($this->products as $product) {
442 $i++;
443
444 // check new product ?
445 $newapp = '';
446 if ($last_month < strtotime($product['datec']) && $product["status"] != 'soon' && $product["status"] != 'development' && $product["status"] != 'experimental') {
447 $newapp .= '<span class="newApp" title="'.$product['tms'].'">'.$langs->trans('New').'</span> ';
448 }
449
450 // check updated ?
451 if ($newapp == '' && $last_month < strtotime($product['tms']) && $product["status"] != 'soon' && $product["status"] != 'development' && $product["status"] != 'experimental') {
452 $newapp .= '<span class="updatedApp" title="'.$product['tms'].'">'.$langs->trans('UpdatedRecently').'</span> ';
453 }
454
455 // add image or default ?
456 if ($product["cover_photo_url"] != '' && $product["cover_photo_url"] != '#') {
457 $images = '<a href="'.$product["cover_photo_url"].'" class="documentpreview" target="_blank" rel="noopener noreferrer" mime="image/png" title="'.dol_escape_htmltag($product["label"].', '.$langs->trans('Version').' '.$product["module_version"]).'">';
458 $images .= '<img class="imgstore" src="'.$product["cover_photo_url"].'" alt="" /></a>';
459 } else {
460 $images = '<img class="imgstore" src="'.DOL_URL_ROOT.'/public/theme/common/nophoto.png" />';
461 }
462
463 // Set and check version
464 $version = '';
465 $compatible = '';
466 if ($product["status"] == 'soon' || $product["status"] == 'development' || $product["status"] == 'experimental') {
467 $version = '<span class="warning">'.$langs->trans("NotYetAvailable").' - '.$langs->trans("StillInDevelopment").'</span>';
468 $compatible = 'NotCompatible';
469 } elseif ($this->versionCompare($product["dolibarr_min"], $dolibarrversiontouse) <= 0) {
470 if (!empty($product["dolibarr_max"]) && $product["dolibarr_max"] != 'auto' && $product["dolibarr_max"] != 'unknown' && $this->versionCompare($product["dolibarr_max"], $dolibarrversiontouse) >= 0) {
471 // Compatible
472 $version = '<span class="compatible hideonsmartphone">'.$langs->trans(
473 'CompatibleUpTo',
474 $dolibarrversiontouse,
475 $product["dolibarr_min"],
476 $product["dolibarr_max"]
477 ).'</span>';
478 $compatible = '';
479 } else {
480 // Never compatible, module expired
481 $version = '<span class="warning">'.$langs->trans(
482 'NotCompatible',
483 $dolibarrversiontouse,
484 $product["dolibarr_min"],
485 $product["dolibarr_max"]
486 ).'</span>';
487 $compatible = 'NotCompatible';
488 }
489 } else {
490 if ($product["dolibarr_min"] == 'auto' || $product["dolibarr_min"] != 'unknown') {
491 // Never compatible, module expired
492 $version = '<span class="warning">'.$langs->trans(
493 'NotCompatible',
494 $dolibarrversiontouse,
495 $product["dolibarr_min"],
496 $product["dolibarr_max"]
497 ).'</span>';
498 $compatible = 'NotCompatible';
499 } else {
500 // Need update
501 $version = '<span class="compatibleafterupdate">'.$langs->trans(
502 'CompatibleAfterUpdate',
503 $dolibarrversiontouse,
504 $product["dolibarr_min"],
505 $product["dolibarr_max"]
506 ).'</span>';
507 $compatible = 'NotCompatible';
508 }
509 }
510
511 // free or pay ?
512 $install_link = '';
513 if (array_key_exists('price_ht', $product) && price2num($product["price_ht"]) > 0) {
514 $price = '<h3>'.price(price2num($product["price_ht"], 'MT'), 0, $langs, 1, -1, -1, 'EUR').' '.$langs->trans("HT").'</h3>';
515
516 $download_link = '<a class="paddingleft paddingright valignmiddle" target="_blank" title="'.$langs->trans("View").'" href="'.$this->shop_url.'/product.php?id='.((int) $product['id']).'">';
517 $download_link .= img_picto('', 'url', 'class="size2x paddingright"');
518 $download_link .= '</a>';
519 } else {
520 $download_link = '#';
521 if ($product['source'] === 'dolistore') { // 0 on dolistore may mean 0 or a complementary fee to subscribe
522 $urlview = $this->shop_url.'/product.php?id='.((int) $product["id"]);
523 $price = '<h3><a href="'.$urlview.'" target="_blank">'.$langs->trans('SeeOnDoliStore').'</a></h3>';
524 } elseif ($product['source'] === 'githubcommunity') {
525 if (array_key_exists('price_ht', $product) && empty($product['price_ht'])) {
526 if ($product['status'] == 'soon') {
527 $price = '<h3>'.$langs->trans('StillInDevelopment').'</h3>';
528 } else {
529 $price = '<h3>'.$langs->trans('Free').'</h3>';
530 }
531 } else {
532 if ($product["dolistore-download"]) {
533 $price = '<h3><a href="'.$product["dolistore-download"].'" target="_blank">'.$langs->trans('SeeOnDoliStore').'</a></h3>';
534 } else {
535 $price = '<h3>'.$langs->trans('Unknown').'</h3>';
536 }
537 }
538 } else {
539 $price = '<h3>'.$langs->trans('Unknown').'</h3>';
540 }
541
542 if ($product['source'] === 'githubcommunity') {
543 $download_link = '<a class="paddingleft paddingright valignmiddle" target="_blank" title="'.$langs->trans("Sources").'" href="'.$product["link"].'">';
544 $download_link .= img_picto('', 'file-code', 'class="size2x paddingright colorgrey"');
545 $download_link .= '</a>';
546
547 $urlview = $product["dolistore-download"]; // View on Dolistore
548 if ($urlview) {
549 $download_link .= '<a class="paddingleft paddingright valignmiddle" target="_blank" title="'.$langs->trans("View").'" href="'.$urlview.'" rel="noopener noreferrer">';
550 $download_link .= img_picto('', 'url', 'class="size2x"');
551 $download_link .= '</a>';
552 }
553
554 if (!empty($product['direct-download']) && $product['direct-download'] == 'yes') {
555 $reg = array();
556 if (preg_match('/https:.*\?id=(\d+)$/', $urlview, $reg)) {
557 $urldownload = 'https://www.dolistore.com/_service_download.php?t=free&p='.$reg[1];
558 $download_link .= '<a class="paddingleft paddingright valignmiddle" target="_blank" title="'.$langs->trans("Download").'" href="'.$urldownload.'" rel="noopener noreferrer">';
559 $download_link .= img_picto('', 'download', 'class="size2x paddingright"');
560 //$download_link .= '<img width="32" src="'.DOL_URL_ROOT.'/admin/remotestore/img/download.png" />';
561 $download_link .= '</a>';
562 }
563 }
564 } elseif ($product['source'] === 'dolistore') {
565 $urlview = $this->shop_url.'/product.php?id='.((int) $product["id"]);
566 $urldownload = 'https://www.dolistore.com/_service_download.php?t=free&p=' . $product['id'];
567 $download_link = '<a class="paddingleft paddingright valignmiddle" target="_blank" title="'.$langs->trans("View").'" href="'.$urlview.'">';
568 $download_link .= img_picto('', 'url', 'class="size2x"');
569 $download_link .= '</a>';
570 $download_link .= '<a class="paddingleft paddingright" target="_blank" title="'.$langs->trans("Download").'" href="'.$urldownload.'" rel="noopener noreferrer">';
571 $download_link .= img_picto('', 'download', 'class="size2x paddingright"');
572 //$download_link .= '<img width="32" src="'.DOL_URL_ROOT.'/admin/remotestore/img/download.png" />';
573 $download_link .= '</a>';
574 }
575
576 // Direct install
577 if (($product['direct-download'] && $product['direct-download'] == 'yes') || $product['source'] === 'dolistore') {
578 $urldownload = '';
579
580 if ($product['source'] === 'githubcommunity') {
581 $current_version = $product['module_version'] ?? '';
582 $module_name = strtolower(preg_replace('/@.*$/', '', $product['ref'] ?? ''));
583
584 // Remove "-" followed by current version at the end of the string if it exists
585 $module_name = preg_replace('/-' . preg_quote($current_version, '/') . '$/', '', $module_name);
586
587 $urldownload = 'https://github.com/Dolibarr/dolibarr-community-modules/raw/refs/heads/main/dev/build/bin/module_' . $module_name . '-' . $current_version . '.zip';
588
589 $reg = array();
590 $urlview = $product["dolistore-download"]; // View on Dolistore
591 if (preg_match('/https:.*\?id=(\d+)$/', $urlview, $reg)) {
592 $urldownload = 'https://www.dolistore.com/_service_download.php?t=free&p='.$reg[1];
593 }
594 }
595 if ($product['source'] === 'dolistore') {
596 $urldownload = 'https://www.dolistore.com/_service_download.php?t=free&p=' . $product['id'];
597 }
598
599
600 $disableInstall = ($compatible === 'NotCompatible') && !getDolGlobalInt('MAIN_FEATURES_LEVEL');
601 // $disableInstall = false; // TODO: remove this.
602 $disableInfo = $disableInstall ? dol_string_nohtmltag($version) : '';
603 $fields = ['action' => 'install', 'token' => newToken()];
604 foreach ($product as $key => $value) {
605 $fields['producttoinstall['.$key.']'] = $value;
606 }
607
608 $installConfirmMessage = $langs->transnoentities(
609 "extModuleConfirmInstallText",
610 $product['label'] ?? '',
611 $product['module_version'] ?? '',
612 $product['ref'] ?? '',
613 !empty($product['tms']) ? dol_print_date($product['tms'], '%d/%m/%Y') : ''
614 );
615 $installConfirmMessage .= $langs->trans("Path").' : '.$urldownload;
616
617 $install_link = '<button class="valignmiddle ' . ($disableInstall ? 'butActionRefused' : 'butAction') . ' paddingleft paddingright"'
618 . ($disableInfo ? ' title="' . dol_escape_htmltag($disableInfo) . '"' : '')
619 . (!$disableInstall ? ' data-confirm' : '')
620 . (!$disableInstall ? ' data-fields="' . dol_escape_htmltag(json_encode($fields)) . '"' : '')
621 . (!$disableInstall ? ' data-url="' . dol_escape_htmltag($this->url) . '"' : '')
622 . (!$disableInstall ? ' data-confirm-title="' . dol_escape_htmltag($langs->trans("extModuleConfirmInstallTitle")) . '"' : '')
623 . (!$disableInstall ? ' data-confirm-text="' . dol_escape_htmltag($installConfirmMessage) . '"' : '')
624 . '>' . $langs->trans("Install") . '</button>';
625 }
626 }
627
628 // Output the line
629 $html .= '<tr class="'.(getDolOptimizeSmallScreen() ? 'app' : 'app app2').' oddeven nohover '.dol_escape_htmltag($compatible).'">';
630
631 // Logo
632 $html .= '<td class="center width150"><div class="newAppParent">';
633 $html .= $newapp.$images; // No dol_escape_htmltag, it is already escape html
634 $html .= '</div></td>';
635
636 // Description
637 $html .= '<td class="margeCote minwidth400imp"><h2 class="appTitle">';
638 $html .= dolPrintHTML(dol_string_nohtmltag(ucfirst($product["label"])));
639 if (!empty($product['author']) && $product['author'] != 'unkownauthor') {
640 $html .= '<span class="small"> &nbsp; - &nbsp; '.img_picto('', 'company', 'class="pictofixedwidth"');
641 if (!empty($product['author_url'])) {
642 $html .= '<a href="'.$product['author_url'].'" target="_blank">'.$product['author'].'</a>';
643 } else {
644 $html .= $product['author'];
645 }
646 $html .= '</span>';
647 }
648 $html .= '<br><span class="small">';
649 $html .= $version; // Version Dolibarr. No dol_escape_htmltag, it is already escape html
650 $html .= '</span>';
651 $html .= '</h2>';
652
653 $html .= '<small class="appDateCreation appRef"> ';
654 if (empty($product['tms'])) {
655 $html .= img_picto($langs->trans('DateCreation'), 'calendar', 'class="pictofixedwidth"').'<span class="opacitymedium"><span class="hideonsmartphone">'.$langs->trans("DateCreation").': </span>';
656 $html .= (!empty($product['datec']) ? dol_print_date(dol_stringtotime($product['datec']), 'day') : $langs->trans("Unknown")).'</span>';
657 } else {
658 $html .= img_picto($langs->trans('DateModification'), 'calendar', 'class="pictofixedwidth"').'<span class="opacitymedium">'.dol_print_date(dol_stringtotime($product['tms']), 'day').'</span>';
659 }
660 $html .= ' &nbsp; &nbsp; ';
661
662 $html .= '<div class="appSource inline-block valigntop">';
663 if ($product["source"] == 'dolistore') {
664 $html .= '<img border="0" title="'.dolPrintHTML($langs->trans('Source').": DoliStore").'" class="imgautosize valignmiddle inline-block pictofixedwidth" style="height: 14px" src="'.DOL_URL_ROOT.'/theme/dolistore_squarred.svg">';
665 } elseif ($product["source"] == 'githubcommunity') {
666 $html .= img_picto($langs->trans('Source').': GitHub community repo', 'group', 'class="pictofixedwidth valignmiddle"');
667 } else {
668 $html .= img_picto($langs->trans('Source').': '.$langs->trans('Other'), 'generic', 'class="pictofixedwidth"');
669 }
670 $html .= '</div>';
671
672 $html .= $langs->trans('Ref').' '.dolPrintHTML(preg_replace('/@.*$/', '', $product["ref"]));
673 $html .= '</small><br>';
674
675
676 $html .= '&nbsp;';
677 if (!empty($product['phpmin']) && $product['phpmin'] != 'unknown') {
678 $html .= ' <span class="badge-secondary small" style="padding: 3px; border-radius: 5px">PHP min '.$product['phpmin'].'</span>';
679 }
680 if (!empty($product['phpmax']) && $product['phpmax'] != 'unknown') {
681 $html .= ' <span class="badge-secondary small" style="padding: 3px; border-radius: 5px">PHP max '.$product['phpmax'].'</span>';
682 }
683 $html .= '<br>';
684
685 $html .= '<br>';
686 $html .= '<div class="storedesc">'.dolPrintHTML(dol_string_nohtmltag($product["description"])).'</div>';
687 $html .= '</td>';
688
690 $html .= '</tr><tr class="app2 oddeven nohover borderbottom '.dol_escape_htmltag($compatible).'">';
691 }
692
693 // Price - do not load if display none
694 $html .= '<td class="margeCote center amount'.(getDolOptimizeSmallScreen() ? ' left" colspan="2"' : '"').'>';
695 $html .= $price;
696 if (($product['direct-download'] && $product['direct-download'] == 'yes')
697 || ($product['source'] === 'dolistore' && empty((float) $product['price_ht']))) {
698 if ($install_link) {
699 $html .= $install_link;
700 }
701 }
702
704 $html .= '</td>';
705 $html .= '<td class="margeCote nowraponall">';
706 }
707
708 // Links
709 $html .= $download_link;
710 $html .= '</td>';
711
712 $html .= '</tr>';
713 }
714
715 if (empty($this->products)) {
716 $colspan = (getDolOptimizeSmallScreen() ? 1 : 3);
717 $langs->load("website");
718
719 $html .= '<tr class=""><td colspan="'.$colspan.'" class="center">';
720 $html .= '<br><br>';
721 $html .= $langs->trans("noResultsWereFound").'...';
722 $html .= '<br><br>';
723 $html .= '</td></tr>';
724 }
725
726 // JS for confirm install
727 $confirmLabel = dol_escape_js($langs->trans("Install"));
728 $cancelLabel = dol_escape_js($langs->trans("Cancel"));
729 $html .= '<script>
730 $(document).on("click","[data-confirm]",function(){
731 var button = $(this);
732 var confirmTitle = button.data("confirm-title");
733 var confirmText = button.data("confirm-text");
734 var buttons = {};
735 buttons[button.data("confirm-label")||"' . $confirmLabel . '"] = function(){
736 var form = $("<form method=\'POST\' style=\'display:none\'>").attr("action", button.data("url"));
737 $.each(button.data("fields"), function(name, value){
738 form.append($("<input type=\'hidden\'>").attr("name", name).val(value));
739 });
740 $("body").append(form);
741 form.submit();
742 $(this).dialog("close");
743 };
744 buttons["' . $cancelLabel . '"] = function(){$(this).dialog("close");};
745 $("<div>").html(confirmText).dialog({
746 title: confirmTitle,
747 minWidth: 580,
748 modal: true,
749 buttons: buttons
750 });
751 });
752 </script>';
753
754 $this->numberOfProducts = count($this->products);
755
756 return $html;
757 }
758
765 public function buildSorter(string $key): Closure
766 {
767 return
773 function (array $a, array $b) use ($key) {
774 $valA = isset($a[$key]) && is_scalar($a[$key]) ? (string) $a[$key] : '';
775 $valB = isset($b[$key]) && is_scalar($b[$key]) ? (string) $b[$key] : '';
776
777 return strnatcmp($valA, $valB);
778 };
779 }
780
788 public function versionCompare($v1, $v2)
789 {
790 // Clean v1 and v2
791 $v1 = str_replace(array('v', 'V'), '', $v1);
792 $v2 = str_replace(array('v', 'V'), '', $v2);
793
794 $v1 = explode('.', $v1);
795 $v2 = explode('.', $v2);
796 $ret = 0;
797 $level = 0;
798 $count1 = count($v1);
799 $count2 = count($v2);
800 $maxcount = max($count1, $count2);
801 while ($level < $maxcount) {
802 $operande1 = isset($v1[$level]) ? $v1[$level] : 'x';
803 $operande2 = isset($v2[$level]) ? $v2[$level] : 'x';
804 $level++;
805 if (strtoupper($operande1) == 'X' || strtoupper($operande2) == 'X' || $operande1 == '*' || $operande2 == '*') {
806 break;
807 }
808 if ($operande1 < $operande2) {
809 $ret = -$level;
810 break;
811 }
812 if ($operande1 > $operande2) {
813 $ret = $level;
814 break;
815 }
816 }
817 //print join('.',$versionarray1).'('.count($versionarray1).') / '.join('.',$versionarray2).'('.count($versionarray2).') => '.$ret.'<br>'."\n";
818 return $ret;
819 }
820
821 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
828 public function get_previous_link($text = '<<')
829 {
830 // phpcs:enable
831 return '<a href="'.$this->get_previous_url().'" class="button">'.dol_escape_htmltag($text).'</a>';
832 }
833
834 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
841 public function get_next_link($text = '>>')
842 {
843 // phpcs:enable
844 return '<a href="'.$this->get_next_url().'" class="button">'.dol_escape_htmltag($text).'</a>';
845 }
846
847 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
853 public function get_previous_url()
854 {
855 // phpcs:enable
856 $param_array = array();
857 if ($this->no_page > 1) {
858 $sub = 1;
859 } else {
860 $sub = 0;
861 }
862 if (!empty($this->search)) {
863 $param_array['search_keyword'] = $this->search;
864 }
865 $param_array['no_page'] = $this->no_page - $sub;
866 if ($this->categorie != 0) {
867 $param_array['categorie'] = $this->categorie;
868 }
869 $param = http_build_query($param_array);
870 return $this->url."&".$param;
871 }
872
873 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
879 public function get_next_url()
880 {
881 // phpcs:enable
882 $param_array = array();
883 if ($this->products !== null && count($this->products) < $this->per_page) {
884 $add = 0;
885 } else {
886 $add = 1;
887 }
888 if (!empty($this->search)) {
889 $param_array['search_keyword'] = $this->search;
890 }
891 $param_array['no_page'] = $this->no_page + $add;
892 if ($this->categorie != 0) {
893 $param_array['categorie'] = $this->categorie;
894 }
895 $param = http_build_query($param_array);
896 return $this->url."&".$param;
897 }
898
904 public function getPagination()
905 {
906
907 global $langs;
908
909 $page = $this->no_page;
910 $limit = $this->per_page;
911 $totalnboflines = $this->numberTotalOfProducts ?: 0;
912 $num = $this->numberOfProducts;
913
914 $html = "";
915
916 // Show navigation bar
917 $pagelist = '';
918 if ($page > 0 || $num > $limit) {
919 if ($totalnboflines) {
920 if ($limit > 0) {
921 $nbpages = $this->numberTotalOfPages;
922 } else {
923 $nbpages = 1;
924 }
925
926 // Show previous page
927 if ($page > 1) {
928 $pagelist .= '<li class="pagination paginationpage paginationpageleft"><a class="paginationprevious reposition" href="'.$this->get_previous_url().'"><i class="fa fa-chevron-left" title="'.dol_escape_htmltag($langs->trans("Previous")).'"></i></a></li>';
929 }
930
931 $pagelist .= '<li class="pagination">';
932 $pagelist .= '<label for="page_input">Page </label>';
933 if ($this->categorie != 0) {
934 $pagelist .= '<input type="hidden" name="categorie" value="' . $this->categorie . '">';
935 }
936 $pagelist .= '<input type="text" id="page_input" name="no_page" value="'.($page).'" min="1" max="'.$nbpages.'" class="width40 page_input right" oninput="if(this.value > '.$nbpages.') this.value='.$nbpages.'">';
937 $pagelist .= ' / '.$nbpages;
938 $pagelist .= '</li>';
939
940 // Show next page
941 if ($page < $nbpages) {
942 $pagelist .= '<li class="pagination paginationpage paginationpageright"><a class="paginationnext reposition" href="'.$this->get_next_url().'"><i class="fa fa-chevron-right" title="'.dol_escape_htmltag($langs->trans("Next")).'"></i></a></li>';
943 }
944 }
945 }
946
947 if ($limit || $pagelist) {
948 $html .= '<div class="pagination" style="padding: 7px;">';
949 $html .= '<ul>';
950 $html .= $pagelist;
951 $html .= '</ul>';
952 $html .= '</div>';
953 }
954
955 $html .= ajax_autoselect('.page_input');
956
957 return $html;
958 }
959
966 protected function checkStatusCode($request)
967 {
968 // Define error messages
969 $error_messages = [
970 204 => 'No content',
971 400 => 'Bad Request',
972 401 => 'Unauthorized',
973 404 => 'Not Found',
974 405 => 'Method Not Allowed',
975 500 => 'Internal Server Error',
976 ];
977
978 // If status code is 200 or 201, return an empty string
979 if ($request['status_code'] === 200 || $request['status_code'] === 201) {
980 return '';
981 }
982
983 // Get the predefined error message or use a default one
984 $error_message = $error_messages[$request['status_code']] ?? 'Unexpected HTTP status: ' . $request['status_code'];
985
986 // Append error details if available
987 if (!empty($request['response']) && isset($request['response']['errors']) && is_array($request['response']['errors'])) {
988 foreach ($request['response']['errors'] as $error) {
989 $error_message .= ' - (Code ' . $error['code'] . '): ' . $error['message'];
990 }
991 }
992
993 if (!empty($request['curl_error_msg'])) {
994 $error_message .= ' - ' . $request['curl_error_msg'];
995 }
996
997 // Return the formatted error message
998 return sprintf('This call to the API failed and returned an HTTP status of %d. That means: %s.', $request['status_code'], $error_message);
999 }
1000
1008 public function getRemoteYamlFile($file_source_url, $cache_time)
1009 {
1010 $yaml = '';
1011 $cache_file = $this->cache_file;
1012 $cache_folder = dirname($cache_file);
1013
1014 // Check if cache directory exists
1015 if (!dol_is_dir($cache_folder)) {
1016 dol_mkdir($cache_folder, DOL_DATA_ROOT);
1017 }
1018
1019 if (!file_exists($cache_file) || filemtime($cache_file) < (dol_now() - $cache_time)) {
1020 // We get remote url
1021 $addheaders = array();
1022 $result = getURLContent($file_source_url, 'GET', '', 1, $addheaders); // TODO Force timeout to 5 s on both connect and response.
1023 if (!empty($result) && $result['http_code'] == 200) {
1024 $yaml = $result['content'];
1025 $result = file_put_contents($cache_file, $yaml);
1026 if ($result === false) {
1027 $this->error = 'Failed to create cache file: ' . $cache_file;
1028 } else {
1029 dolChmod($cache_file);
1030 }
1031 }
1032 } else {
1033 $yaml = file_get_contents($cache_file);
1034 }
1035
1036 return $yaml;
1037 }
1038
1039
1046 public function readYaml($yaml)
1047 {
1048 $data = [];
1049 $currentPackage = null;
1050 $currentSection = null;
1051
1052 foreach (explode("\n", trim($yaml)) as $line) {
1053 $trimmedLine = trim($line);
1054
1055 // Ignore empty lines and comments
1056 if ($trimmedLine === '' || strpos($trimmedLine, '#') === 0) {
1057 continue;
1058 }
1059
1060 // Match a new package entry (e.g., "- modulename: 'helloasso'") - Found a break in file.
1061 $matches = array();
1062 if (preg_match('/^\s*-\s*modulename:\s*["\']?(.*?)["\']?$/', $trimmedLine, $matches)) {
1063 if ($currentPackage !== null) {
1064 // Add the package to $data
1065 if (!empty($currentPackage['status']) && in_array($currentPackage['status'], array('enabled', 'soon'))) {
1066 $data[] = $currentPackage;
1067 }
1068 }
1069 $currentPackage = ['modulename' => $matches[1]];
1070 $currentSection = null;
1071 continue;
1072 }
1073
1074 // If the key doesn't start with fr, en, es, it, de, treat it as a section
1075 if (!preg_match('/^\s*(fr|en|es|it|de):\s*["\']?(.*?)["\']?$/', $trimmedLine)) {
1076 $currentSection = null;
1077 }
1078
1079 // Match a top-level key-value pair (e.g., "author: 'Dolicloud'")
1080 if (preg_match('/^(\w[\w-]*):\s*["\']?(.*?)["\']?$/', $trimmedLine, $matches)) {
1081 if ($currentPackage !== null) {
1082 if ($currentSection) {
1083 // Store in the sub section (language into label or description for example)
1084 $currentPackage[$currentSection][$matches[1]] = $matches[2] === '' ? null : $matches[2];
1085 } else {
1086 // Store as a normal key-value pair
1087 $currentPackage[$matches[1]] = $matches[2] === '' ? null : $matches[2];
1088 }
1089 }
1090
1091 // Match a nested section (e.g., "label:")
1092 if (preg_match('/^\s*(label|description):\s*$/', $trimmedLine, $matches)) {
1093 $currentSection = $matches[1];
1094 $currentPackage[$currentSection] = []; // Initialize as an empty array for nested sections
1095 }
1096
1097 continue;
1098 }
1099 }
1100
1101 // Add the last package if available
1102 if ($currentPackage !== null) {
1103 if (!empty($currentPackage['status']) && in_array($currentPackage['status'], array('enabled', 'soon'))) {
1104 $data[] = $currentPackage;
1105 }
1106 }
1107
1108 return $data;
1109 }
1110
1118 public function adaptData($data, $source)
1119 {
1120 $adaptedData = [];
1121
1122 if (!is_array($data) || empty($data) || empty($source)) {
1123 return $adaptedData;
1124 }
1125
1126 if ($source === 'githubcommunity') {
1127 foreach ($data as $package) {
1128 if (empty($package['modulename'])) {
1129 continue;
1130 }
1131
1132 // Check if there is a known ID
1133 $reg = array();
1134 $id = 0;
1135 if (!empty($package['dolistore-download']) && preg_match('/www\.dolistore\.com\/product\.php\?id=(\d+)/', (string) $package['dolistore-download'], $reg)) {
1136 $id = $reg[1];
1137 }
1138
1139 $adaptedPackage = [
1140 'id' => $id,
1141 'ref' => str_replace(' ', '', $package['modulename'] . '-' . $package['current_version'] . '@' .
1142 (array_key_exists('author', $package) ? $package['author'] : 'unkownauthor')),
1143 'label' => !empty($package['label'][substr($this->lang, 0, 2)])
1144 ? $package['label'][substr($this->lang, 0, 2)]
1145 : (!empty($package['label']['en']) ? $package['label']['en'] : $package['modulename']),
1146 'description' => !empty($package['description'][substr($this->lang, 0, 2)])
1147 ? $package['description'][substr($this->lang, 0, 2)]
1148 : (!empty($package['description']['en']) ? $package['description']['en'] : ''),
1149 'datec' => (!empty($package['created_at']) && is_string($package['created_at']))
1150 ? date('Y-m-d H:i:s', strtotime($package['created_at']))
1151 : '',
1152 'tms' => (!empty($package['last_updated_at']) && is_string($package['last_updated_at']))
1153 ? date('Y-m-d H:i:s', strtotime($package['last_updated_at']))
1154 : '',
1155 'author' => array_key_exists('author', $package) ? $package['author'] : '',
1156 'author_url' => array_key_exists('author_url', $package) ? $package['author_url'] : '',
1157 'dolibarr_min' => !empty($package['dolibarrmin'])
1158 ? $package['dolibarrmin']
1159 : 'unknown',
1160 'dolibarr_max' => !empty($package['dolibarrmax'])
1161 ? $package['dolibarrmax']
1162 : 'unknown',
1163 'phpmin' => !empty($package['phpmin'])
1164 ? $package['phpmin']
1165 : 'unknown',
1166 'phpmax' => !empty($package['phpmax'])
1167 ? $package['phpmax']
1168 : 'unknown',
1169 'module_version' => !empty($package['current_version'])
1170 ? $package['current_version']
1171 : 'unknown',
1172 'cover_photo_url' => !empty($package['cover'])
1173 ? $package['cover']
1174 : '#',
1175 'category' => (!empty($package['category']) && is_string($package['category']))
1176 ? explode(',', str_replace(' ', '', (string) $package['category']))
1177 : array(),
1178 'link' => !empty($package['git'])
1179 ? $package['git']
1180 : '#',
1181 'source' => 'githubcommunity',
1182 'status' => !empty($package['status']) ? $package['status'] : '',
1183 'direct-download' => !empty($package['direct-download'])
1184 ? $package['direct-download']
1185 : '',
1186 'dolistore-download' => !empty($package['dolistore-download'])
1187 ? $package['dolistore-download']
1188 : '',
1189 ];
1190
1191 // If a price entry exists
1192 if (array_key_exists('price', $package) && $package['price'] != null) {
1193 $adaptedPackage['price_ht'] = $package['price'];
1194 }
1195
1196 $adaptedData[] = $adaptedPackage;
1197 }
1198 }
1199
1200 if ($source === 'dolistore') {
1201 foreach ($data as $package) {
1202 $urlphoto = $this->shop_url.$package['cover_photo_url'];
1203
1204 if (preg_match('/^\/?wrapper\.php\?hashp=/', $package['cover_photo_url']) && !preg_match('/attachment=/', $package['cover_photo_url'])) {
1205 $urlphoto .= '&attachment=0';
1206 }
1207
1208 $adaptedPackage = [
1209 'id' => $package['id'],
1210 'ref' => $package['ref'],
1211 'label' => $package['label'],
1212 'description' => $package['description'],
1213 'datec' => $package['datec'],
1214 'tms' => $package['tms'],
1215 'author' => array_key_exists('author', $package) ? $package['author'] : '',
1216 'author_url' => array_key_exists('author_url', $package) ? $package['author_url'] : '',
1217 'price_ttc' => $package['price_ttc'],
1218 'price_ht' => $package['price_ht'],
1219 'dolibarr_min' => $package['dolibarr_min'],
1220 'dolibarr_max' => $package['dolibarr_max'],
1221 'phpmin' => empty($package['phpmin']) ? '' : $package['phpmin'],
1222 'phpmax' => empty($package['phpmax']) ? '' : $package['phpmax'],
1223 'module_version' => $package['module_version'],
1224 'cover_photo_url' => $urlphoto,
1225 'source' => 'dolistore',
1226 'status' => empty($package['status']) ? '' : $package['status']
1227 ];
1228
1229 $adaptedData[$package['id']] = $adaptedPackage;
1230 }
1231 }
1232
1233 return $adaptedData;
1234 }
1235
1243 public function applyFilters($list, $options)
1244 {
1245 $filteredData = $list;
1246
1247 // Sort products list by datec
1248 usort(
1249 $filteredData,
1257 static function ($a, $b) {
1258 return strtotime($b['datec'] ?? '0') - strtotime($a['datec'] ?? '0');
1259 }
1260 );
1261
1262 if (!empty($options['search'])) {
1263 $filteredData = array_filter(
1264 $filteredData,
1272 static function ($package) use ($options) {
1273 return stripos($package['label'], $options['search']) !== false || stripos($package['description'], $options['search']) !== false;
1274 }
1275 );
1276 }
1277
1278 if (!empty($options['categorieid'])) {
1279 $filteredData = array_filter(
1280 $filteredData,
1288 static function ($package) use ($options) {
1289 return in_array($options['categorieid'], $package['category']);
1290 }
1291 );
1292 }
1293
1294 $total = count($filteredData);
1295
1296 // Pagination
1297 $filteredData = array_values($filteredData);
1298 $filteredData = array_slice($filteredData, ($options['page'] - 1) * $options['limit'], $options['limit']);
1299
1300 return ['total' => $total, 'data' => $filteredData];
1301 }
1302
1308 public function checkApiStatus()
1309 {
1310 // Call remote API
1311 $testRequest = $this->callApi('categories');
1312
1313 if (!isset($testRequest['response']) || !is_array($testRequest['response']) || ($testRequest['status_code'] != 200 && $testRequest['status_code'] != 201)) {
1314 $this->dolistoreApiError = $this->checkStatusCode($testRequest);
1315 return 0;
1316 } else {
1317 return 1;
1318 }
1319 }
1320
1329 public function libStatus($status, $mode = 3, $moretext = '')
1330 {
1331 global $langs;
1332
1333 $statusType = 'status4';
1334 if ($status == 0) {
1335 $statusType = 'status8';
1336 }
1337
1338 $labelStatus = [];
1339 $labelStatusShort = [];
1340
1341 $labelStatus[0] = $langs->transnoentitiesnoconv("NotConnected");
1342 $labelStatus[1] = $langs->transnoentitiesnoconv("online");
1343 $labelStatusShort[0] = $langs->transnoentitiesnoconv("NotConnected");
1344 $labelStatusShort[1] = $langs->transnoentitiesnoconv("online");
1345
1346 return dolGetStatus($labelStatus[$status], $labelStatusShort[$status], '', $statusType, $mode, '', array('badgeParams' => array('attr' => array('class' => 'classfortooltip', 'title' => $labelStatusShort[$status].$moretext))));
1347 }
1348
1349
1356 public function getModuleZIP($producttoinstall = array())
1357 {
1358 global $conf;
1359
1360 // Check if cURL is available
1361 if (!function_exists('curl_init')) {
1362 dol_syslog(__METHOD__ . ': cURL is not available', LOG_ERR);
1363 return false;
1364 }
1365
1366 // Check required fields
1367 if (empty($producttoinstall['ref'])) {
1368 dol_syslog(__METHOD__ . ': Missing producttoinstall', LOG_ERR);
1369 return false;
1370 }
1371
1372 $current_version = $producttoinstall['module_version'] ?? '';
1373 $module_name = strtolower(preg_replace('/@.*$/', '', $producttoinstall['ref'] ?? ''));
1374
1375 // Remove "-" followed by current version at the end of the string if it exists
1376 $module_name = preg_replace('/-' . preg_quote($current_version, '/') . '$/', '', $module_name);
1377
1378 if (empty($module_name) || empty($current_version) || $current_version == 'unknown') {
1379 dol_syslog(__METHOD__ . ': Missing or unknown module name/version for product', LOG_ERR);
1380 return false;
1381 }
1382
1383 // Create a temporary directory for the download
1384 $tmpdir = $conf->admin->dir_temp . '/remotestoredl';
1385 dol_mkdir($tmpdir);
1386
1387 $downloaded = false;
1388 switch ($producttoinstall['source']) {
1389 case 'dolistore':
1390 if ($producttoinstall['id'] > 0) {
1391 $source_url = 'https://www.dolistore.com/_service_download.php?t=free&p=' . $producttoinstall['id'];
1392 $downloaded = $this->_downloadFile($source_url, $tmpdir);
1393 if (!$downloaded) {
1394 dol_syslog(__METHOD__ . ': Dolistore download failed: ' . $source_url, LOG_ERR);
1395 return false;
1396 }
1397 } else {
1398 dol_syslog(__METHOD__ . ': Invalid product ID for Dolistore download: ' . $producttoinstall['id'], LOG_ERR);
1399 return false;
1400 }
1401 break;
1402 case 'githubcommunity':
1403 if ($producttoinstall['direct-download'] && $producttoinstall['direct-download'] == 'yes') {
1404 $source_url = 'https://github.com/Dolibarr/dolibarr-community-modules/raw/refs/heads/main/dev/build/bin/module_' . $module_name . '-' . $current_version . '.zip';
1405 $downloaded = $this->_downloadFile($source_url, $tmpdir);
1406 if (!$downloaded) {
1407 dol_syslog(__METHOD__ . ': GitHub community module download failed: ' . $source_url . ', Try to find a Dolistore link', LOG_WARNING);
1408 if ($producttoinstall['id'] > 0) {
1409 $source_url = 'https://www.dolistore.com/_service_download.php?t=free&p=' . $producttoinstall['id'];
1410 $downloaded = $this->_downloadFile($source_url, $tmpdir);
1411 if (!$downloaded) {
1412 dol_syslog(__METHOD__ . ': Dolistore download failed: ' . $source_url, LOG_ERR);
1413 return false;
1414 }
1415 } else {
1416 dol_syslog(__METHOD__ . ': No direct download available for this GitHub community module', LOG_ERR);
1417 return false;
1418 }
1419 }
1420 } else {
1421 dol_syslog(__METHOD__ . ': No direct download available for this GitHub community module', LOG_ERR);
1422 return false;
1423 }
1424 break;
1425 default:
1426 dol_syslog(__METHOD__ . ': Unsupported source type: ' . $producttoinstall['source'], LOG_ERR);
1427 }
1428
1429
1430 dol_syslog(__METHOD__ . ': Module downloaded successfully to: ' . $downloaded, LOG_DEBUG);
1431 return $downloaded;
1432 }
1433
1434
1442 private function _downloadFile(string $url, string $dest_path)
1443 {
1444 // HEAD request to get real filename from Content-Disposition
1445 $filename = '';
1446 $head = getURLContent($url, 'HEAD');
1447 // Try to extract filename from Content-Disposition header
1448 if (!empty($head['header'])) {
1449 if (preg_match_all('/Content-Disposition:.*filename=["\']?([^"\';\r\n]+)/i', $head['header'], $m)) {
1450 $filename = trim(end($m[1]), " \t\"'");
1451 }
1452 }
1453
1454 // If filename is not found in headers, try to extract it from URL
1455 if (empty($filename)) {
1456 $filename = basename(parse_url($url, PHP_URL_PATH));
1457 }
1458
1459 // If filename is still empty or file name ne match the expected pattern (module_modulename-version.zip), log error and return false
1460 if (empty($filename) || !preg_match('/^module_[a-z0-9_]+-[0-9]+\.[0-9]+\.[0-9]+\.zip$/i', $filename)) {
1461 dol_syslog(__METHOD__ . ': Cannot determine filename from URL: ' . $url, LOG_ERR);
1462 return false;
1463 }
1464
1465 // Download the file
1466 $response = getURLContent($url, 'GET');
1467 if (empty($response['content']) || (isset($response['http_code']) && $response['http_code'] !== 200)) {
1468 dol_syslog(
1469 __METHOD__ . ': Download failed — HTTP ' . ($response['http_code'] ?? 'unknown') . ' — ' . $url,
1470 LOG_WARNING
1471 );
1472 return false;
1473 }
1474
1475 // Write to destination
1476 $dest_file = $dest_path . '/' . $filename;
1477 if (file_exists(dol_osencode($dest_file))) { // If file already exists, try to delete it first
1478 chmod(dol_osencode($dest_file), 0755);
1479 @unlink(dol_osencode($dest_file));
1480 }
1481 $writtenfile = file_put_contents(dol_osencode($dest_file), $response['content']);
1482 if ($writtenfile === false || $writtenfile === 0) {
1483 dol_syslog(__METHOD__ . ': Cannot write file: ' . $dest_file, LOG_ERR);
1484 @unlink(dol_osencode($dest_file));
1485 return false;
1486 }
1487
1488 dol_syslog(__METHOD__ . ': Downloaded successfully to: ' . $dest_file, LOG_DEBUG);
1489 return $dest_file;
1490 }
1491}
$id
Support class for third parties, contacts, members, users or resources.
Definition account.php:47
Class ExternalModules.
__construct($debug=false)
Constructor.
libStatus($status, $mode=3, $moretext='')
Retrieve the status icon.
checkApiStatus()
Check if an Dolistore API is up.
getProducts($options)
Generate HTML for products.
versionCompare($v1, $v2)
version compare
getPagination()
Generate pagination for navigating through pages of products.
getRemoteYamlFile($file_source_url, $cache_time)
Get YAML file from remote source and put it into the cache file.
get_previous_link($text='<<')
get previous link
buildSorter(string $key)
Sort an array by a key.
getModuleZIP($producttoinstall=array())
Download a Dolibarr module from a Git repository URL or Dolistore download URL.
getCategories($active=0)
Generate HTML for categories and their children.
applyFilters($list, $options)
Apply filters to the data.
get_next_link($text='> >')
get next link
fetchModulesFromFile($options=array())
Fetch modules from a cache YAML file.
checkStatusCode($request)
Check the status code of the request.
_downloadFile(string $url, string $dest_path)
Download a remote URL to a local file using getURLContent (native Dolibarr).
readYaml($yaml)
Read a YAML string and convert it to an array.
callApi($resource, $options=false)
Test if we can access to remote Dolistore market place.
adaptData($data, $source)
Adapter data fetched from github remote source to the expected format.
loadRemoteSources($debug=false)
loadRemoteSources
get_previous_url()
get previous url
dol_stringtotime($string, $gm=1)
Convert a string date into a GM Timestamps date Warning: YYYY-MM-DDTHH:MM:SS+02:00 (RFC3339) is not s...
Definition date.lib.php:436
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
dol_is_file($pathoffile)
Return if path is a file.
dol_is_dir($folder)
Test if filename is a directory.
dol_now($mode='gmt')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
dolPrintHTML($s, $allowiframe=0, $moreallowedtags=array())
Return a string (that can be on several lines) ready to be output on a HTML page.
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
getDolOptimizeSmallScreen()
Return if render must be optimized for small screen.
dolChmod($filepath, $newmask='')
Change mod of a file.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_escape_js($stringtoescape, $mode=0, $noescapebackslashn=0)
Returns text escaped for inclusion into JavaScript code.
ajax_autoselect($htmlname, $addlink='', $textonlink='Link')
Make content of an input box selected when we click into input field.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dolGetStatus($statusLabel='', $statusLabelShort='', $html='', $statusType='status0', $displayMode=0, $url='', $params=array())
Output the badge of a status.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
getURLContent($url, $postorget='GET', $param='', $followlocation=1, $addheaders=array(), $allowedschemes=array('http', 'https'), $localurl=0, $ssl_verifypeer=-1, $timeoutconnect=0, $timeoutresponse=0, $otherCurlOptions=array(), $morelogsuffix='')
Function to get a content from an URL (use proxy if proxy defined).
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
buildzip.php
print $langs trans('Date')." left Ref Label right Qty right Price right TotalHT right TotalTTC right right right right right right right right right centpercent right TotalHT right n right VAT right n right TotalVAT right n No sujeto a RE IRPF right TotalLT1 right n right TotalLT2 right n right TotalTTC right n takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency right TotalTTC takeposcustomercurrency right takeposcustomercurrency n right Paid right PaymentTypeShortLIQ right SELECT p pos_change as p datep as date
Definition receipt.php:487