$ranges) { $len_code = strlen($code); if ($code == ${"sTmp".$len_code}) { $seg1 = $code; break; } } } if ($seg1==="") { $seg1 = $sTmp5; } $isbn = preg_replace("/^$seg1/", '', $isbn); // calcul du segment de l'éditeur $seg2=$isbn; if (isset($array_isbn_ranges[$seggBis][$seg1])) { foreach($array_isbn_ranges[$seggBis][$seg1] as $motif){ $tmpRange=explode("-",$motif); $strlen=strlen($tmpRange[0]); $sTmp = substr($isbn, 0, $strlen) - 0; if(($sTmp>=(int)$tmpRange[0])&&($sTmp<=(int)$tmpRange[1])){ $seg2 = substr($isbn, 0, $strlen); break; } } } $isbn = preg_replace("/^$seg2/", '', $isbn); $key = substr($isbn, strlen($isbn) - 1, 1); $seg3 = substr($isbn, 0, strlen($isbn) - 1); $isbn = ($segg?$segg."-":"")."$seg1-$seg2-$seg3-$key"; if (!$taille) return $isbn; else { if ($taille==10) { //C'est un 13, on recalcule la clef pour le 10 if ($segg) { $key=key10($seg1.$seg2.$seg3); return "$seg1-$seg2-$seg3-$key"; } else return $isbn; } else if ($taille==13) { //C'est un 10, on recalcule la clef if (!$segg) { $segg="978"; $key=key13($segg.$seg1.$seg2.$seg3); return "$segg-$seg1-$seg2-$seg3-$key"; } else return $isbn; } } } function load_isbn_ranges() { global $include_path,$base_path,$charset, $KEY_CACHE_FILE_XML; $array_isbn_ranges = array(); $xmlFile=$include_path."/notice/isbn_ranges.xml"; // Gestion de fichier subst $xmlFile_subst=substr($xmlFile,0,-4)."_subst.xml"; if (file_exists($xmlFile_subst)){ $xmlFile=$xmlFile_subst; } $fileInfo = pathinfo($xmlFile); $tempFile = $base_path."/temp/XML".preg_replace("/[^a-z0-9]/i","",$fileInfo['dirname'].$fileInfo['filename'].$charset).".tmp"; $dejaParse=false; $cache_php=cache_factory::getCache(); $key_file=""; if($cache_php){ $key_file=getcwd().$xmlFile.filemtime($xmlFile); if($xmlFile_subst && file_exists($xmlFile_subst)){ $key_file.=filemtime($xmlFile_subst); } $key_file=$KEY_CACHE_FILE_XML.md5($key_file); if($tmp_key = $cache_php->getFromCache($key_file)){ if($array_isbn_ranges = $cache_php->getFromCache($tmp_key)){ $dejaParse = true; } } } if (!$dejaParse && (!file_exists($tempFile) || (filemtime($xmlFile) > filemtime($tempFile)))) { //Le fichier XML original a-t-il été modifié ultérieurement ? //on va re-générer le pseudo-cache if(file_exists($tempFile)){ unlink($tempFile); } //Parse le fichier dans un tableau $fp=fopen($xmlFile,"r") or die("Can't find XML file $xmlFile"); $xml=fread($fp,filesize($xmlFile)); fclose($fp); $param=_parser_text_no_function_($xml, "RANGES"); //Récupération des éléments for ($i=0; $isetInCache($key_file_content, $array_isbn_ranges); $cache_php->setInCache($key_file,$key_file_content); }else{ $tmp = fopen($tempFile, "wb"); fwrite($tmp,serialize($array_isbn_ranges)); fclose($tmp); } } else if (file_exists($tempFile)){ $tmp = fopen($tempFile, "r"); $array_isbn_ranges = unserialize(fread($tmp,filesize($tempFile))); fclose($tmp); } return $array_isbn_ranges; } //----LLIUREX 21/12/2021: Added $taille=""------ function z_formatISBN($isbn,$taille="") { return formatISBN($isbn,$taille); } function isEAN($ean) { $checksum=0; $ean = preg_replace('/-|\.| /', '', $ean); if(!preg_match('/^978[0-9]|^979[0-9]/', $ean)) return FALSE; if(strlen($ean) != 13) return FALSE; for($i = 0; $i < 13; $i = $i + 2) { $checksum += $ean[$i]; } for($i = 1; $i < 13; $i = $i + 2) { $checksum += $ean[$i] * 3; } if($checksum % 10 == 0) return TRUE; return FALSE; } function EANtoISBN10($ean) { $checksum=0; // on contrôle si cela la conversion est applicable if (!isEAN($ean)) return ''; if(!preg_match('/^978[0-9]/', $ean)) return ''; $isbn = preg_replace('/^978|[0-9]$/', '', $ean); // calcul de la clé for ($i = 0; $i < strlen($isbn) ; $i++) { $checksum += (10 - $i) * substr($isbn, $i, 1); } $key = 11 - $checksum % 11; if($key == 10) $key = 'X'; if($key == 11) $key = '0'; // traitement du code géographique $sTmp1 = substr($isbn, 0, 1) - 0; $sTmp2 = substr($isbn, 0, 2) - 0; $sTmp3 = substr($isbn, 0, 3) - 0; $sTmp4 = substr($isbn, 0, 4) - 0; $sTmp5 = substr($isbn, 0, 5) - 0; if($sTmp1 <= 7) { $seg1 = $sTmp1; } else { if($sTmp2 <= 94) { $seg1 = $sTmp2; } else { if($sTmp3 <= 995) { $seg1 = $sTmp3; } else { if($sTmp4 <= 9989) { $seg1 = $sTmp4; } else { $seg1 = $sTmp5; } } } } $isbn = preg_replace("/^$seg1/", '', $isbn); // calcul du segment de l'éditeur $sTmp2 = substr($isbn, 0, 2) - 0; $sTmp3 = substr($isbn, 0, 3) - 0; $sTmp4 = substr($isbn, 0, 4) - 0; $sTmp5 = substr($isbn, 0, 5) - 0; $sTmp6 = substr($isbn, 0, 6) - 0; $sTmp7 = substr($isbn, 0, 7) - 0; if($sTmp2 <= 19) { $seg2 = substr($isbn, 0, 2); } else { if($sTmp3 <= 699) { $seg2 = substr($isbn, 0, 3); } else { if($sTmp4 <= 8399) { $seg2 = substr($isbn, 0, 4); } else { if($sTmp5 <= 89999) { $seg2 = substr($isbn, 0, 5); } else { if($sTmp6 <= 9499999) { $seg2 = substr($isbn, 0, 6); } else { $seg2 = substr($isbn, 0, 7); } } } } } $seg3 = preg_replace("/^$seg2/", '', $isbn); $isbn = "$seg1-$seg2-$seg3-$key"; return $isbn; } function EANtoISBN($ean) { // on contrôle si cela la conversion est applicable if (!isEAN($ean)) return ''; return formatISBN($ean); } function z_EANtoISBN($ean) { // on contrôle si cela la conversion est applicable if (!isEAN($ean)) return ''; return z_formatISBN($ean); } function traite_code_isbn ($saisieISBN="") { if($saisieISBN) { if(isEAN($saisieISBN)) { // la saisie est un EAN -> on tente de le formater en ISBN $code = EANtoISBN($saisieISBN); // si échec, on prend l'EAN comme il vient if(!$code) $code = $saisieISBN; } else { if(isISBN($saisieISBN)) { // si la saisie est un ISBN $code = formatISBN($saisieISBN); // si échec, ISBN erroné on le prend sous cette forme if(!$code) $code = $saisieISBN; } else { // ce n'est rien de tout ça, on prend la saisie telle quelle $code = $saisieISBN; } } return $code ; } return ""; } //Pour vérifier un ISSN function isISSN($issn) { $checksum=0; // s'il y a des lettres, pas un ISSN if(preg_match('/[A-WY-Z]/i', $issn)) return FALSE; $issn = preg_replace('/-|\.| /', '', $issn); //Plus de 8 digits, pas un ISSN if (strlen($issn)!=8) return FALSE; $key = $issn[strlen($issn) - 1]; if(strtoupper($key) == 'X') $key = 10; $issn = substr($issn, 0, strlen($issn) - 1); // vérification de la clé for($i = 0; $i < strlen($issn) ; $i++) { $checksum += (8 - $i) * $issn[$i]; } $checksum += $key; if (($checksum%11) == 0) return TRUE ; else return FALSE ; } //retourne un code issn formate correctement ou le code saisi si ce n'est pas un issn function traite_code_ISSN($issn) { if ($issn) { if (isISSN($issn)) { $issn = preg_replace("/[^0-9|X]/i", '', $issn); $issn = str_replace('x','X',$issn); $issn=substr($issn,0,4).'-'.substr($issn,4,4); return $issn; } else return $issn; } return ''; }