Moodle release 2.4.11
[moodle.git] / blog / index.php
blobf359e3d99f1db70a8a238190183d89a828c696ef
1 <?php
3 /**
4 * file index.php
5 * index page to view blogs. if no blog is specified then site wide entries are shown
6 * if a blog id is specified then the latest entries from that blog are shown
7 */
9 require_once(dirname(dirname(__FILE__)).'/config.php');
10 require_once($CFG->dirroot .'/blog/lib.php');
11 require_once($CFG->dirroot .'/blog/locallib.php');
12 require_once($CFG->dirroot .'/course/lib.php');
13 require_once($CFG->dirroot .'/tag/lib.php');
14 require_once($CFG->dirroot .'/comment/lib.php');
16 $id = optional_param('id', null, PARAM_INT);
17 $start = optional_param('formstart', 0, PARAM_INT);
18 $tag = optional_param('tag', '', PARAM_NOTAGS);
19 $userid = optional_param('userid', null, PARAM_INT);
20 $tagid = optional_param('tagid', null, PARAM_INT);
21 $modid = optional_param('modid', null, PARAM_INT);
22 $entryid = optional_param('entryid', null, PARAM_INT);
23 $groupid = optional_param('groupid', null, PARAM_INT);
24 $courseid = optional_param('courseid', null, PARAM_INT);
25 $search = optional_param('search', null, PARAM_RAW);
27 comment::init();
29 $url_params = compact('id', 'start', 'tag', 'userid', 'tagid', 'modid', 'entryid', 'groupid', 'courseid', 'search');
30 foreach ($url_params as $var => $val) {
31 if (empty($val)) {
32 unset($url_params[$var]);
35 $PAGE->set_url('/blog/index.php', $url_params);
37 if (empty($CFG->enableblogs)) {
38 print_error('blogdisable', 'blog');
41 //correct tagid if a text tag is provided as a param
42 if (!empty($tag)) {
43 if ($tagrec = $DB->get_record('tag', array('name' => $tag))) {
44 $tagid = $tagrec->id;
45 } else {
46 unset($tagid);
50 // add courseid if modid or groupid is specified: This is used for navigation and title
51 if (!empty($modid) && empty($courseid)) {
52 $courseid = $DB->get_field('course_modules', 'course', array('id'=>$modid));
55 if (!empty($groupid) && empty($courseid)) {
56 $courseid = $DB->get_field('groups', 'courseid', array('id'=>$groupid));
59 $sitecontext = context_system::instance();
61 // check basic permissions
62 if ($CFG->bloglevel == BLOG_GLOBAL_LEVEL) {
63 // everybody can see anything - no login required unless site is locked down using forcelogin
64 if ($CFG->forcelogin) {
65 require_login();
68 } else if ($CFG->bloglevel == BLOG_SITE_LEVEL) {
69 // users must log in and can not be guests
70 require_login();
71 if (isguestuser()) {
72 // they must have entered the url manually...
73 print_error('blogdisable', 'blog');
76 } else if ($CFG->bloglevel == BLOG_USER_LEVEL) {
77 // users can see own blogs only! with the exception of ppl with special cap
78 require_login();
80 } else {
81 // weird!
82 print_error('blogdisable', 'blog');
86 if (!$userid && has_capability('moodle/blog:view', $sitecontext) && $CFG->bloglevel > BLOG_USER_LEVEL) {
87 if ($entryid) {
88 if (!$entryobject = $DB->get_record('post', array('id'=>$entryid))) {
89 print_error('nosuchentry', 'blog');
91 $userid = $entryobject->userid;
93 } else if (!$userid) {
94 $userid = $USER->id;
97 if (!empty($modid)) {
98 if ($CFG->bloglevel < BLOG_SITE_LEVEL) {
99 print_error(get_string('nocourseblogs', 'blog'));
101 if (!$mod = $DB->get_record('course_modules', array('id' => $modid))) {
102 print_error(get_string('invalidmodid', 'blog'));
104 $courseid = $mod->course;
107 if ((empty($courseid) ? true : $courseid == SITEID) && empty($userid)) {
108 if ($CFG->bloglevel < BLOG_SITE_LEVEL) {
109 print_error('siteblogdisable', 'blog');
111 if (!has_capability('moodle/blog:view', $sitecontext)) {
112 print_error('cannotviewsiteblog', 'blog');
115 $COURSE = $DB->get_record('course', array('format'=>'site'));
116 $courseid = $COURSE->id;
119 if (!empty($courseid)) {
120 if (!$course = $DB->get_record('course', array('id'=>$courseid))) {
121 print_error('invalidcourseid');
124 $courseid = $course->id;
125 $coursecontext = context_course::instance($course->id);
127 require_login($course);
129 if (!has_capability('moodle/blog:view', $coursecontext)) {
130 print_error('cannotviewcourseblog', 'blog');
132 } else {
133 $coursecontext = context_course::instance(SITEID);
136 if (!empty($groupid)) {
137 if ($CFG->bloglevel < BLOG_SITE_LEVEL) {
138 print_error('groupblogdisable', 'blog');
141 if (! $group = groups_get_group($groupid)) {
142 print_error(get_string('invalidgroupid', 'blog'));
145 if (!$course = $DB->get_record('course', array('id'=>$group->courseid))) {
146 print_error('invalidcourseid');
149 $coursecontext = context_course::instance($course->id);
150 $courseid = $course->id;
151 require_login($course);
153 if (!has_capability('moodle/blog:view', $coursecontext)) {
154 print_error(get_string('cannotviewcourseorgroupblog', 'blog'));
157 if (groups_get_course_groupmode($course) == SEPARATEGROUPS && !has_capability('moodle/site:accessallgroups', $coursecontext)) {
158 if (!groups_is_member($groupid)) {
159 print_error('notmemberofgroup');
164 if (!empty($userid)) {
165 if ($CFG->bloglevel < BLOG_USER_LEVEL) {
166 print_error('blogdisable', 'blog');
169 if (!$user = $DB->get_record('user', array('id'=>$userid))) {
170 print_error('invaliduserid');
173 if ($user->deleted) {
174 echo $OUTPUT->header();
175 echo $OUTPUT->heading(get_string('userdeleted'));
176 echo $OUTPUT->footer();
177 die;
180 if ($USER->id == $userid) {
181 if (!has_capability('moodle/blog:create', $sitecontext)
182 && !has_capability('moodle/blog:view', $sitecontext)) {
183 print_error('donothaveblog', 'blog');
185 } else {
186 if (!has_capability('moodle/blog:view', $sitecontext) || !blog_user_can_view_user_entry($userid)) {
187 print_error('cannotviewcourseblog', 'blog');
190 $PAGE->navigation->extend_for_user($user);
194 $courseid = (empty($courseid)) ? SITEID : $courseid;
196 if (empty($entryid) && empty($modid) && empty($groupid)) {
197 $PAGE->set_context(context_user::instance($USER->id));
198 } else if (!empty($modid)) {
199 $PAGE->set_context(context_module::instance($modid));
200 } else if (!empty($courseid)) {
201 $PAGE->set_context(context_course::instance($courseid));
202 } else {
203 $PAGE->set_context(context_system::instance());
206 $blogheaders = blog_get_headers();
208 if ($CFG->enablerssfeeds) {
209 $rsscontext = null;
210 $filtertype = null;
211 $thingid = null;
212 list($thingid, $rsscontext, $filtertype) = blog_rss_get_params($blogheaders['filters']);
213 if (empty($rsscontext)) {
214 $rsscontext = get_system_context();
216 $rsstitle = $blogheaders['heading'];
218 //check we haven't started output by outputting an error message
219 if ($PAGE->state == moodle_page::STATE_BEFORE_HEADER) {
220 blog_rss_add_http_header($rsscontext, $rsstitle, $filtertype, $thingid, $tagid);
223 //this works but there isn't a great place to put the link
224 //blog_rss_print_link($rsscontext, $filtertype, $thingid, $tagid);
227 echo $OUTPUT->header();
229 echo $OUTPUT->heading($blogheaders['heading'], 2);
231 $bloglisting = new blog_listing($blogheaders['filters']);
232 $bloglisting->print_entries();
234 echo $OUTPUT->footer();
236 add_to_log($courseid, 'blog', 'view', 'index.php?entryid='.$entryid.'&amp;tagid='.@$tagid.'&amp;tag='.$tag, 'view blog entry');