]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/getYUIComboFile.php
Release 6.5.0
[Github/sugarcrm.git] / include / javascript / getYUIComboFile.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 if (empty($_REQUEST)) die();
39
40 $yui_path = array(
41     "2.9.0" => "include/javascript/yui",
42         "2_9_0" => "include/javascript/yui",
43         "3.3.0" => "include/javascript/yui3",
44         "3_3_0" => "include/javascript/yui3"
45 );
46 $types = array(
47     "js" => "application/x-javascript",
48         "css" => "text/css",
49 );
50 $out = "";
51
52 $contentType = "";
53 $allpath = "";
54
55 foreach ($_REQUEST as $param => $val)
56 {
57         //No backtracking in the path
58         if (strpos($param, "..") !== false)
59         continue;
60
61         $version = explode("/", $param);
62         $version = $version[0];
63     if (empty($yui_path[$version])) continue;
64
65     $path = $yui_path[$version] . substr($param, strlen($version));
66
67         $extension = substr($path, strrpos($path, "_") + 1);
68
69         //Only allowed file extensions
70         if (empty($types[$extension]))
71            continue;
72
73         if (empty($contentType))
74     {
75         $contentType = $types[$extension];
76     }
77         //Put together the final filepath
78         $path = substr($path, 0, strrpos($path, "_")) . "." . $extension;
79         $contents = '';
80         if (is_file($path)) {
81            $out .= "/*" . $path . "*/\n";
82            $contents =  file_get_contents($path);
83            $out .= $contents . "\n";
84         }
85         $path = empty($contents) ? $path : $contents;
86         $allpath .= md5($path);
87 }
88
89 $etag = '"'.md5($allpath).'"';
90
91 // try to use the content cached locally if it's the same as we have here.
92 header("Cache-Control: private");
93 header("Pragma: dummy=bogus");
94 header("Etag: $etag");
95 header('Expires: ' . gmdate('D, d M Y H:i:s \G\M\T', time() + 2592000));
96 header("Content-Type: $contentType");
97 echo ($out);