loadXML($data) or die('xml malformé'); $title = $dom->getElementsByTagName('title'); return $title->item(0)->nodeValue; } function get_link_from_feed($url) { return get_link_from_datafeed(file_get_contents($url)); } function get_link_from_datafeed($data) { if($data === false) { return 'url inaccessible'; } $xml = simplexml_load_string($data); // quick feed check // ATOM feed && RSS 1.0 /RDF && RSS 2.0 if (!isset($xml->entry) && !isset($xml->item) && !isset($xml->channel->item)) die('le flux n\'a pas une syntaxe valide'); $check = substr($data, 0, 5); if($check !== 'channel->link; if($channel['link'] === NULL) { $dom = new DOMDocument; $dom->loadXML($data) or die('xml malformé'); $link = $dom->getElementsByTagName('uri'); return $link->item(0)->nodeValue; } else { return $channel['link']; } } function serverUrl($return_subfolder = false) { $https = (!empty($_SERVER['HTTPS']) && (strtolower($_SERVER['HTTPS'])=='on')) || $_SERVER["SERVER_PORT"]=='443'; // HTTPS detection. $serverport = ($_SERVER["SERVER_PORT"]=='80' || ($https && $_SERVER["SERVER_PORT"]=='443') ? '' : ':'.$_SERVER["SERVER_PORT"]); if($return_subfolder === true) { $path = pathinfo( $_SERVER['PHP_SELF'] ); $subfolder = $path['dirname'] .'/'; } else $subfolder = ''; return 'http'.($https?'s':'').'://'.$_SERVER["SERVER_NAME"].$serverport.$subfolder; } function objectCmp($a, $b) { return strcasecmp ($a->site_title, $b->site_title); } function generate_antibot() { $letters = array('zéro', 'un', 'deux', 'trois', 'quatre', 'cinq', 'six', 'sept', 'huit', 'neuf', 'dix', 'onze', 'douze', 'treize', 'quatorze', 'quinze', 'seize', 'dix-sept', 'dix-huit', 'dix-neuf', 'vingt'); return $letters[mt_rand(1, 20)]; } function check_antibot($number, $text_number) { $letters = array('zéro', 'un', 'deux', 'trois', 'quatre', 'cinq', 'six', 'sept', 'huit', 'neuf', 'dix', 'onze', 'douze', 'treize', 'quatorze', 'quinze', 'seize', 'dix-sept', 'dix-huit', 'dix-neuf', 'vingt'); return ( array_search( $text_number, $letters ) === intval($number) ) ? true : false; } function create_from_opml($opml) { global $error, $success; foreach( $opml->body->outline as $outline ) { if ( !empty( $outline['title'] ) && !empty( $outline['text'] ) && !empty( $outline['xmlUrl']) && !empty( $outline['htmlUrl'] )) { try { $rssurl = DetectRedirect(escape( $outline['xmlUrl'])); $sitename = escape( $outline['title'] ); $siteurl = escape($outline['htmlUrl']); $sitetype = escape($outline['text']); if ( $sitetype == 'generic' or $sitetype == 'microblog' or $sitetype == 'shaarli') { } else { $sitetype = 'generic'; } $error = array_merge( $error, createAutoblog( $sitetype, $sitename, $siteurl, $rssurl, $error ) ); if( empty ( $error )) $success[] = 'Autoblog "'. $sitename .'" crée avec succès. → afficher l\'autoblog.'; } catch (Exception $e) { $error[] = $e->getMessage(); } } } } /** * Simple version check **/ function versionCheck() { $versionfile = 'version'; $lastestUrl = 'https://raw.github.com/mitsukarenai/Projet-Autoblog/master/0.3/version'; $expire = time() - 84600 ; // 23h30 en secondes $lockfile = '.versionlock'; if (file_exists($lockfile) && filemtime($lockfile) > $expire) { if( file_get_contents($lockfile) == 'NEW' ) { // No new version installed if( filemtime( $lockfile ) > filemtime( $versionfile ) ) return true; else unlink($lockfile); } else return false; } if (file_exists($lockfile) && filemtime($lockfile) < $expire) { unlink($lockfile); } if( file_get_contents($versionfile) != file_get_contents($lastestUrl) ) { file_put_contents($lockfile, 'NEW'); return true; } file_put_contents($lockfile, '.'); return false; } $update_available = (ALLOW_CHECK_UPDATE) ? versionCheck() : false; /** * RSS Feed **/ if( !file_exists(RSS_FILE)) { require_once('class_rssfeed.php'); $rss = new AutoblogRSS(RSS_FILE); $rss->create('Projet Autoblog'. ((strlen(HEAD_TITLE)>0) ? ' | '. HEAD_TITLE : ''), serverUrl(true),"Projet Autoblog - RSS : Ajouts et changements de disponibilité.", serverUrl(true) . RSS_FILE); } if (isset($_GET['rss'])) { require_once('class_rssfeed.php'); $rss = new AutoblogRSS(RSS_FILE); $rss->displayXML(); die; } if( !file_exists(RESOURCES_FOLDER.'rss.json')) { file_put_contents(RESOURCES_FOLDER.'rss.json', '', LOCK_EX); } if (isset($_GET['rss_tmp'])) { displayXML_tmp(); die; } /** * SVG **/ if (isset($_GET['check'])) { //echo "1"; header('Content-type: image/svg+xml'); $randomtime=rand(86400, 259200); /* intervalle de mise à jour: de 1 à 3 jours (pour éviter que le statut de tous les autoblogs soit rafraichi en bloc et bouffe le CPU) */ $expire=time() -$randomtime ; /* SVG minimalistes */ $svg_vert='OK'; $svg_jaune='mv'; $svg_rouge='err'; $svg_twitter=''; $svg_identica=''; $svg_statusnet=''; $errorlog="./".escape( $_GET['check'] ) ."/error.log"; $oldvalue = null; if(file_exists($errorlog)) { $oldvalue = file_get_contents($errorlog); }; if(file_exists($errorlog) && filemtime($errorlog) < $expire) { unlink($errorlog); } /* errorlog périmé ? Suppression. */ if(file_exists($errorlog)) /* errorlog existe encore ? se contenter de lire sa taille pour avoir le statut */ { if(filesize($errorlog) == "0") {die($svg_vert);} else if(filesize($errorlog) == "1") {die($svg_jaune);} else {die($svg_rouge);} } else /* ..sinon, lancer la procédure de contrôle */ { $ini = parse_ini_file("./". escape( $_GET['check'] ) ."/vvb.ini") or die; if(strpos(strtolower($ini['SITE_TITLE']), 'twitter') !== FALSE) { die($svg_twitter); } /* Twitter */ if(strpos(strtolower($ini['SITE_TITLE']), 'identica') !== FALSE) { die($svg_identica); } /* Identica */ if(strpos(strtolower($ini['SITE_TYPE']), 'microblog') !== FALSE) { die($svg_statusnet); } /* Statusnet */ $headers = get_headers($ini['FEED_URL']); /* le flux est indisponible (typiquement: erreur DNS ou possible censure) - à vérifier */ if(empty($headers) || $headers === FALSE ) { if( $oldvalue !== null && $oldvalue != '..' ) { require_once('class_rssfeed.php'); $rss = new AutoblogRSS(RSS_FILE); $rss->addUnavailable($ini['SITE_TITLE'], escape($_GET['check']), $ini['SITE_URL'], $ini['FEED_URL']); updateXML('unavailable', 'nxdomain', escape($_GET['check']), $ini['SITE_TITLE'], $ini['SITE_URL'], $ini['FEED_URL']); } file_put_contents($errorlog, '..'); die($svg_rouge); } $code=explode(" ", $headers[0]); /* code retour 200: flux disponible */ if($code[1] == "200") { if( $oldvalue !== null && $oldvalue != '' ) { require_once('class_rssfeed.php'); $rss = new AutoblogRSS(RSS_FILE); $rss->addAvailable($ini['SITE_TITLE'], escape($_GET['check']), $ini['SITE_URL'], $ini['FEED_URL']); updateXML('available', '200', escape($_GET['check']), $ini['SITE_TITLE'], $ini['SITE_URL'], $ini['FEED_URL']); } file_put_contents($errorlog, ''); die($svg_vert); } /* autre code retour: un truc a changé (redirection, changement de CMS, .. bref vvb.ini doit être corrigé) */ else { if( $oldvalue !== null && $oldvalue != '.' ) { require_once('class_rssfeed.php'); $rss = new AutoblogRSS(RSS_FILE); $rss->addCodeChanged($ini['SITE_TITLE'], escape($_GET['check']), $ini['SITE_URL'], $ini['FEED_URL'], $code[1]); updateXML('moved', '3xx', escape($_GET['check']), $ini['SITE_TITLE'], $ini['SITE_URL'], $ini['FEED_URL']); } file_put_contents($errorlog, '.'); die($svg_jaune); } } } /** * JSON Export **/ if (isset($_GET['export'])) { header('Content-Type: application/json'); $subdirs = glob(AUTOBLOGS_FOLDER . "*"); foreach($subdirs as $unit) { if(is_dir($unit)) { $unit=substr($unit, 2); $ini = parse_ini_file($unit.'/vvb.ini'); $config = new stdClass; foreach ($ini as $key=>$value) { $key = strtolower($key); $config->$key = $value; } unset($ini); $feed=$config->feed_url; $type=$config->site_type; $title=$config->site_title; $url=$config->site_url; $reponse[$unit] = array("SITE_TYPE"=>"$type", "SITE_TITLE"=>"$title", "SITE_URL"=>"$url", "FEED_URL"=>"$feed"); } } echo json_encode( array( "meta"=> array("xsaf-version"=>XSAF_VERSION,"xsaf-db_transfer"=>"true","xsaf-media_transfer"=>"true"), "autoblogs"=>$reponse)); die; } /** * JSON Allowed Twitter accounts export **/ if (isset($_GET['export_twitter'])) { header('Content-Type: application/json'); $subdirs = glob(AUTOBLOGS_FOLDER . "*"); $response = array(); foreach($subdirs as $unit) { if(is_dir($unit)) { $unit=substr($unit, 2); $ini = parse_ini_file($unit.'/vvb.ini'); if( $ini['SITE_TYPE'] == 'twitter' ) { preg_match('#twitter\.com/(.+)#', $ini['SITE_URL'], $username); $response[] = $username[1]; } unset($ini); } } echo json_encode( $response ); die; } /** * OPML Full Export **/ if (isset($_GET['exportopml'])) // OPML { //header('Content-Type: application/octet-stream'); header('Content-type: text/xml'); header('Content-Disposition: attachment; filename="autoblogs-'. $_SERVER['SERVER_NAME'] .'.xml"'); $opmlfile = new SimpleXMLElement(''); $opmlfile->addAttribute('version', '1.0'); $opmlhead = $opmlfile->addChild('head'); $opmlhead->addChild('title', 'Autoblog OPML export from '. $_SERVER['SERVER_NAME'] ); $opmlhead->addChild('dateCreated', date('r', time())); $opmlbody = $opmlfile->addChild('body'); $subdirs = glob(AUTOBLOGS_FOLDER . "*"); foreach($subdirs as $unit) { if(is_dir($unit)) { $unit=substr($unit, 2); $ini = parse_ini_file($unit.'/vvb.ini'); $config = new stdClass; foreach ($ini as $key=>$value) { $key = strtolower($key); $config->$key = $value; } unset($ini); $outline = $opmlbody->addChild('outline'); $outline->addAttribute('title', escape($config->site_title)); $outline->addAttribute('text', escape($config->site_type)); $outline->addAttribute('htmlUrl', escape($config->site_url)); $outline->addAttribute('xmlUrl', escape($config->feed_url)); } } echo $opmlfile->asXML(); exit; } /** * Site map * NEW AUTOBLOG FOLDER - Need update **/ if (isset($_GET['sitemap'])) { header('Content-Type: application/xml'); $proto=(!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS'])=='on')?"https://":"http://"; echo ''; echo ''.$proto."{$_SERVER['HTTP_HOST']}".str_replace('?sitemap', '', $_SERVER['REQUEST_URI'])."\n"; echo ''.date('c', time())."\n"; echo 'daily'; $subdirs = glob(AUTOBLOGS_FOLDER . "*"); foreach($subdirs as $unit) { if(is_dir($unit)) { $unit=substr($unit, 2); echo ''.$proto.$_SERVER['SERVER_NAME'].substr($_SERVER['PHP_SELF'], 0, -9)."$unit/"."\n"; echo ''.date('c', filemtime($unit))."\n"; echo 'hourly'; } } echo ''; die; } /** * Update ALL autblogs (except .disabled) * This action can be very slow and consume CPU if you have a lot of autoblogs **/ if( isset($_GET['updateall']) && ALLOW_FULL_UPDATE) { $expire = time() - 84600 ; // 23h30 en secondes $lockfile = ".updatealllock"; if (file_exists($lockfile) && filemtime($lockfile) > $expire) { echo "too early"; die; } else { if( file_exists($lockfile) ) unlink($lockfile); if( file_put_contents($lockfile, date(DATE_RFC822)) ===FALSE) { echo "Merci d'ajouter des droits d'écriture sur le fichier."; die; } } $subdirs = glob(AUTOBLOGS_FOLDER . "*"); foreach($subdirs as $unit) { if(is_dir($unit)) { if( !file_exists(ROOT_DIR . '/' . $unit . '/.disabled')) { file_get_contents(serverUrl() . substr($_SERVER['PHP_SELF'], 0, -9) . $unit . '/index.php'); } } } } $antibot = generate_antibot(); $form = '


'; /** * ADD BY BOOKMARK BUTTON **/ if(!empty($_GET['via_button']) && $_GET['number'] === '17' && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY_BUTTON ) { $form = ''; if( empty($_GET['rssurl']) ) { $form .= '

URL du flux RSS incorrect.
Fermer la fenêtre.

'; } else { if(isset($_GET['add']) && $_GET['add'] === '1' && !empty($_GET['siteurl']) && !empty($_GET['sitename'])) { try { $rssurl = DetectRedirect(escape($_GET['rssurl'])); $siteurl = escape($_GET['siteurl']); $sitename = escape($_GET['sitename']); $sitetype = updateType($siteurl); // Disabled input doesn't send POST data $sitetype = $sitetype['type']; $error = array_merge( $error, createAutoblog($sitetype, $sitename, $siteurl, $rssurl, $error)); if( empty($error)) { $form .= ''; $form .= '

Autoblog '. $sitename .' ajouté avec succès.
'; } else { $form .= '

'; } } catch (Exception $e) { $form .= $e->getMessage(); } $form .= 'Fermer la fenêtre.

'; } else { try { $rssurl = DetectRedirect(escape($_GET['rssurl'])); $datafeed = file_get_contents($rssurl); if( $datafeed !== false ) { $siteurl = get_link_from_datafeed($datafeed); $sitename = get_title_from_datafeed($datafeed); $sitetype = updateType($siteurl); $sitetype = $sitetype['type']; $form .= 'Merci de vérifier les informations suivantes, corrigez si nécessaire.




'; } else { $form .= '

URL du flux RSS incorrecte.
Fermer la fenêtre.

'; } } catch (Exception $e) { $form .= $e->getMessage() .'
Fermer la fenêtre.

'; } } } $form .= ''; echo $form; die; } /** * ADD BY SOCIAL / SHAARLI **/ if(!empty($_POST['socialaccount']) && !empty($_POST['socialinstance']) && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY_SOCIAL) { if( !empty($_POST['number']) && !empty($_POST['antibot']) && check_antibot($_POST['number'], $_POST['antibot']) ) { $socialaccount = strtolower(escape($_POST['socialaccount'])); $socialinstance = strtolower(escape($_POST['socialinstance'])); if($socialinstance === 'twitter') { if( API_TWITTER !== FALSE ) { $sitetype = 'twitter'; $siteurl = "http://twitter.com/$socialaccount"; $rssurl = API_TWITTER.$socialaccount; } else $error[] = "Twitter veut mettre à mort son API ouverte. Du coup on peut plus faire ça comme ça."; } elseif($socialinstance === 'identica') { $sitetype = 'identica'; $siteurl = "http://identi.ca/$socialaccount"; $rssurl = "http://identi.ca/api/statuses/user_timeline/$socialaccount.rss"; } elseif($socialinstance === 'statusnet' && !empty($_POST['statusneturl'])) { $sitetype = 'microblog'; $siteurl= NoProtocolSiteURL(escape($_POST['statusneturl'])); try { $rssurl = DetectRedirect("http://".$siteurl."/api/statuses/user_timeline/$socialaccount.rss"); $siteurl = DetectRedirect("http://".$siteurl."/$socialaccount"); } catch (Exception $e) { echo $error[] = $e->getMessage(); } } elseif($socialinstance === 'shaarli' && !empty($_POST['shaarliurl'])) { $sitetype = 'shaarli'; $siteurl = NoProtocolSiteURL(escape($_POST['shaarliurl'])); try { $siteurl = DetectRedirect("http://".$siteurl."/"); } catch (Exception $e) { echo $error[] = $e->getMessage(); } $rssurl = $siteurl."?do=rss"; $socialaccount = get_title_from_feed($rssurl); } if( empty($error) ) { // Twitterbridge do NOT allow this user yet => No check if( $sitetype != 'twitter' ) { $headers = get_headers($rssurl, 1); if (strpos($headers[0], '200') == FALSE) { $error[] = "Flux inaccessible (compte inexistant ?)"; } } if( empty($error) ) { $error = array_merge( $error, createAutoblog($sitetype, ucfirst($socialinstance) .' - '. $socialaccount, $siteurl, $rssurl, $error)); if( empty($error)) $success[] = ''.ucfirst($socialinstance) .' - '. $socialaccount.' ajouté avec succès.'; } } } else $error[] = 'Antibot : Chiffres incorrects.'; } /** * ADD BY GENERIC LINK **/ if( !empty($_POST['generic']) && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY_LINKS) { if(empty($_POST['rssurl'])) {$error[] = "Veuillez entrer l'adresse du flux.";} if(empty($_POST['number']) || empty($_POST['antibot']) ) {$error[] = "Vous êtes un bot ?";} elseif(! check_antibot($_POST['number'], $_POST['antibot'])) {$error[] = "Antibot : Ce n'est pas le bon nombre.";} if(empty($error)) { try { $rssurl = DetectRedirect(escape($_POST['rssurl'])); if(!empty($_POST['siteurl'])) { $siteurl = escape($_POST['siteurl']); $sitename = get_title_from_feed($rssurl); $error = array_merge( $error, createAutoblog('generic', $sitename, $siteurl, $rssurl, $error)); if( empty($error)) $success[] = 'Autoblog '. $sitename .' crée avec succès.afficher l\'autoblog'; } else { // checking procedure $datafeed = file_get_contents($rssurl); if( $datafeed === false ) { $error[] = 'URL "'. $rssurl .'" inaccessible.'; } $sitetype = 'generic'; $siteurl = get_link_from_datafeed($datafeed); $sitename = get_title_from_datafeed($datafeed); $form = 'Merci de vérifier les informations suivantes, corrigez si nécessaire.





'; } } catch (Exception $e) { echo $error[] = $e->getMessage(); } } } /** * ADD BY OPML File **/ if( !empty($_POST['opml_file']) && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY_OPML_FILE) { if(empty($_POST['number']) || empty($_POST['antibot']) ) {$error[] = "Vous êtes un bot ?";} elseif(! check_antibot($_POST['number'], $_POST['antibot'])) {$error[] = "Antibot : Ce n'est pas le bon nombre.";} if( empty( $error)) { if (is_uploaded_file($_FILES['file']['tmp_name'])) { $opml = null; if( ($opml = simplexml_load_file( $_FILES['file']['tmp_name'])) !== false ) { create_from_opml($opml); } else $error[] = "Impossible de lire le contenu du fichier OPML."; unlink($_FILES['file']['tmp_name']); } else { $error[] = "Le fichier n'a pas été envoyé."; } } } /** * ADD BY OPML Link **/ if( !empty($_POST['opml_link']) && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY_OPML_LINK) { if(empty($_POST['number']) || empty($_POST['antibot']) ) {$error[] = "Vous êtes un bot ?";} elseif(! check_antibot($_POST['number'], $_POST['antibot'])) {$error[] = "Antibot : Ce n'est pas le bon nombre.";} if( empty( $_POST['opml_url'] )) {$error[] = 'Le lien est incorrect.';} if( empty( $error)) { $opml_url = escape($_POST['opml_url']); if(parse_url($opml_url, PHP_URL_HOST)==FALSE) { $error[] = "URL du fichier OPML non valide."; } else { if ( ($opml = simplexml_load_file( $opml_url )) !== false ) { create_from_opml($opml); } else { $error[] = "Impossible de lire le contenu du fichier OPML ou d'accéder à l'URL donnée."; } } } } ?> Projet Autoblog<?php if(strlen(HEAD_TITLE)>0) echo " | " . HEAD_TITLE; ?> '; } ?>

PROJET AUTOBLOG 0) echo " | " . HEAD_TITLE; ?>

'; ?>

Présentation

Le Projet Autoblog a pour objectif de répliquer les articles d'un blog ou d'un site site web.
Si l'article source est supprimé, et même si le site d'origine disparaît, les articles restent lisibles sur l'autoblog.
L'objectif premier de ce projet est de lutter contre la censure et toute sorte de pression...

Voici une liste d'autoblogs hébergés sur (plus d'infos sur le projet).

Mise à jour

Une mise à jour du Projet Autoblog est disponible !
Télécharger la dernière version
Important : Consulter la documentation - mise à jour

Ajouter un autoblog

Message'. (count($error) ? 's' : '') .' :

'; } $button_list = '

Ajouter un autoblog via : '; if(ALLOW_NEW_AUTOBLOGS_BY_LINKS) $button_list .= 'Flux RSS '; if(ALLOW_NEW_AUTOBLOGS_BY_SOCIAL) { $button_list .= 'Compte réseau social '; $button_list .= 'Shaarli '; } if(ALLOW_NEW_AUTOBLOGS_BY_OPML_FILE) $button_list .= 'Fichier OPML '; if(ALLOW_NEW_AUTOBLOGS_BY_OPML_LINK) $button_list .= 'Lien vers OPML '; if(ALLOW_NEW_AUTOBLOGS_BY_BUTTON) $button_list .= 'Marque page '; $button_list .= '

'; echo $button_list; if(ALLOW_NEW_AUTOBLOGS_BY_LINKS == TRUE) { ?>

Ajouter un site web

Si vous souhaitez que héberge un autoblog d'un site,
remplissez le formulaire suivant:

Ajouter un compte social


Twitter
'; else echo 'Twitter
'; ?> Identica


Ajouter un Shaarli



Ajouter par fichier OPML



Marque page

Pour ajouter facilement un autoblog d'un site web, glissez ce bouton dans votre barre de marque-pages → ";var%20popup=window.open("","Add%20autoblog",'height=180,width=670');popup.document.writeln('');popup.document.write('Url%20feed%20%20:%20
');var%20feed_links=new%20Array();var%20links=document.getElementsByTagName('link');if(links.length>0){for(var%20i=0;i'+links[i].title+"%20(%20"+links[i].href+"%20)
");}}}popup.document.writeln("");popup.document.writeln("");popup.document.writeln("
");popup.document.writeln("");})();"> Projet Autoblog

'. substr($unit, (strrpos($unit, '/')) + 1 ) .''; } } } if(!empty( $docs )) { echo '

Autres documents

'; } ?>

Autoblogs hébergés rss

Autres fermesRechercher

sitemap | export JSON | export OPML
$value) { $key = strtolower($key); $config->$key = $value; } $autoblogs[$unit] = $config; unset($ini); } } } } } uasort($autoblogs, "objectCmp"); $autoblogs_display = ''; if(!empty($autoblogs)){ foreach ($autoblogs as $key => $autoblog) { $opml_link='opml'; $autoblogs_display .= '
config ini '.$opml_link.' | '.escape($autoblog->site_type).' source: '.escape($autoblog->site_url).'
'; } } echo $autoblogs_display; ?>
".count($autoblogs)." autoblogs hébergés

"; ?>
Propulsé par Projet Autoblog 0.3 de Mitsu, Oros et Arthur Hoaro (Domaine Public) 0 ){ echo "
".FOOTER; } ?>