-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpost-create.php
More file actions
executable file
·136 lines (115 loc) · 4.93 KB
/
post-create.php
File metadata and controls
executable file
·136 lines (115 loc) · 4.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
/*
Qikblogger is a multi-user multi-blog engine (PHP + MySQL/PostgreSQL/SQLite)
with support for permalinks, tags, RSS and customised themes.
This file is part of Qikblogger.
Copyright (c) 2006 Akshay Surve
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Contact: ak47surve@yahoo.com
Website: http://qikblogger.sourceforge.net
Blog: http://qikblogger.blogspot.com
*/
// example usage: post-create.php?blog_name=qb
session_start();
// include config file
require_once("config.php");
// include files
require_once(INC_ROOT."/dblayer.php");
require_once(INC_ROOT."/system.php");
require_once(INC_ROOT."/users.php");
require_once(INC_ROOT."/blogs.php");
require_once(INC_ROOT."/posts.php");
require_once(INC_ROOT."/menu.php");
// initialise db access
global $db;
$db = new MySQL();
$db->connect();
$redirect_to = WEB_ROOT.'/login.php';
$showform = false;
$err_msg = '';
$critical_err_msg = '';
$status_msg = '';
if ( !is_login() ) { // not logged in
header("Location: http://" . $_SERVER['HTTP_HOST'] .$redirect_to);
} else { // logged in
$qb_title = 'Qikblogger : Create a Post';
include("inc/header-meta.inc");
$u = new User();
$u = user_load('',$_SESSION['username']);
if( isset($_GET['blog_name']) ) { // continue
$blog_name = html_entity_decode(strtolower(trim($_GET['blog_name'])));
$u->set_user_type($blog_name);
if ( $CUR_USER == BLOG_OWNER || $CUR_USER == BLOG_MOD ) { // proceed
$b = new Blog();
$b = blog_load($blog_name);
if ( isset($_POST['publish']) ) { //process form
$title = mysql_real_escape_string(trim($_POST['title']));
$content = $_POST['content'];
// process content \r\n and \n
$content = str_replace("\r\n","<br />",$content); // for windows systems
$content = str_replace("\n","<br />",$content); // for other systems
$content = mysql_real_escape_string(trim($content));
$allow_comments = $_POST['allow_comments'];
if ( $allow_comments == 'Yes' ) {
$allow_comments = true;
} else {
$allow_comments = false;
}
$postHour = mysql_real_escape_string(trim($_POST['postHour']));
$postMinute = mysql_real_escape_string(trim($_POST['postMinute']));
$postSecond = mysql_real_escape_string(trim($_POST['postSecond']));
$postMonth = mysql_real_escape_string(trim($_POST['postMonth']));
$postDay = mysql_real_escape_string(trim($_POST['postDay']));
$postYear = mysql_real_escape_string(trim($_POST['postYear']));
$tags = mysql_real_escape_string(trim($_POST['tags']));
$disp_dt = $postYear."-".$postMonth."-".$postDay." ".$postHour.":".$postMinute.":".$postSecond;
$p = new Post();
if ( !$title || !$content ) { // validation
$showform = true;
$err_msg = 'Title and Content is compulsary';
} else {
$p = post_new($b->blog_name, $title, $content, $disp_dt, $u->user_id, $tags, $allow_comments);
$showform = false;
$status_msg = "Your post titled <strong>$p->title</strong> has been sucessfully published.";
}
} else { // show form
$showform = true;
}
} else { // cant proceed you need to be a owner or mod
//echo $CUR_USER;
$critical_err_msg='You should be a Blog Moderator';//header("Location: http://" . $_SERVER['HTTP_HOST'] .$redirect_to);
}
} else { //you have come nowhere !
$critical_err_msg = 'In a hurry kya? ';
}
}
if ( $showform == true ) {
include("inc/qb-dynamic-header.inc");
$page_name = 'post-create';
get_menus($page_name,$b);
include("inc/grey-header.inc");
include("inc/content-post-create.inc");
include("inc/content-footer.inc");
include("inc/grey-footer.inc");
include("inc/qb-static-footer.inc");
} else {
include("inc/qb-dynamic-header.inc");
$page_name = 'post-create';
get_menus($page_name,$b);
include("inc/grey-header.inc");
include("inc/content-status.inc");
include("inc/content-footer.inc");
include("inc/grey-footer.inc");
include("inc/qb-static-footer.inc");
}
?>