Project

General

Profile

1
<?php
2

    
3
// $Id: save_post.php 66 2005-09-11 10:19:10Z stefan $
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
require('../../config.php');
27

    
28
// Get id
29
if(!isset($_POST['post_id']) OR !is_numeric($_POST['post_id'])) {
30
	header("Location: ".ADMIN_URL."/pages/index.php");
31
} else {
32
	$id = $_POST['post_id'];
33
	$post_id = $id;
34
}
35

    
36
// Include WB admin wrapper script
37
$update_when_modified = true; // Tells script to update when this page was last updated
38
require(WB_PATH.'/modules/admin.php');
39

    
40
// Validate all fields
41
if($admin->get_post('title') == '' AND $admin->get_post('url') == '') {
42
	$admin->print_error($MESSAGE['GENERIC']['FILL_IN_ALL'], WB_URL.'/modules/news/modify_post.php?page_id='.$page_id.'&section_id='.$section_id.'&post_id='.$id);
43
} else {
44
	$title = $admin->add_slashes($admin->get_post('title'));
45
	$short = $admin->add_slashes($admin->get_post('short'));
46
	$long = $admin->add_slashes($admin->get_post('long'));
47
	$commenting = $admin->get_post('commenting');
48
	$active = $admin->get_post('active');
49
	$old_link = $admin->get_post('link');
50
	$group_id = $admin->get_post('group');
51
}
52

    
53
// Get page link URL
54
$query_page = $database->query("SELECT level,link FROM ".TABLE_PREFIX."pages WHERE page_id = '$page_id'");
55
$page = $query_page->fetchRow();
56
$page_level = $page['level'];
57
$page_link = $page['link'];
58

    
59
// Include WB functions file
60
require(WB_PATH.'/framework/functions.php');
61

    
62
// Work-out what the link should be
63
$post_link = '/posts/'.page_filename($title).$post_id;
64

    
65
// Make sure the post link is set and exists
66
// Make news post access files dir
67
make_dir(WB_PATH.PAGES_DIRECTORY.'/posts/');
68
if(!is_writable(WB_PATH.PAGES_DIRECTORY.'/posts/')) {
69
	$admin->print_error($MESSAGE['PAGES']['CANNOT_CREATE_ACCESS_FILE']);
70
} elseif($old_link != $post_link OR !file_exists(WB_PATH.PAGES_DIRECTORY.$post_link.'.php')) {
71
	// We need to create a new file
72
	// First, delete old file if it exists
73
	if(file_exists(WB_PATH.$old_link.'.php')) {
74
		unlink(WB_PATH.$old_link.'.php');
75
	}
76
	// Specify the filename
77
	$filename = WB_PATH.PAGES_DIRECTORY.'/'.$post_link.'.php';
78
	// The depth of the page directory in the directory hierarchy
79
	// '/pages' is at depth 1
80
	$pages_dir_depth=count(explode('/',PAGES_DIRECTORY))-1;
81
	// Work-out how many ../'s we need to get to the index page
82
	$index_location = '../';
83
	for($i = 0; $i < $pages_dir_depth; $i++) {
84
		$index_location .= '../';
85
	}
86
	// Write to the filename
87
	$content = ''.
88
'<?php
89
$page_id = '.$page_id.';
90
$section_id = '.$section_id.';
91
$post_id = '.$post_id.';
92
define("POST_ID", $post_id);
93
require("'.$index_location.'config.php");
94
require(WB_PATH."/index.php");
95
?>';
96
	$handle = fopen($filename, 'w');
97
	fwrite($handle, $content);
98
	fclose($handle);
99
	change_mode($filename);
100
}
101

    
102
// Update row
103
$database->query("UPDATE ".TABLE_PREFIX."mod_news_posts SET group_id = '$group_id', title = '$title', link = '$post_link', content_short = '$short', content_long = '$long', commenting = '$commenting', active = '$active', posted_when = '".mktime()."', posted_by = '".$admin->get_user_id()."' WHERE post_id = '$post_id'");
104

    
105
// Check if there is a db error, otherwise say successful
106
if($database->is_error()) {
107
	$admin->print_error($database->get_error(), WB_URL.'/modules/news/modify_post.php?page_id='.$page_id.'&section_id='.$section_id.'&post_id='.$id);
108
} else {
109
	$admin->print_success($TEXT['SUCCESS'], ADMIN_URL.'/pages/modify.php?page_id='.$page_id);
110
}
111

    
112
// Print admin footer
113
$admin->print_footer();
114

    
115
?>
(23-23/27)