Skip to content
Extraits de code Groupes Projets
Valider 83b1766a rédigé par cerdic's avatar cerdic
Parcourir les fichiers

Report de [15200] [15204] [15205] [15206] [15207] [15208] [15209] [15211]

parent 84f1d60c
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -202,14 +202,14 @@ if (!class_exists('nanoSha2')) ...@@ -202,14 +202,14 @@ if (!class_exists('nanoSha2'))
* @param $ig_func Option param to ignore checking for php > 5.1.2 * @param $ig_func Option param to ignore checking for php > 5.1.2
* @return string Hexadecimal representation of the message digest * @return string Hexadecimal representation of the message digest
*/ */
function hash($str, $ig_func = false) function hash($str, $ig_func = true)
{ {
unset($binStr); // binary representation of input string unset($binStr); // binary representation of input string
unset($hexStr); // 256-bit message digest in readable hex format unset($hexStr); // 256-bit message digest in readable hex format
// check for php's internal sha256 function, ignore if ig_func==true // check for php's internal sha256 function, ignore if ig_func==true
if ($ig_func == false) { if ($ig_func == false) {
if (version_compare(PHP_VERSION,'5.1.2','>=')) { if (version_compare(PHP_VERSION,'5.1.2','>=') AND !defined('_NO_HASH_DEFINED')) {
return hash("sha256", $str, false); return hash("sha256", $str, false);
} else if (function_exists('mhash') && defined('MHASH_SHA256')) { } else if (function_exists('mhash') && defined('MHASH_SHA256')) {
return base64_encode(bin2hex(mhash(MHASH_SHA256, $str))); return base64_encode(bin2hex(mhash(MHASH_SHA256, $str)));
...@@ -385,12 +385,12 @@ if (!function_exists('str_split')) ...@@ -385,12 +385,12 @@ if (!function_exists('str_split'))
*/ */
// 2009-07-23: Added check for function as the Suhosin plugin adds this routine. // 2009-07-23: Added check for function as the Suhosin plugin adds this routine.
if (!function_exists('sha256')) { if (!function_exists('sha256')) {
function sha256($str, $ig_func = false) { function sha256($str, $ig_func = true) {
$obj = new nanoSha2((defined('_NANO_SHA2_UPPER')) ? true : false); $obj = new nanoSha2((defined('_NANO_SHA2_UPPER')) ? true : false);
return $obj->hash($str, $ig_func); return $obj->hash($str, $ig_func);
} }
} else { } else {
function _nano_sha256($str, $ig_func = false) { function _nano_sha256($str, $ig_func = true) {
$obj = new nanoSha2((defined('_NANO_SHA2_UPPER')) ? true : false); $obj = new nanoSha2((defined('_NANO_SHA2_UPPER')) ? true : false);
return $obj->hash($str, $ig_func); return $obj->hash($str, $ig_func);
} }
...@@ -399,6 +399,7 @@ if (!function_exists('sha256')) { ...@@ -399,6 +399,7 @@ if (!function_exists('sha256')) {
// support to give php4 the hash() routine which abstracts this code. // support to give php4 the hash() routine which abstracts this code.
if (!function_exists('hash')) if (!function_exists('hash'))
{ {
define('_NO_HASH_DEFINED',true);
function hash($algo, $data) function hash($algo, $data)
{ {
if (empty($algo) || !is_string($algo) || !is_string($data)) { if (empty($algo) || !is_string($algo) || !is_string($data)) {
......
...@@ -59,19 +59,21 @@ function liste_plugin_files($dir_plugins = null){ ...@@ -59,19 +59,21 @@ function liste_plugin_files($dir_plugins = null){
// http://doc.spip.org/@plugin_version_compatible // http://doc.spip.org/@plugin_version_compatible
function plugin_version_compatible($intervalle,$version){ function plugin_version_compatible($intervalle,$version){
if (!strlen($intervalle)) return true; if (!strlen($intervalle)) return true;
if (!preg_match(',^[\[\(]([0-9.a-zRC\s]*)[;]([0-9.a-zRC\s]*)[\]\)]$,',$intervalle,$regs)) return false; if (!preg_match(',^[\[\(]([0-9.a-zRC\s\-]*)[;]([0-9.a-zRC\s\-]*)[\]\)]$,',$intervalle,$regs)) return false;
$mineure = $regs[1]; #var_dump("$version::$intervalle");
$majeure = $regs[2]; $minimum = $regs[1];
$mineure_inc = $intervalle{0}=="["; $maximum = $regs[2];
$majeure_inc = substr($intervalle,-1)=="]"; $minimum_inc = $intervalle{0}=="[";
#var_dump("$mineure_inc-$mineure-$majeure-$majeure_inc"); $maximum_inc = substr($intervalle,-1)=="]";
if (strlen($mineure)){ #var_dump("$version::$minimum_inc::$minimum::$maximum::$maximum_inc");
if ($mineure_inc AND version_compare($version,$mineure,'<')) return false; #var_dump(version_compare($version,$minimum,'<'));
if (!$mineure_inc AND version_compare($version,$mineure,'<=')) return false; if (strlen($minimum)){
if ($minimum_inc AND version_compare($version,$minimum,'<')) return false;
if (!$minimum_inc AND version_compare($version,$minimum,'<=')) return false;
} }
if (strlen($majeure)){ if (strlen($maximum)){
if ($majeure_inc AND version_compare($version,$majeure,'>')) return false; if ($maximum_inc AND version_compare($version,$maximum,'>')) return false;
if (!$majeure_inc AND version_compare($version,$majeure,'>=')) return false; if (!$maximum_inc AND version_compare($version,$maximum,'>=')) return false;
} }
return true; return true;
} }
...@@ -114,7 +116,7 @@ function erreur_necessite($n, $liste) { ...@@ -114,7 +116,7 @@ function erreur_necessite($n, $liste) {
// Necessite SPIP version x ? // Necessite SPIP version x ?
if ($id=='SPIP') { if ($id=='SPIP') {
if (!plugin_version_compatible($need['version'], if (!plugin_version_compatible($need['version'],
$GLOBALS['spip_version_branche'].".".$GLOBALS['spip_version_code'])) { $GLOBALS['spip_version_branche'])) {
$msg .= "<li>" $msg .= "<li>"
._T('plugin_necessite_spip', ._T('plugin_necessite_spip',
array('version' => $need['version']) array('version' => $need['version'])
...@@ -361,7 +363,7 @@ function ecrire_plugin_actifs($plugin,$pipe_recherche=false,$operation='raz') { ...@@ -361,7 +363,7 @@ function ecrire_plugin_actifs($plugin,$pipe_recherche=false,$operation='raz') {
$prefix = strtoupper(preg_replace(',\W,','_',$info['prefix'])); $prefix = strtoupper(preg_replace(',\W,','_',$info['prefix']));
$splugs .= "define('_DIR_PLUGIN_$prefix',$dir); "; $splugs .= "define('_DIR_PLUGIN_$prefix',$dir); ";
foreach($info['path'] as $chemin){ foreach($info['path'] as $chemin){
if (!isset($chemin['version']) OR plugin_version_compatible($chemin['version'],$GLOBALS['spip_version_branche'].".".$GLOBALS['spip_version_code'])){ if (!isset($chemin['version']) OR plugin_version_compatible($chemin['version'],$GLOBALS['spip_version_branche'])){
if (isset($chemin['type'])) if (isset($chemin['type']))
$splugs .= "if (".(($chemin['type']=='public')?"":"!")."_DIR_RESTREINT) "; $splugs .= "if (".(($chemin['type']=='public')?"":"!")."_DIR_RESTREINT) ";
$dir = $chemin['dir']; $dir = $chemin['dir'];
......
...@@ -22,8 +22,10 @@ function plugins_afficher_plugin_dist($url_page, $plug_file, $actif, $expose=fal ...@@ -22,8 +22,10 @@ function plugins_afficher_plugin_dist($url_page, $plug_file, $actif, $expose=fal
$erreur = false; $erreur = false;
$s = ""; $s = "";
$force_reload = (_request('var_mode')=='recalcul'?true:false);
$get_infos = charger_fonction('get_infos','plugins'); $get_infos = charger_fonction('get_infos','plugins');
$info = $get_infos($plug_file); $info = $get_infos($plug_file, $force_reload, $dir_plugins);
// numerotons les occurences d'un meme prefix // numerotons les occurences d'un meme prefix
$versions[$info['prefix']] = isset($versions[$info['prefix']]) ? $versions[$info['prefix']] + 1 : ''; $versions[$info['prefix']] = isset($versions[$info['prefix']]) ? $versions[$info['prefix']] + 1 : '';
...@@ -175,4 +177,4 @@ function affiche_bloc_plugin($plug_file, $info, $dir_plugins=null) { ...@@ -175,4 +177,4 @@ function affiche_bloc_plugin($plug_file, $info, $dir_plugins=null) {
return $s; return $s;
} }
?> ?>
\ No newline at end of file
...@@ -22,7 +22,7 @@ function plugins_verifie_conformite_dist($plug, &$arbre, $dir_plugins = _DIR_PLU ...@@ -22,7 +22,7 @@ function plugins_verifie_conformite_dist($plug, &$arbre, $dir_plugins = _DIR_PLU
// chercher la declaration <plugin spip='...'> a prendre pour cette version de SPIP // chercher la declaration <plugin spip='...'> a prendre pour cette version de SPIP
if ($n = spip_xml_match_nodes(",^plugin(\s|$),", $arbre, $matches)){ if ($n = spip_xml_match_nodes(",^plugin(\s|$),", $arbre, $matches)){
// version de SPIP // version de SPIP
$vspip = $GLOBALS['spip_version_branche'].".".$GLOBALS['spip_version_code']; $vspip = $GLOBALS['spip_version_branche'];
foreach($matches as $tag=>$sous){ foreach($matches as $tag=>$sous){
list($tagname,$atts) = spip_xml_decompose_tag($tag); list($tagname,$atts) = spip_xml_decompose_tag($tag);
if ($tagname=='plugin' AND is_array($sous)){ if ($tagname=='plugin' AND is_array($sous)){
...@@ -148,4 +148,4 @@ function plugins_verifie_conformite_dist($plug, &$arbre, $dir_plugins = _DIR_PLU ...@@ -148,4 +148,4 @@ function plugins_verifie_conformite_dist($plug, &$arbre, $dir_plugins = _DIR_PLU
} }
} }
?> ?>
\ No newline at end of file
...@@ -148,11 +148,10 @@ if (isset($GLOBALS['_INC_PUBLIC'])) { ...@@ -148,11 +148,10 @@ if (isset($GLOBALS['_INC_PUBLIC'])) {
// type tableau pour y mettre des choses au besoin. // type tableau pour y mettre des choses au besoin.
$debug = ((_request('var_mode') == 'debug') OR $tableau_des_temps) ? array(1) : array(); $debug = ((_request('var_mode') == 'debug') OR $tableau_des_temps) ? array(1) : array();
$affiche_boutons_admin = (( $affiche_boutons_admin = ($html AND ((
isset($_COOKIE['spip_admin']) isset($_COOKIE['spip_admin'])
AND !$flag_preserver AND !$flag_preserver
AND $html ) OR $debug));
) OR $debug);
if ($affiche_boutons_admin) if ($affiche_boutons_admin)
include_spip('balise/formulaire_admin'); include_spip('balise/formulaire_admin');
......
...@@ -133,13 +133,21 @@ function cache_valide(&$page, $date) { ...@@ -133,13 +133,21 @@ function cache_valide(&$page, $date) {
return 0; return 0;
} }
function cache_sessionne($chemin_cache, $creer=false) { function cache_sessionne($chemin_cache, $session, $creer=false) {
$fs = substr(md5($chemin_cache),0,8); $fs = substr(md5($chemin_cache),0,8);
$a = substr($fs,0,1); $a = substr($fs,0,1);
$b = sous_repertoire(_DIR_CACHE, $a); $b = sous_repertoire(_DIR_CACHE, $a);
if ($creer) // si la session n'est pas anonyme, creer un sous dossier
sous_repertoire($b, $fs); // car spip est susceptible de generer auant de caches que de visiteur identifie
return $a.'/'.$fs.'/_'; if ($session){
if ($creer)
sous_repertoire($b, $fs);
return $a.'/'.$fs.'/_'.$session;
}
// sinon un simple fichier suffixe par _anonyme
else {
return $a.'/'.$fs.'_anonyme';
}
} }
// Creer le fichier cache // Creer le fichier cache
...@@ -154,7 +162,7 @@ function creer_cache(&$page, &$chemin_cache) { ...@@ -154,7 +162,7 @@ function creer_cache(&$page, &$chemin_cache) {
if (isset($page['invalideurs']) if (isset($page['invalideurs'])
AND isset($page['invalideurs']['session'])) { AND isset($page['invalideurs']['session'])) {
supprimer_fichier(_DIR_CACHE . $chemin_cache); supprimer_fichier(_DIR_CACHE . $chemin_cache);
$chemin_cache = cache_sessionne($chemin_cache, true).$page['invalideurs']['session']; $chemin_cache = cache_sessionne($chemin_cache,$page['invalideurs']['session'], true);
} }
...@@ -234,7 +242,7 @@ function public_cacher_dist($contexte, &$use_cache, &$chemin_cache, &$page, &$la ...@@ -234,7 +242,7 @@ function public_cacher_dist($contexte, &$use_cache, &$chemin_cache, &$page, &$la
$chemin_cache = generer_nom_fichier_cache($contexte, $page); $chemin_cache = generer_nom_fichier_cache($contexte, $page);
$lastmodified = 0; $lastmodified = 0;
if (!lire_fichier(_DIR_CACHE . ($f = $chemin_cache), $page)) if (!lire_fichier(_DIR_CACHE . ($f = $chemin_cache), $page))
$fs = lire_fichier(_DIR_CACHE . ($f = cache_sessionne($f).spip_session()), $page); $fs = lire_fichier(_DIR_CACHE . ($f = cache_sessionne($f, spip_session())), $page);
// HEAD : cas sans jamais de calcul pour raisons de performance // HEAD : cas sans jamais de calcul pour raisons de performance
if ($_SERVER['REQUEST_METHOD'] == 'HEAD') { if ($_SERVER['REQUEST_METHOD'] == 'HEAD') {
......
...@@ -82,7 +82,7 @@ function formulaires_mot_de_passe_traiter_dist($id_auteur=null){ ...@@ -82,7 +82,7 @@ function formulaires_mot_de_passe_traiter_dist($id_auteur=null){
&& ($id_auteur = $row['id_auteur']) && ($id_auteur = $row['id_auteur'])
&& ($oubli = _request('oubli'))) { && ($oubli = _request('oubli'))) {
include_spip('action/editer_auteur'); include_spip('action/editer_auteur');
instituer_auteur($id_auteur, array('pass'=>$oubli)); auteurs_set($id_auteur, array('pass'=>$oubli,'cookie_oubli'=>''));
$login = $row['login']; $login = $row['login'];
$message = "<b>" . _T('pass_nouveau_enregistre') . "</b>". $message = "<b>" . _T('pass_nouveau_enregistre') . "</b>".
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter