2013-02-05 00:08:17 +01:00
< ? php
2013-02-08 13:13:02 +01:00
/* modtime 2013-02-08 */
2013-02-05 00:08:17 +01:00
2013-02-06 23:03:08 +01:00
define ( 'XSAF_VERSION' , 3 );
2013-02-05 00:08:17 +01:00
define ( 'ROOT_DIR' , __DIR__ );
if ( file_exists ( " config.php " )){
include " config.php " ;
}
function get_title_from_feed ( $url )
{
// get site title from feed
$data = file_get_contents ( " $url " );
if ( $data === false ) { die ( 'url inaccessible' ); }
$dom = new DOMDocument ;
$dom -> loadXML ( $data ) or die ( 'xml malformé' );
$title = $dom -> getElementsByTagName ( 'title' );
return $title -> item ( 0 ) -> nodeValue ;
}
function get_link_from_feed ( $url )
{
// get site link from feed
$data = file_get_contents ( " $url " );
$xml = simplexml_load_string ( $data ); // quick feed check
if ( isset ( $xml -> entry )) // ATOM feed.
{ $result = " true " ;}
elseif ( isset ( $xml -> item )) // RSS 1.0 /RDF
{ $result = " true " ;}
elseif ( isset ( $xml -> channel -> item )) // RSS 2.0
{ $result = " true " ;}
else
{ $result = " false " ;}
if ( $result == " false " ) { die ( 'le flux n\'a pas une syntaxe valide' ); }
$check = substr ( $data , 0 , 5 );
if ( $check !== '<?xml' ) { die ( 'n\'est pas un flux valide' ); }
$xml = new SimpleXmlElement ( $data );
$channel [ 'link' ] = $xml -> 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 ()
{
$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 " ]);
return 'http' . ( $https ? 's' : '' ) . '://' . $_SERVER [ " SERVER_NAME " ] . $serverport ;
}
function NoProtocolSiteURL ( $url )
{
$siteurlnoprototypes = array ( " http:// " , " https:// " );
$siteurlnoproto = str_replace ( $siteurlnoprototypes , " " , $url );
return $siteurlnoproto ;
}
function DetectRedirect ( $url )
{
$response = get_headers ( $url , 1 );
if ( ! empty ( $response [ 'Location' ]))
{
$response2 = get_headers ( $response [ 'Location' ], 1 );
if ( ! empty ( $response2 [ 'Location' ]))
{ die ( 'too much redirection' );}
else { return $response [ 'Location' ]; }
}
else
{
return $url ;
}
}
if ( isset ( $_GET [ 'check' ]))
{
$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 = '<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="15" height="15"><g><rect width="15" height="15" x="0" y="0" style="fill:#00ff00;stroke:#008000"/></g><text style="font-size:10px;font-weight:bold;text-anchor:middle;font-family:Arial"><tspan x="7" y="11">OK</tspan></text></svg>' ;
$svg_jaune = '<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="15" height="15"><g><rect width="15" height="15" x="0" y="0" style="fill:#ffff00;stroke:#ffcc00"/></g><text style="font-size:10px;font-weight:bold;text-anchor:middle;font-family:Arial"><tspan x="7" y="11">mv</tspan></text></svg>' ;
$svg_rouge = '<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="15" height="15"><g><rect width="15" height="15" x="0" y="0" style="fill:#ff0000;stroke:#800000"/></g><text style="font-size:10px;font-weight:bold;text-anchor:middle;font-family:Arial"><tspan x="7" y="11">err</tspan></text></svg>' ;
$svg_twitter = '<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="15" height="15"><path d="m 11.679889,7.6290431 a 4.1668792,3.7091539 0 1 1 -8.3337586,0 4.1668792,3.7091539 0 1 1 8.3337586,0 z" style="fill:none;stroke:#3aaae1;stroke-width:4;stroke-miterlimit:4" /></svg>' ;
$svg_identica = '<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="15" height="15"><path d="m 11.679889,7.6290431 a 4.1668792,3.7091539 0 1 1 -8.3337586,0 4.1668792,3.7091539 0 1 1 8.3337586,0 z" style="fill:none;stroke:#a00000;stroke-width:4;stroke-miterlimit:4" /></svg>' ;
$svg_statusnet = '<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="15" height="15"><path d="m 11.679889,7.6290431 a 4.1668792,3.7091539 0 1 1 -8.3337586,0 4.1668792,3.7091539 0 1 1 8.3337586,0 z" style="fill:none;stroke:#ff6a00;stroke-width:4;stroke-miterlimit:4" /></svg>' ;
$errorlog = " ./ " . $_GET [ 'check' ] . " /error.log " ;
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 */
{
header ( 'Content-type: image/svg+xml' );
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 ( " ./ " . $_GET [ 'check' ] . " /vvb.ini " ) or die ;
header ( 'Content-type: image/svg+xml' );
2013-02-09 12:40:50 +01:00
if ( strpos ( " $ini[SITE_TITLE] " , 'twitter' ) !== FALSE ) { die ( $svg_twitter ); } /* Twitter */
if ( strpos ( " $ini[SITE_TITLE] " , 'identica' ) !== FALSE ) { die ( $svg_identica ); } /* Identica */
if ( strpos ( " $ini[SITE_TYPE] " , 'microblog' ) !== FALSE ) { die ( $svg_statusnet ); } /* Statusnet */
2013-02-05 00:08:17 +01:00
$headers = get_headers ( " $ini[FEED_URL] " );
if ( empty ( $headers )) { file_put_contents ( $errorlog , '..' ); die ( $svg_rouge ); } /* le flux est indisponible (typiquement: erreur DNS ou possible censure) - à vérifier */
$code = explode ( " " , $headers [ 0 ]);
if ( $code [ 1 ] == " 200 " ) { file_put_contents ( $errorlog , '' ); die ( $svg_vert );} /* code retour 200: flux disponible */
else { file_put_contents ( $errorlog , '.' ); die ( $svg_jaune );} /* autre code retour: un truc a changé (redirection, changement de CMS, .. bref vvb.ini doit être corrigé) */
}
}
if ( isset ( $_GET [ 'export' ]))
// autoblog exporting
{
header ( 'Content-Type: application/json' );
$directory = " ./ " ;
$subdirs = glob ( $directory . " * " );
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 );
2013-02-06 23:03:08 +01:00
$type = $config -> site_type ;
2013-02-05 00:08:17 +01:00
$title = $config -> site_title ;
$url = $config -> site_url ;
$feed = $config -> feed_url ;
2013-02-06 23:03:08 +01:00
$reponse [ $unit ] = array ( " SITE_TYPE " => " $type " , " SITE_TITLE " => " $title " , " SITE_URL " => " $url " , " FEED_URL " => " $feed " );
2013-02-05 00:08:17 +01:00
}
}
2013-02-07 14:12:50 +01:00
echo json_encode ( array ( " meta " => array ( " xsaf-version " => XSAF_VERSION , " xsaf-db_transfer " => " true " , " xsaf-media_transfer " => " true " ),
2013-02-06 23:03:08 +01:00
" autoblogs " => $reponse ));
2013-02-05 00:08:17 +01:00
die ;
}
if ( isset ( $_GET [ 'feedexport' ]))
// autoblog exporting -feed only
{
header ( 'Content-Type: application/json' );
$directory = " ./ " ;
$reponse = " " ;
$subdirs = glob ( $directory . " * " );
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 ;
$reponse = $reponse . " ; $feed " ;
}
}
$reponse = substr ( $reponse , 1 );
echo json_encode ( explode ( ';' , $reponse ));
die ;
}
if ( isset ( $_GET [ 'sitemap' ]))
// url-list sitemap
{
header ( 'Content-Type: text/plain' );
$directory = " ./ " ;
$subdirs = glob ( $directory . " * " );
foreach ( $subdirs as $unit )
{
if ( is_dir ( $unit ))
{
$unit = substr ( $unit , 2 );
$proto = $_SERVER [ 'HTTPS' ] ? " https:// " : " http:// " ;
echo $proto . $_SERVER [ 'SERVER_NAME' ] . substr ( $_SERVER [ 'PHP_SELF' ], 0 , - 9 ) . " $unit / " . " \n " ;
}
}
die ;
}
function escape ( $str )
{
return htmlspecialchars ( $str , ENT_COMPAT , 'UTF-8' , false );
}
$form = ' < form method = " POST " >< input placeholder = " Adresse du flux RSS/ATOM " type = " text " name = " rssurl " id = " rssurl " >< br >
< input placeholder = " Antibot: \ 'dix sept \ ' en chiffre " type = " text " name = " number " id = " number " >< br >< input type = " submit " value = " Vérifier " ></ form > ' ;
if ( ! empty ( $_GET [ 'via_button' ]) && ! empty ( $_GET [ 'rssurl' ]) && $_GET [ 'number' ] === '17' )
{
if ( isset ( $_GET [ 'add' ]) && $_GET [ 'add' ] === '1' && ! empty ( $_GET [ 'siteurl' ]) && ! empty ( $_GET [ 'sitename' ]))
{
$rssurl = DetectRedirect ( escape ( $_GET [ 'rssurl' ]));
$siteurl = escape ( $_GET [ 'siteurl' ]);
2013-02-09 11:30:16 +01:00
$sitetype = 'generic' ;
2013-02-05 00:08:17 +01:00
$foldername = sha1 ( NoProtocolSiteURL ( $siteurl ));
if ( substr ( $siteurl , - 1 ) == '/' ){ $foldername2 = sha1 ( NoProtocolSiteURL ( substr ( $siteurl , 0 , - 1 ))); } else { $foldername2 = sha1 ( NoProtocolSiteURL ( $siteurl ) . '/' );}
$sitename = escape ( $_GET [ 'sitename' ]);
if ( file_exists ( $foldername ) || file_exists ( $foldername2 )) { die ( 'Erreur: l\'autoblog <a target="_blank" href="./' . $foldername . '/">existe déjà</a>.' ); }
if ( mkdir ( './' . $foldername , 0755 , false ) ) {
$fp = fopen ( './' . $foldername . '/index.php' , 'w+' );
2013-02-09 11:30:16 +01:00
if ( ! fwrite ( $fp , " <?php require_once dirname(__DIR__) . '/autoblog-0.3.php'; ?> " ) )
2013-02-05 00:08:17 +01:00
{ die ( " Impossible d'écrire le fichier index.php " );}
fclose ( $fp );
$fp = fopen ( './' . $foldername . '/vvb.ini' , 'w+' );
if ( ! fwrite ( $fp , ' [ VroumVroumBlogConfig ]
2013-02-09 11:30:16 +01:00
SITE_TYPE = " '. $sitetype .' "
2013-02-05 00:08:17 +01:00
SITE_TITLE = " '. $sitename .' "
2013-02-09 12:40:50 +01:00
SITE_DESCRIPTION = " source: <a href= " '. $siteurl .' " >'. $sitename .'</a> "
2013-02-05 00:08:17 +01:00
SITE_URL = " '. $siteurl .' "
FEED_URL = " '. $rssurl .' "
2013-02-09 12:40:50 +01:00
ARTICLES_PER_PAGE = " 5 "
UPDATE_INTERVAL = " 3600 "
UPDATE_TIMEOUT = " 30 " ' ) )
2013-02-05 00:08:17 +01:00
{ die ( " Impossible d'écrire le fichier vvb.ini " );}
fclose ( $fp );
{ die ( '<iframe width="1" height="1" frameborder="0" src="' . $foldername . '"></iframe><b style="color:darkgreen">autoblog crée avec succès.</b> → <a target="_blank" href="' . $foldername . '">afficher l\'autoblog</a>' );}
}
else
{ die ( " Impossible de créer le répertoire. " );}
}
else
{
// checking procedure
2013-02-09 11:30:16 +01:00
$sitetype = $_GET [ 'sitetype' ];
2013-02-05 00:08:17 +01:00
$rssurl = DetectRedirect ( $_GET [ 'rssurl' ]);
$siteurl = get_link_from_feed ( $rssurl );
$foldername = sha1 ( NoProtocolSiteURL ( $siteurl ));
if ( substr ( $siteurl , - 1 ) == '/' ){ $foldername2 = sha1 ( NoProtocolSiteURL ( substr ( $siteurl , 0 , - 1 ))); } else { $foldername2 = sha1 ( NoProtocolSiteURL ( $siteurl ) . '/' );}
$sitename = get_title_from_feed ( $rssurl );
$sitedomain1 = preg_split ( '/\//' , $siteurl , 0 ); $sitedomain2 = $sitedomain1 [ 2 ]; $sitedomain3 = explode ( " . " , $sitedomain2 ); $sitedomain3 = array_reverse ( $sitedomain3 ); $sitedomain = $sitedomain3 [ 1 ] . '.' . $sitedomain3 [ 0 ];
if ( file_exists ( $foldername ) || file_exists ( $foldername2 )) { die ( 'Erreur: l\'autoblog <a href="./' . $foldername . '/">existe déjà</a>.' ); }
$form = ' < html >< head ></ head >< body >< span style = " color:blue " > Merci de vérifier les informations suivantes , corrigez si nécessaire .</ span >< br >
< form method = " GET " >
< input type = " hidden " name = " via_button " value = " 1 " >< input type = " hidden " name = " add " value = " 1 " >< input type = " hidden " name = " number " value = " 17 " >
< input style = " width:30em; " type = " text " name = " sitename " id = " sitename " value = " '. $sitename .' " >< label for = " sitename " >& larr ; titre du site ( auto ) </ label >< br >
< input style = " width:30em; " placeholder = " Adresse du site " type = " text " name = " siteurl " id = " siteurl " value = " '. $siteurl .' " >< label for = " siteurl " >& larr ; page d\ ' accueil ( auto ) </ label >< br >
< input style = " width:30em; " placeholder = " Adresse du flux RSS/ATOM " type = " text " name = " rssurl " id = " rssurl " value = " '. $rssurl .' " >< label for = " rssurl " >& larr ; adresse du flux </ label >< br >
2013-02-09 12:40:50 +01:00
< input style = " width:30em; " placeholder = " generic " type = " text " name = " sitetype " id = " sitetype " value = " '. $sitetype .' " disabled >< label for = " sitetype " >& larr ; type de site </ label >< br >
2013-02-05 00:08:17 +01:00
< input type = " submit " value = " Créer " ></ form ></ body ></ html > ' ;
echo $form ; die ;
}
}
if ( ! empty ( $_POST [ 'socialaccount' ]) && ! empty ( $_POST [ 'socialinstance' ]))
{
$socialaccount = strtolower ( escape ( $_POST [ 'socialaccount' ]));
if ( escape ( $_POST [ 'socialinstance' ]) === 'twitter' ) { $socialinstance = 'twitter' ; }
if ( escape ( $_POST [ 'socialinstance' ]) === 'identica' ) { $socialinstance = 'identica' ; }
if ( escape ( $_POST [ 'socialinstance' ]) === 'statusnet' ) { $socialinstance = 'statusnet' ; }
2013-02-09 11:30:16 +01:00
if ( escape ( $_POST [ 'socialinstance' ]) === 'shaarli' ) { $socialinstance = 'shaarli' ; }
if ( $socialinstance === 'twitter' ) { $sitetype = 'microblog' ; $update_interval = '300' ; $siteurl = " http://twitter.com/ $socialaccount " ; $rssurl = " http://api.twitter.com/1/statuses/user_timeline.rss?screen_name= $socialaccount " ; }
if ( $socialinstance === 'identica' ) { $sitetype = 'microblog' ; $update_interval = '300' ; $siteurl = " http://identi.ca/ $socialaccount " ; $rssurl = " http://identi.ca/api/statuses/user_timeline/ $socialaccount .rss " ; }
2013-02-12 10:04:15 +01:00
if ( $socialinstance === 'statusnet' && ! empty ( $_POST [ 'statusneturl' ])) { $sitetype = 'microblog' ; $update_interval = '300' ; $siteurl = NoProtocolSiteURL ( escape ( $_POST [ 'statusneturl' ])); if ( substr ( $siteurl , - 1 ) == '/' ){ $siteurl = substr ( $siteurl , 0 , - 1 ); } $rssurl = DetectRedirect ( " http:// " . $siteurl . " /api/statuses/user_timeline/ $socialaccount .rss " ); $siteurl = DetectRedirect ( " http:// " . $siteurl . " / $socialaccount " ); }
if ( $socialinstance === 'shaarli' && ! empty ( $_POST [ 'shaarliurl' ])) { $sitetype = 'shaarli' ; $update_interval = '1800' ; $siteurl = NoProtocolSiteURL ( escape ( $_POST [ 'shaarliurl' ])); if ( substr ( $siteurl , - 1 ) == '/' ){ $siteurl = substr ( $siteurl , 0 , - 1 ); } $siteurl = DetectRedirect ( " http:// " . $siteurl . " / " ); $rssurl = $siteurl . " ?do=rss " ; $socialaccount = get_title_from_feed ( $rssurl ); }
2013-02-09 12:40:50 +01:00
$foldername = sha1 ( NoProtocolSiteURL ( $siteurl )); if ( file_exists ( $foldername )) { die ( 'Erreur: l\'autoblog <a href="./' . $foldername . '/">existe déjà</a>.' ); }
$rssurl = DetectRedirect ( $rssurl ); $headers = get_headers ( $rssurl , 1 );
2013-02-05 00:08:17 +01:00
if ( strpos ( $headers [ 0 ], '200' ) == FALSE ) { $error [] = " Flux inaccessible (compte inexistant ?) " ;} else { }
if ( empty ( $error ) ) {
2013-02-09 12:40:50 +01:00
if ( ! preg_match ( '#\.\.|/#' , $foldername ) ) {
if ( mkdir ( './' . $foldername , 0755 , false ) ) {
$fp = fopen ( './' . $foldername . '/index.php' , 'w+' );
2013-02-09 11:30:16 +01:00
if ( ! fwrite ( $fp , " <?php require_once dirname(__DIR__).'/autoblog-0.3.php'; ?> " ) )
2013-02-05 00:08:17 +01:00
$error [] = " Impossible d'écrire le fichier index.php " ;
fclose ( $fp );
2013-02-09 12:40:50 +01:00
$fp = fopen ( './' . $foldername . '/vvb.ini' , 'w+' );
2013-02-05 00:08:17 +01:00
if ( ! fwrite ( $fp , ' [ VroumVroumBlogConfig ]
2013-02-09 11:30:16 +01:00
SITE_TYPE = " '. $sitetype .' "
2013-02-05 00:08:17 +01:00
SITE_TITLE = " '. $socialinstance .'-'. $socialaccount .' "
2013-02-09 12:40:50 +01:00
SITE_DESCRIPTION = " source: <a href= " '. $siteurl .' " >'. $socialaccount .'</a> "
2013-02-09 11:30:16 +01:00
SITE_URL = " '. $siteurl .' "
FEED_URL = " '. $rssurl .' "
ARTICLES_PER_PAGE = " 20 "
UPDATE_INTERVAL = " '. $update_interval .' "
UPDATE_TIMEOUT = " 30 " ' ) )
2013-02-05 00:08:17 +01:00
$error [] = " Impossible d'écrire le fichier vvb.ini " ;
fclose ( $fp );
2013-02-09 12:40:50 +01:00
$error [] = '<iframe width="1" height="1" frameborder="0" src="' . $foldername . '"></iframe><b style="color:darkgreen">AutoMicroblog <a href="' . $foldername . '">ajouté avec succès</a>.</b>' ;
2013-02-05 00:08:17 +01:00
}
else
$error [] = " Impossible de créer le répertoire. " ;
}
else
$error [] = " Nom de site invalide. " ;
}
}
if ( ! empty ( $_POST ) && empty ( $_POST [ 'socialinstance' ]) ) {
$error = array ();
if ( empty ( $_POST [ 'rssurl' ]))
{ $error [] = " Veuillez entrer l'adresse du flux. " ;}
if ( empty ( $_POST [ 'number' ]))
{ $error [] = " Le chiffre. Écrivez le chiffre. " ;}
if ( $_POST [ 'number' ] !== '17' )
{ $error [] = " C'est pas le bon chiffre. " ;}
if ( empty ( $error ))
{
$rssurl = DetectRedirect ( escape ( $_POST [ 'rssurl' ]));
if ( ! empty ( $_POST [ 'siteurl' ]))
{
// check done, writing out
$siteurl = escape ( $_POST [ 'siteurl' ]);
$foldername = sha1 ( NoProtocolSiteURL ( $siteurl )); $sitename = get_title_from_feed ( $rssurl );
if ( substr ( $siteurl , - 1 ) == '/' ){ $foldername2 = sha1 ( NoProtocolSiteURL ( substr ( $siteurl , 0 , - 1 ))); } else { $foldername2 = sha1 ( NoProtocolSiteURL ( $siteurl ) . '/' );}
$sitedomain1 = preg_split ( '/\//' , $siteurl , 0 ); $sitedomain2 = $sitedomain1 [ 2 ]; $sitedomain3 = explode ( " . " , $sitedomain2 ); $sitedomain3 = array_reverse ( $sitedomain3 ); $sitedomain = $sitedomain3 [ 1 ] . '.' . $sitedomain3 [ 0 ];
if ( file_exists ( $foldername ) || file_exists ( $foldername2 )) { die ( 'Erreur: l\'autoblog <a href="./' . $foldername . '/">existe déjà</a>.' ); }
if ( mkdir ( './' . $foldername , 0755 , false ) ) {
$fp = fopen ( './' . $foldername . '/index.php' , 'w+' );
2013-02-09 12:40:50 +01:00
if ( ! fwrite ( $fp , " <?php require_once dirname(__DIR__) . '/autoblog-0.3.php'; ?> " ) )
2013-02-05 00:08:17 +01:00
$error [] = " Impossible d'écrire le fichier index.php " ;
fclose ( $fp );
$fp = fopen ( './' . $foldername . '/vvb.ini' , 'w+' );
if ( ! fwrite ( $fp , ' [ VroumVroumBlogConfig ]
2013-02-09 11:30:16 +01:00
SITE_TYPE = " generic "
2013-02-05 00:08:17 +01:00
SITE_TITLE = " '. $sitename .' "
2013-02-09 12:40:50 +01:00
SITE_DESCRIPTION = " source: <a href= " '. $siteurl .' " >'. $sitename .'</a> "
2013-02-05 00:08:17 +01:00
SITE_URL = " '. $siteurl .' "
FEED_URL = " '. $rssurl .' "
2013-02-09 11:30:16 +01:00
ARTICLES_PER_PAGE = " 5 "
UPDATE_INTERVAL = " 3600 "
UPDATE_TIMEOUT = " 30 " ' ) )
2013-02-05 00:08:17 +01:00
$error [] = " Impossible d'écrire le fichier vvb.ini " ;
fclose ( $fp );
$error [] = '<iframe width="1" height="1" frameborder="0" src="' . $foldername . '"></iframe><b style="color:darkgreen">autoblog crée avec succès.</b> → <a target="_blank" href="' . $foldername . '">afficher l\'autoblog</a>' ;
}
else
$error [] = " Impossible de créer le répertoire. " ;
}
else
{
// checking procedure
$rssurl = DetectRedirect ( $rssurl );
2013-02-09 11:30:16 +01:00
$sitetype = 'generic' ;
2013-02-05 00:08:17 +01:00
$siteurl = get_link_from_feed ( $rssurl );
$foldername = sha1 ( NoProtocolSiteURL ( $siteurl ));
$sitename = get_title_from_feed ( $rssurl );
if ( substr ( $siteurl , - 1 ) == '/' ){ $foldername2 = sha1 ( NoProtocolSiteURL ( substr ( $siteurl , 0 , - 1 ))); } else { $foldername2 = sha1 ( NoProtocolSiteURL ( $siteurl ) . '/' );}
$sitedomain1 = preg_split ( '/\//' , $siteurl , 0 ); $sitedomain2 = $sitedomain1 [ 2 ]; $sitedomain3 = explode ( " . " , $sitedomain2 ); $sitedomain3 = array_reverse ( $sitedomain3 ); $sitedomain = $sitedomain3 [ 1 ] . '.' . $sitedomain3 [ 0 ];
if ( file_exists ( $foldername ) || file_exists ( $foldername2 )) { die ( 'Erreur: l\'autoblog <a href="./' . $foldername . '/">existe déjà</a>.' ); }
$form = ' < span style = " color:blue " > Merci de vérifier les informations suivantes , corrigez si nécessaire .</ span >< br >
< form method = " POST " >< input style = " color:black " type = " text " id = " sitename " value = " '. $sitename .' " disabled >< label for = " sitename " >& larr ; titre du site ( auto ) </ label >< br >
< input placeholder = " Adresse du site " type = " text " name = " siteurl " id = " siteurl " value = " '. $siteurl .' " >< label for = " siteurl " >& larr ; page d\ ' accueil ( auto ) </ label >< br >
< input placeholder = " Adresse du flux RSS/ATOM " type = " text " name = " rssurl " id = " rssurl " value = " '. $rssurl .' " >< label for = " rssurl " >& larr ; adresse du flux </ label >< br >
2013-02-09 11:30:16 +01:00
< input placeholder = " " Type de site " type= " text " name= " sitetype " id= " sitetype " value= " '.$sitetype.' " disabled><label for= " sitetype " >← type de site</label><br>
2013-02-05 00:08:17 +01:00
< input placeholder = " Antibot: \ 'dix sept \ ' en chiffre " type = " text " name = " number " id = " number " value = " 17 " >< label for = " number " >& larr ; antibot </ label >< br >< input type = " submit " value = " Créer " ></ form > ' ;
}
}
}
?>
<! DOCTYPE html >
< html lang = " en " dir = " ltr " >
< head >
< meta charset = " utf-8 " >
< title > Le Projet Autoblog </ title >
< style type = " text/css " >
body { background - color : #efefef;text-align:center;color:#333;font-family:sans-serif}
a { color : black ; text - decoration : none ; font - weight : bold ;}
a : hover { color : darkred ;}
h1 { text - align : center ; font - size : 40 pt ; text - shadow : #ccc 0px 5px 5px; }
h2 { text - align : center ; font - size : 16 pt ; margin : 0 0 1 em 0 ; font - style : italic ; text - shadow : #ccc 0px 5px 5px; }
. pbloc { background - color : white ; padding : 12 px 10 px 12 px 10 px ; border : 1 px solid #aaa;max-width:70em;margin:1em auto;text-align:justify;box-shadow:0px 5px 7px #aaa;}
input { width : 30 em ;}
input [ type = " radio " ] { width : 1 em ; }
2013-02-09 11:30:16 +01:00
input #socialaccount, input#statusneturl, input#shaarliurl, input#socialsub {width:12em;}
div . form { padding : 0.2 em ; margin : 1 px ;}
div . form : hover { background - color : #FAF4DA;border:1px dotted;margin:0; }
2013-02-05 00:08:17 +01:00
. vignette { width : 20 em ; height : 2 em ; float : left ; margin : 0 ; padding : 20 px ; background - color : #eee;border: 1px solid #888;}
. vignette : hover { background - color : #fff;}
. vignette . title { font - size : 14 pt ; text - shadow : #ccc 0px 5px 5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
. vignette . title a : hover { color : darkred ; text - decoration : none ;}
. vignette . source { font - size : x - small ; white - space : nowrap ; overflow : hidden ; text - overflow : ellipsis ;}
. vignette . source a : hover { color : darkred ; text - decoration : none ;}
. clear { clear : both ; text - align : right ; font - size : small ;}
#logo {float: right;}
. bouton { background : - moz - linear - gradient ( center top , #EDEDED 5%, #DFDFDF 100%) repeat scroll 0 0 #EDEDED;border: 1px none;padding: 10px;border: 1px solid #7777777;border-radius: 8px 8px 8px 8px;box-shadow: 0 1px 0 0 #FFFFFF inset;display: inline-block;}
</ style >
</ head >
< body >
< h1 > LE PROJET AUTOBLOG </ h1 >
< div class = " pbloc " >
< img id = " logo " src = " <?php if(isset( $logo )) { echo $logo ; }else { echo './icon-logo.svg'; } ?> " alt = " " >
< b > Note </ b >< br >
Voici une liste d 'autoblogs hébergés sur <i><?php echo $_SERVER[' SERVER_NAME ']; ?></i> (<a href="http://sebsauvage.net/streisand.me/fr/">plus d' infos sur le projet </ a > ) .< br >< br >
< b > Autres fermes </ b >< br >
& rarr ; < a href = " https://duckduckgo.com/?q=!g%20%22Voici%20une%20liste%20d'autoblogs%20hébergés%22 " > Rechercher </ a >< br >< br >
2013-02-09 11:30:16 +01:00
< div class = " form " >< b > Ajouter un compte social </ b >< br >< br >
2013-02-05 00:08:17 +01:00
< form method = " POST " >
< input class = " text " placeholder = " identifiant compte " type = " text " name = " socialaccount " id = " socialaccount " >< br >
< input type = " radio " name = " socialinstance " value = " twitter " > Twitter < br >
< input type = " radio " name = " socialinstance " value = " identica " > Identica < br >
2013-02-12 10:04:15 +01:00
< input type = " radio " name = " socialinstance " value = " statusnet " >< input placeholder = " statusnet.personnel.com " type = " text " name = " statusneturl " id = " statusneturl " >< br >
2013-02-09 11:30:16 +01:00
< input id = " socialsub " type = " submit " value = " Créer " >
</ form ></ div >< br >
< div class = " form " >< b > Ajouter un Shaarli </ b >< br >< br >
< form method = " POST " >
< input class = " text " placeholder = " identifiant compte " type = " hidden " name = " socialaccount " id = " socialaccount " value = " shaarli " >
2013-02-12 10:04:15 +01:00
< input type = " hidden " name = " socialinstance " value = " shaarli " >< input placeholder = " shaarli.personnel.com " type = " text " name = " shaarliurl " id = " shaarliurl " >< br >
2013-02-05 00:08:17 +01:00
< input id = " socialsub " type = " submit " value = " Créer " >
2013-02-09 11:30:16 +01:00
</ form ></ div >< br >
< div class = " form " >< b > Ajouter un site web </ b >< br >
2013-02-05 00:08:17 +01:00
< ? php
if ( ! empty ( $error )) {
echo '<p>Erreur(s) :</p><ul>' ;
foreach ( $error AS $value ) {
echo '<li>' . $value . '</li>' ;
}
echo '</ul>' ;
}
?>
Si vous souhaitez que < i >< ? php echo $_SERVER [ 'SERVER_NAME' ]; ?> </i> héberge un autoblog d'un site,<br/>remplissez le formulaire suivant:<br><br>
< ? php echo $form ; ?>
2013-02-09 11:30:16 +01:00
</ div >< br > Pour ajouter facillement un autoblog d 'un site web, glissez ce bouton dans votre barre de marque-pages => <a class="bouton" onclick="alert(' Glissez ce bouton dans votre barre de marque - pages ( ou clic - droit > marque - page sur ce lien ) ');return false;" href="javascript:(function(){var%20autoblog_url="<?php echo serverUrl().$_SERVER["REQUEST_URI"]; ?>";var%20popup=window.open("","Add%20autoblog",' height = 180 , width = 670 ');popup.document.writeln(' < html >< head ></ head >< body >< form % 20 action =& quot ; '+autoblog_url+' & quot ; % 20 method =& quot ; GET & quot ; > ');popup.document.write(' Url % 20 feed % 20 % 20 :% 20 < br /> ');var%20feed_links=new%20Array();var%20links=document.getElementsByTagName(' link ');if(links.length>0){for(var%20i=0;i<links.length;i++){if(links[i].rel=="alternate"){popup.document.writeln(' < label % 20 for =& quot ; feed_ '+i+' & quot ; >< input % 20 id =& quot ; feed_ '+i+' & quot ; % 20 type =& quot ; radio & quot ; % 20 name =& quot ; rssurl & quot ; % 20 value =& quot ; '+links[i].href+' & quot ; /> '+links[i].title+"%20(%20"+links[i].href+"%20)</label><br/>");}}}popup.document.writeln("<input%20id=' number '%20type=' hidden '%20name=' number '%20value=' 17 '>");popup.document.writeln("<input%20type=' hidden '%20name=' via_button '%20value=' 1 '>");popup.document.writeln("<br/><input%20type=' submit '%20value=' Vérifier '%20name=' Ajouter ' % 20 >& quot ;); popup . document . writeln ( & quot ; </ form ></ body ></ html >& quot ;);})(); " >Projet Autoblog</a>
2013-02-05 00:08:17 +01:00
</ div >
< div class = " pbloc " >
< h2 > Autoblogs hébergés </ h2 >
< div class = " clear " >< a href = " ?export " > export < sup > JSON </ sup ></ a ></ div >
< ? php
$directory = " ./ " ;
$subdirs = glob ( $directory . " * " );
$autoblogs = array ();
foreach ( $subdirs as $unit )
{
if ( is_dir ( $unit ))
{
$ini = parse_ini_file ( ROOT_DIR . '/' . $unit . '/vvb.ini' );
if ( $ini )
{
$config = new stdClass ;
$unit = substr ( $unit , 2 );
foreach ( $ini as $key => $value )
{
$key = strtolower ( $key );
$config -> $key = $value ;
}
$autoblogs [ $unit ] = '
< div class = " vignette " >
< div class = " title " >< a title = " '.escape( $config->site_title ).' " href = " '. $unit .'/ " >< img width = " 15 " height = " 15 " alt = " " src = " ./?check='. $unit .' " > '.escape($config->site_title).' </ a ></ div >
2013-02-09 11:30:16 +01:00
< div class = " source " >< a href = " '. $unit .'/vvb.ini " > config </ a > | '.escape($config->site_type).' source : < a href = " '.escape( $config->site_url ).' " > '.escape($config->site_url).' </ a ></ div >
2013-02-05 00:08:17 +01:00
</ div > ' ;
unset ( $ini );
}
}
}
if ( ! empty ( $autoblogs )){
sort ( $autoblogs , SORT_STRING );
foreach ( $autoblogs as $autoblog ) {
echo $autoblog ;
}
}
?>
< div class = " clear " ></ div >
2013-02-08 13:13:02 +01:00
< ? php echo " <br/> " . count ( $autoblogs ) . " autoblogs hébergés " ; ?>
2013-02-05 00:08:17 +01:00
</ div >
2013-02-08 13:13:02 +01:00
Propulsé par < a href = " https://github.com/mitsukarenai/ferme-autoblog " > Ferme d ' Autoblogs 0.3 . 0 </ a > de Mitsu et Oros ( Domaine Public )
2013-02-05 00:08:17 +01:00
< ? php if ( isset ( $HTML_footer )){ echo " <br/> " . $HTML_footer ; } ?>
2013-02-08 13:13:02 +01:00
< iframe width = " 1 " height = " 1 " style = " display:none " src = " xsaf3.php " ></ iframe >
2013-02-05 00:08:17 +01:00
</ body >
</ html >