Project

General

Profile

1 4 ryan
<?php
2
3
// $Id: install.php,v 1.8 2005/04/02 06:25:53 rdjurovich Exp $
4
5
/*
6
7
 Website Baker Project <http://www.websitebaker.org/>
8
 Copyright (C) 2004-2005, Ryan Djurovich
9
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23
24
*/
25
26
// Check if user uploaded a file
27
if(!isset($_FILES['userfile'])) {
28
	header("Location: index.php");
29
}
30
31
// Setup admin object
32
require('../../config.php');
33
require_once(WB_PATH.'/framework/class.admin.php');
34
$admin = new admin('Addons', 'templates_install');
35
36
// Include the WB functions file
37
require_once(WB_PATH.'/framework/functions.php');
38
39
// Set temp vars
40
$temp_dir = WB_PATH.'/temp/';
41
$temp_file = $temp_dir . $_FILES['userfile']['name'];
42
$temp_unzip = WB_PATH.'/temp/unzip/';
43
44
// Try to upload the file to the temp dir
45
if(!move_uploaded_file($_FILES['userfile']['tmp_name'], $temp_file)) {
46
	$admin->print_error($MESSAGE['GENERIC']['CANNOT_UPLOAD']);
47
}
48
49
// Include the PclZip class file (thanks to
50
require_once(WB_PATH.'/include/pclzip/pclzip.lib.php');
51
52
// Remove any vars with name "template_directory"
53
unset($template_directory);
54
55
// Setup the PclZip object
56
$archive = new PclZip($temp_file);
57
// Unzip the files to the temp unzip folder
58
$list = $archive->extract(PCLZIP_OPT_PATH, $temp_unzip, PCLZIP_OPT_REMOVE_ALL_PATH);
59
// Include the templates info file
60
require($temp_unzip.'info.php');
61
// Delete the temp unzip directory
62
rm_full_dir($temp_unzip);
63
64
// Check if the file is valid
65
if(!isset($template_directory)) {
66
	if(file_exists($temp_file)) { unlink($temp_file); } // Remove temp file
67
	$admin->print_error($MESSAGE['GENERIC']['INVALID']);
68
}
69
70
// Check if a template with the same name already exists
71
if(is_dir(WB_PATH.'/templates/'.$template_directory)) {
72
	if(file_exists($temp_file)) { unlink($temp_file); } // Remove temp file
73
	$admin->print_error($MESSAGE['GENERIC']['ALREADY_INSTALLED']);
74
}
75
76
// Check if template dir is writable
77
if(!is_writable(WB_PATH.'/templates/')) {
78
	if(file_exists($temp_file)) { unlink($temp_file); } // Remove temp file
79
	$admin->print_error($MESSAGE['TEMPLATES']['BAD_PERMISSIONS']);
80
}
81
82
// Set template dir
83
$template_dir = WB_PATH.'/templates/'.$template_directory;
84
85
// Make sure the template dir exists, and chmod if needed
86
if(!file_exists($template_dir)) {
87
	make_dir($template_dir);
88
} else {
89
	change_mode($template_dir, 'dir');
90
}
91
92
// Unzip template to the template dir
93
$list = $archive->extract(PCLZIP_OPT_PATH, $template_dir, PCLZIP_OPT_REMOVE_ALL_PATH);
94
if(!$list) {
95
	$admin->print_error($MESSAGE['GENERIC']['CANNOT_UNZIP']);
96
}
97
98
// Delete the temp zip file
99
if(file_exists($temp_file)) { unlink($temp_file); }
100
101
// Chmod all the uploaded files
102
$dir = dir($template_dir);
103
while (false !== $entry = $dir->read()) {
104
	// Skip pointers
105
	if(substr($entry, 0, 1) != '.' AND $entry != 'CVS' AND !is_dir($template_dir.'/'.$entry)) {
106
		// Chmod file
107
		change_mode($template_dir.'/'.$entry);
108
	}
109
}
110
111
// Print success message
112
$admin->print_success($MESSAGE['GENERIC']['INSTALLED']);
113
114
// Print admin footer
115
$admin->print_footer();
116
117
?>