dolibarr 18.0.6
migrate-news-joomla2dolibarr.php
1#!/usr/bin/env php
2<?php
3/* Copyright (C) 2020 Laurent Destailleur <eldy@users.sourceforge.net>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
25if (!defined('NOSESSION')) {
26 define('NOSESSION', '1');
27}
28
29$sapi_type = php_sapi_name();
30$script_file = basename(__FILE__);
31$path = __DIR__.'/';
32
33// Test if batch mode
34if (substr($sapi_type, 0, 3) == 'cgi') {
35 echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
36 exit(-1);
37}
38
39@set_time_limit(0); // No timeout for this script
40define('EVEN_IF_ONLY_LOGIN_ALLOWED', 1); // Set this define to 0 if you want to lock your script when dolibarr setup is "locked to admin user only".
41
42$error = 0;
43
44$mode = empty($argv[1]) ? '' : $argv[1];
45$websiteref = empty($argv[2]) ? '' : $argv[2];
46$joomlaserverinfo = empty($argv[3]) ? '' : $argv[3];
47$image = 'image/__WEBSITE_KEY__/images/stories/dolibarr.png';
48
49$max = (!isset($argv[4]) || (empty($argv[4]) && $argv[4] !== '0')) ? '10' : $argv[4];
50$excludeid = (empty($argv[5]) ? '' : $argv[5]);
51$forcelang = (empty($argv[6]) ? '' : $argv[6]);
52
53if (empty($argv[3]) || !in_array($argv[1], array('test', 'confirm')) || empty($websiteref)) {
54 print '***** '.$script_file.' *****'."\n";
55 print "Usage: $script_file (test|confirm) website login:pass@serverjoomla/tableprefix/databasejoomla [nbmaxrecord]\n";
56 print "\n";
57 print "Load joomla news and create them into Dolibarr database (if they don't alreay exist).\n";
58 exit(-1);
59}
60
61require $path."../../htdocs/master.inc.php";
62include_once DOL_DOCUMENT_ROOT.'/website/class/website.class.php';
63include_once DOL_DOCUMENT_ROOT.'/website/class/websitepage.class.php';
64include_once DOL_DOCUMENT_ROOT.'/core/lib/website2.lib.php';
65
66
67/*
68 * Main
69 */
70
71$langs->load('main');
72
73if (!empty($dolibarr_main_db_readonly)) {
74 print "Error: instance in read-onyl mode\n";
75 exit(-1);
76}
77
78$joomlaserverinfoarray = preg_split('/(:|@|\/)/', $joomlaserverinfo);
79$joomlalogin = $joomlaserverinfoarray[0];
80$joomlapass = $joomlaserverinfoarray[1];
81$joomlahost = $joomlaserverinfoarray[2];
82$joomlaprefix = $joomlaserverinfoarray[3];
83$joomladatabase = $joomlaserverinfoarray[4];
84$joomlaport = 3306;
85
86
87$website = new Website($db);
88$result = $website->fetch(0, $websiteref);
89if ($result <= 0) {
90 print 'Error, web site '.$websiteref.' not found'."\n";
91 exit(-1);
92}
93$websiteid = $website->id;
94$importid = dol_print_date(dol_now(), 'dayhourlog');
95
96$dbjoomla = getDoliDBInstance('mysqli', $joomlahost, $joomlalogin, $joomlapass, $joomladatabase, $joomlaport);
97if ($dbjoomla->error) {
98 dol_print_error($dbjoomla, "host=".$joomlahost.", port=".$joomlaport.", user=".$joomlalogin.", databasename=".$joomladatabase.", ".$dbjoomla->error);
99 exit(-1);
100}
101
102$sql = 'SELECT c.id, c.title, c.alias, c.created, c.introtext, `fulltext`, c.metadesc, c.metakey, c.language, c.created, c.publish_up, u.username FROM '.$joomlaprefix.'_content as c';
103$sql .= ' LEFT JOIN '.$joomlaprefix.'_users as u ON u.id = c.created_by';
104$sql .= ' WHERE featured = 1';
105$sql .= ' AND c.id NOT IN ('.$excludeid.')';
106$sql .= ' ORDER BY publish_up ASC';
107$resql = $dbjoomla->query($sql);
108
109if (!$resql) {
110 dol_print_error($dbjoomla);
111 exit;
112}
113
114$blogpostheader = file_get_contents($path.'blogpost-header.txt');
115if ($blogpostheader === false) {
116 print "Error: Failed to load file content of 'blogpost-header.txt'\n";
117 exit(-1);
118}
119$blogpostfooter = file_get_contents($path.'blogpost-footer.txt');
120if ($blogpostfooter === false) {
121 print "Error: Failed to load file content of 'blogpost-footer.txt'\n";
122 exit(-1);
123}
124
125
126
127$db->begin();
128
129$i = 0; $nbimported = 0; $nbalreadyexists = 0;
130while ($obj = $dbjoomla->fetch_object($resql)) {
131 if ($obj) {
132 $i++;
133 $id = $obj->id;
134 $alias = $obj->alias;
135 $title = $obj->title;
136 //$description = dol_string_nohtmltag($obj->introtext);
137 $description = trim(dol_trunc(dol_string_nohtmltag($obj->metadesc), 250));
138 if (empty($description)) {
139 $description = trim(dol_trunc(dol_string_nohtmltag($obj->introtext), 250));
140 }
141
142 $htmltext = "";
143 if ($blogpostheader) {
144 $htmltext .= $blogpostheader."\n";
145 }
146 $htmltext .= '<section id="mysectionnewsintro" contenteditable="true">'."\n";
147 $htmltext .= $obj->introtext;
148 $htmltext .= '</section>'."\n";
149 if ($obj->fulltext) {
150 $htmltext .= '<section id="mysectionnewscontent" contenteditable="true">'."\n";
151 $htmltext .= '<br>'."\n".'<hr>'."\n".'<br>'."\n";
152 $htmltext .= $obj->fulltext;
153 $htmltext .= "</section>";
154 }
155 if ($blogpostfooter) {
156 $htmltext .= "\n".$blogpostfooter;
157 }
158
159 $language = ($forcelang ? $forcelang : ($obj->language && $obj->language != '*' ? $obj->language : 'en'));
160 $keywords = $obj->metakey;
161 $author_alias = $obj->username;
162
163 $date_creation = $dbjoomla->jdate($obj->publish_up);
164
165 print '#'.$i.' id='.$id.' '.$title.' lang='.$language.' keywords='.$keywords.' importid='.$importid."\n";
166
167 $sqlinsert = 'INSERT INTO '.MAIN_DB_PREFIX.'website_page(fk_website, pageurl, aliasalt, title, description, keywords, content, status, type_container, lang, import_key, image, date_creation, author_alias)';
168 $sqlinsert .= " VALUES(".$websiteid.", '".$db->escape($alias)."', '', '".$db->escape($title)."', '".$db->escape($description)."', '".$db->escape($keywords)."', ";
169 $sqlinsert .= " '".$db->escape($htmltext)."', '1', 'blogpost', '".$db->escape($language)."', '".$db->escape($importid)."', '".$db->escape($image)."', '".$db->idate($date_creation)."', '".$db->escape($author_alias)."')";
170 print $sqlinsert."\n";
171
172 $result = $db->query($sqlinsert);
173 if ($result <= 0) {
174 print 'ERROR: '.$db->lasterrno.": ".$sqlinsert."\n";
175 if ($db->lasterrno != 'DB_ERROR_RECORD_ALREADY_EXISTS') {
176 $error++;
177 } else {
178 $nbalreadyexists++;
179 }
180 } else {
181 $pageid = $db->last_insert_id(MAIN_DB_PREFIX.'website_page');
182
183 if ($pageid > 0) { // We must also regenerate page on disk
184 global $dolibarr_main_data_root;
185 $pathofwebsite = $dolibarr_main_data_root.'/website/'.$websiteref;
186 $filetpl = $pathofwebsite.'/page'.$pageid.'.tpl.php';
187 $websitepage = new WebsitePage($db);
188 $websitepage->fetch($pageid);
189 dolSavePageContent($filetpl, $website, $websitepage);
190 }
191
192 print "Insert done - pageid = ".$pageid."\n";
193 $nbimported++;
194 }
195
196 if ($max && $i >= $max) {
197 print 'Nb max of record ('.$max.') reached. We stop now.'."\n";
198 break;
199 }
200 }
201}
202
203if ($mode == 'confirm' && !$error) {
204 print "Commit\n";
205 print $nbalreadyexists." page(s) already exists.\n";
206 print $nbimported." page(s) imported with importid=".$importid."\n";
207 $db->commit();
208} else {
209 print "Rollback (mode=test)\n";
210 $db->rollback();
211}
212
213exit($error);
Class Website.
Class Websitepage.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_now($mode='auto')
Return date for now.
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
getDoliDBInstance($type, $host, $user, $pass, $name, $port)
Return a DoliDB instance (database handler).
dolSavePageContent($filetpl, Website $object, WebsitePage $objectpage, $backupold=0)
Save content of a page on disk (page name is generally ID_of_page.php).