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
|
<?php
/**
* Elgg blog: add post action
*
* @package ElggBlog
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd <info@elgg.com>
* @copyright Curverider Ltd 2008-2009
* @link http://elgg.org/
*/
// Make sure we're logged in (send us to the front page if not)
gatekeeper();
// Make sure action is secure
action_gatekeeper();
// Get input data
$title = get_input('blogtitle');
$body = get_input('blogbody');
$tags = get_input('blogtags');
$access = get_input('access_id');
//there are three options for an excerpt 1) the user adds one 2) the user uses the {{more}} options
//3) we take the first 50 words - check for the excerpt first, then the more option, then grab 50 words
$excerpt = get_input('blogexcerpt');
if($excerpt){
if(strlen($excerpt) > 300)
$excerpt = substr($excerpt, 0, strpos($excerpt, ' ', 300));
else
$excerpt = $excerpt;
$show_excerpt = true;
}
//if(!$excerpt){
//if no user excerpt,check for the {{more}} option in the post
// $excerpt = explode("{{more}}", $body);
// $excerpt = $excerpt[0];
//}
if(!$excerpt){
//grab the first 300 characters
if(strlen($body) > 300)
$excerpt = substr($body, 0, strpos($body, ' ', 300)) . "...";
else
$excerpt = $body;
$show_excerpt = false;
}
$comments_on = get_input('comments_select','Off');
// Cache to the session
$_SESSION['user']->blogtitle = $title;
$_SESSION['user']->blogbody = $body;
$_SESSION['user']->blogtags = $tags;
// Convert string of tags into a preformatted array
$tagarray = string_to_tag_array($tags);
// Make sure the title / description aren't blank
if (empty($title) || empty($body)) {
register_error(elgg_echo("blog:blank"));
forward($_SERVER['HTTP_REFERER']);
// Otherwise, save the blog post
} else {
// Initialise a new ElggObject
$blog = new ElggObject();
// Tell the system it's a blog post
$blog->subtype = "blog";
// Set its owner to the current user
$blog->owner_guid = $_SESSION['user']->getGUID();
// Set it's container
$blog->container_guid = (int)get_input('container_guid', $_SESSION['user']->getGUID());
// For now, set its access to public (we'll add an access dropdown shortly)
$blog->access_id = $access;
// Set its title and description appropriately
$blog->title = $title;
$blog->description = $body;
// Before we can set metadata, we need to save the blog post
if (!$blog->save()) {
register_error(elgg_echo("blog:error"));
forward($_SERVER['HTTP_REFERER']);
}
// Now let's add tags. We can pass an array directly to the object property! Easy.
if (is_array($tagarray)) {
$blog->tags = $tagarray;
}
$blog->comments_on = $comments_on; //whether the users wants to allow comments or not on the blog post
$blog->excerpt = $excerpt;
$blog->show_excerpt = $show_excerpt;
// Success message
system_message(elgg_echo("blog:posted"));
// add to river
add_to_river('river/object/blog/create','create',$_SESSION['user']->guid,$blog->guid);
// Remove the blog post cache
//unset($_SESSION['blogtitle']); unset($_SESSION['blogbody']); unset($_SESSION['blogtags']);
remove_metadata($_SESSION['user']->guid,'blogtitle');
remove_metadata($_SESSION['user']->guid,'blogbody');
remove_metadata($_SESSION['user']->guid,'blogtags');
// Forward to the main blog page
$page_owner = get_entity($blog->container_guid);
if ($page_owner instanceof ElggUser)
$username = $page_owner->username;
else if ($page_owner instanceof ElggGroup)
$username = "group:" . $page_owner->guid;
forward("pg/blog/$username");
}
?>
|