Remplacement du nombre de blog à importer par le temps d'exécution max de l'import.
Correctif de bug lorque le xml est mal formé et non reconnue.
This commit is contained in:
parent
653d007602
commit
4e4b60cc87
1 changed files with 22 additions and 13 deletions
35
xsaf2.php
35
xsaf2.php
|
@ -37,8 +37,12 @@ function NoProtocolSiteURL($url) {
|
||||||
return $siteurlnoproto;
|
return $siteurlnoproto;
|
||||||
}
|
}
|
||||||
|
|
||||||
function xsafimport($xsafremote, $iter) {
|
libxml_use_internal_errors(true);
|
||||||
echo "\n*Traitement $xsafremote avec $iter créations max";
|
// $max_exec_time = temps max d'exécution en seconde
|
||||||
|
function xsafimport($xsafremote, $max_exec_time) {
|
||||||
|
echo "\n*Traitement $xsafremote en maximum $max_exec_time secondes";
|
||||||
|
$max_exec_time+=time()-1; // -1 car l'import prend environ 1 seconde
|
||||||
|
|
||||||
$json_import = file_get_contents($xsafremote);
|
$json_import = file_get_contents($xsafremote);
|
||||||
if(!empty($json_import)) {
|
if(!empty($json_import)) {
|
||||||
$to_update=array();
|
$to_update=array();
|
||||||
|
@ -61,7 +65,7 @@ function xsafimport($xsafremote, $iter) {
|
||||||
$sitedomain3=explode(".", $sitedomain2);
|
$sitedomain3=explode(".", $sitedomain2);
|
||||||
$sitedomain3=array_reverse($sitedomain3);
|
$sitedomain3=array_reverse($sitedomain3);
|
||||||
$sitedomain = $sitedomain3[1].'.'.$sitedomain3[0];
|
$sitedomain = $sitedomain3[1].'.'.$sitedomain3[0];
|
||||||
if(!file_exists($foldername) && !file_exists($foldername2) and $iter > 0) {
|
if(!file_exists($foldername) && !file_exists($foldername2)) {
|
||||||
if ( mkdir('./'. $foldername, 0755, false) ) {
|
if ( mkdir('./'. $foldername, 0755, false) ) {
|
||||||
$fp = fopen('./'. $foldername .'/index.php', 'w+');
|
$fp = fopen('./'. $foldername .'/index.php', 'w+');
|
||||||
|
|
||||||
|
@ -70,7 +74,10 @@ function xsafimport($xsafremote, $iter) {
|
||||||
$result="false";
|
$result="false";
|
||||||
}else{
|
}else{
|
||||||
$xml = simplexml_load_file($rssurl); // quick feed check
|
$xml = simplexml_load_file($rssurl); // quick feed check
|
||||||
if (isset($xml->entry)) { // ATOM feed.
|
|
||||||
|
if($xml === FALSE){
|
||||||
|
$result="false";
|
||||||
|
}elseif (isset($xml->entry)) { // ATOM feed.
|
||||||
$result="true";
|
$result="true";
|
||||||
}elseif (isset($xml->item)) { // RSS 1.0 /RDF
|
}elseif (isset($xml->item)) { // RSS 1.0 /RDF
|
||||||
$result="true";
|
$result="true";
|
||||||
|
@ -83,7 +90,6 @@ function xsafimport($xsafremote, $iter) {
|
||||||
|
|
||||||
/* autoblog */
|
/* autoblog */
|
||||||
if($social==FALSE and $result!=="false") {
|
if($social==FALSE and $result!=="false") {
|
||||||
$iter--;
|
|
||||||
if( !fwrite($fp, "<?php require_once dirname(__DIR__) . '/autoblog.php'; ?>") ) {
|
if( !fwrite($fp, "<?php require_once dirname(__DIR__) . '/autoblog.php'; ?>") ) {
|
||||||
$infos = "\nImpossible d'écrire le fichier index.php dans ".$foldername;
|
$infos = "\nImpossible d'écrire le fichier index.php dans ".$foldername;
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
|
@ -100,14 +106,13 @@ DOWNLOAD_MEDIA_FROM='.$sitedomain) ){
|
||||||
$infos = "\nImpossible d'écrire le fichier vvb.ini dans ".$foldername;
|
$infos = "\nImpossible d'écrire le fichier vvb.ini dans ".$foldername;
|
||||||
}else{
|
}else{
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
$infos = "\n$iter/autoblog crée avec succès : $foldername";
|
$infos = "\nautoblog crée avec succès : $foldername";
|
||||||
$to_update[]=serverUrl().preg_replace("/(.*)\/(.*)$/i","$1/".$foldername , $_SERVER['SCRIPT_NAME']); // url of the new autoblog
|
$to_update[]=serverUrl().preg_replace("/(.*)\/(.*)$/i","$1/".$foldername , $_SERVER['SCRIPT_NAME']); // url of the new autoblog
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* automicroblog */
|
/* automicroblog */
|
||||||
else if($social!==FALSE and $result!=="false"){
|
else if($social!==FALSE and $result!=="false"){
|
||||||
$iter--;
|
|
||||||
if( !fwrite($fp, "<?php require_once dirname(__DIR__) . '/automicroblog.php'; ?>") ){
|
if( !fwrite($fp, "<?php require_once dirname(__DIR__) . '/automicroblog.php'; ?>") ){
|
||||||
$infos = "\nImpossible d'écrire le fichier index.php dans ".$foldername;
|
$infos = "\nImpossible d'écrire le fichier index.php dans ".$foldername;
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
|
@ -123,7 +128,7 @@ FEED_URL="'. $rssurl .'"') ){
|
||||||
$infos = "\nImpossible d'écrire le fichier vvb.ini dans ".$foldername;
|
$infos = "\nImpossible d'écrire le fichier vvb.ini dans ".$foldername;
|
||||||
}else{
|
}else{
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
$infos = "\n$iter/automicroblog crée avec succès : $foldername";
|
$infos = "\nautomicroblog crée avec succès : $foldername";
|
||||||
$to_update[]=serverUrl().preg_replace("/(.*)\/(.*)$/i","$1/".$foldername , $_SERVER['SCRIPT_NAME']); // url of the new autoblog
|
$to_update[]=serverUrl().preg_replace("/(.*)\/(.*)$/i","$1/".$foldername , $_SERVER['SCRIPT_NAME']); // url of the new autoblog
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -141,6 +146,10 @@ FEED_URL="'. $rssurl .'"') ){
|
||||||
echo $infos;
|
echo $infos;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
echo "\n time : ".(time() - $max_exec_time);
|
||||||
|
if(time() >= $max_exec_time){
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/*if(!empty($to_update)){
|
/*if(!empty($to_update)){
|
||||||
if(DEBUG){
|
if(DEBUG){
|
||||||
|
@ -155,13 +164,13 @@ FEED_URL="'. $rssurl .'"') ){
|
||||||
}
|
}
|
||||||
}*/
|
}*/
|
||||||
}
|
}
|
||||||
$iter=''; return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* And now, the XSAF links to be imported, with maximal import per run ! */
|
/* And now, the XSAF links to be imported, with maximal execusion time for import in second ! */
|
||||||
xsafimport('https://raw.github.com/mitsukarenai/xsaf-bootstrap/master/2.json', 2);
|
xsafimport('https://raw.github.com/mitsukarenai/xsaf-bootstrap/master/2.json', 5);
|
||||||
//xsafimport('https://www.ecirtam.net/autoblogs/?export', 2);
|
//xsafimport('https://www.ecirtam.net/autoblogs/?export', 5);
|
||||||
//xsafimport('https://autoblog.suumitsu.eu/?export', 1);
|
//xsafimport('https://autoblog.suumitsu.eu/?export', 5);
|
||||||
|
|
||||||
if(DEBUG) {
|
if(DEBUG) {
|
||||||
echo "\n\nXSAF import finished\n\n";
|
echo "\n\nXSAF import finished\n\n";
|
||||||
|
|
Loading…
Reference in a new issue