5 |
jpm |
1 |
<?php
|
|
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This library is free software; you can redistribute it and/or |
|
|
|
9 |
// | modify it under the terms of the GNU Lesser General Public |
|
|
|
10 |
// | License as published by the Free Software Foundation; either |
|
|
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
12 |
// | |
|
|
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
16 |
// | Lesser General Public License for more details. |
|
|
|
17 |
// | |
|
|
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
|
|
19 |
// | License along with this library; if not, write to the Free Software |
|
|
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
286 |
jpm |
22 |
// CVS : $Id: pap_envoi.inc.php,v 1.4 2005-02-28 11:20:42 jpm Exp $
|
5 |
jpm |
23 |
/**
|
|
|
24 |
* Gestion de l'envoie des pages à afficher.
|
|
|
25 |
*
|
|
|
26 |
* Ce fichier envoi les données en les compressant si possible.
|
|
|
27 |
*
|
|
|
28 |
*@package Papyrus
|
|
|
29 |
//Auteur original :
|
286 |
jpm |
30 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
31 |
//Autres auteurs :
|
5 |
jpm |
32 |
*@author Laurent COUDOUNEAU <lc@gsite.org>
|
|
|
33 |
*@copyright Tela-Botanica 2000-2004
|
286 |
jpm |
34 |
*@version $Revision: 1.4 $ $Date: 2005-02-28 11:20:42 $
|
5 |
jpm |
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | ENTÊTE du PROGRAMME |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
41 |
|
|
|
42 |
/** <BR> Inclusion de la bibliothèque de fonctions de compression des données à envoyer.*/
|
10 |
jpm |
43 |
include_once GEN_CHEMIN_BIBLIO.'pap_compression.fonct.php';
|
5 |
jpm |
44 |
|
|
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
46 |
// | CORPS du PROGRAMME |
|
|
|
47 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
48 |
$page_gzippe = GEN_compresserDonneesZLIB($_GEN_commun['sortie']);
|
|
|
49 |
// Nous mettons à jour le cache
|
67 |
jpm |
50 |
if (!empty($_GEN_commun['info_application']) && $_GEN_commun['info_application']->cache) {
|
5 |
jpm |
51 |
// Mise en cache de la page demandée
|
|
|
52 |
if ( ($page_gzippe != false) ) {
|
|
|
53 |
$contenu_en_cache = (empty($page_gzippe)) ? $_GEN_commun['sortie'] : $page_gzippe;
|
|
|
54 |
$requete = 'INSERT INTO gen_page_cache '.
|
|
|
55 |
'SET gpc_id_md5_url = "'.GEN_donnerMD5UriPostSession().'", '.
|
|
|
56 |
' gpc_ce_site = '.$_GEN_commun['site_info']->gsi_id_site.', '.
|
|
|
57 |
' gpc_ce_i18n = "'.$_GEN_commun['site_info']->gsi_id_i18n.'", '.
|
|
|
58 |
' gpc_corps = "'.mysql_escape_string($contenu_en_cache).'", '.
|
|
|
59 |
' gpc_date_heure = NOW(), '.
|
|
|
60 |
' gpc_taille = '.strlen($_GEN_commun['sortie']).', '.
|
|
|
61 |
' gpc_gz_taille = '.strlen($contenu_en_cache);
|
|
|
62 |
|
|
|
63 |
$resultat = $db->query($requete);
|
|
|
64 |
(DB::isError($resultat))
|
|
|
65 |
? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat->getMessage(), $requete))
|
|
|
66 |
: '';
|
|
|
67 |
}
|
|
|
68 |
}
|
|
|
69 |
// Si les données sont compréssées, nous essayons de réaliser un envoi au client.
|
|
|
70 |
if (!empty($page_gzippe)) {
|
|
|
71 |
if (GEN_envoyerDonneesCompressees($page_gzippe)) {
|
|
|
72 |
exit();
|
|
|
73 |
}
|
|
|
74 |
}
|
|
|
75 |
// La compression ne fonctionne pas ou les données ne sont pas compressées,
|
|
|
76 |
// nous envoyons directement la page.
|
|
|
77 |
echo($_GEN_commun['sortie']);
|
|
|
78 |
|
|
|
79 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
80 |
*
|
|
|
81 |
* $Log: not supported by cvs2svn $
|
286 |
jpm |
82 |
* Revision 1.3 2004/10/15 18:29:19 jpm
|
|
|
83 |
* Modif pour gérer l'appli installateur de Papyrus.
|
|
|
84 |
*
|
67 |
jpm |
85 |
* Revision 1.2 2004/06/16 15:07:56 jpm
|
|
|
86 |
* Correction d'un chemin et nom de fichier.
|
|
|
87 |
*
|
10 |
jpm |
88 |
* Revision 1.1 2004/06/16 08:11:37 jpm
|
|
|
89 |
* Changement de nom de Génésia en Papyrus.
|
|
|
90 |
* Changement de l'arborescence.
|
|
|
91 |
*
|
5 |
jpm |
92 |
* Revision 1.3 2004/04/28 12:04:31 jpm
|
|
|
93 |
* Changement du modèle de la base de données.
|
|
|
94 |
*
|
|
|
95 |
* Revision 1.2 2004/04/22 08:31:43 jpm
|
|
|
96 |
* Transformation de $GS_GLOBAL en $_GEN_commun.
|
|
|
97 |
*
|
|
|
98 |
* Revision 1.1 2004/04/09 16:19:23 jpm
|
|
|
99 |
* Ajout du fichier indépendant d'envoi avec gestion des tables i18n.
|
|
|
100 |
*
|
|
|
101 |
*
|
|
|
102 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
103 |
*/
|
|
|
104 |
?>
|