moodle/blog/index.php

174 lines
5.7 KiB
PHP
Raw Normal View History

2006-03-10 06:53:01 +00:00
<?php // $Id$
/**
* file index.php
* index page to view blogs. if no blog is specified then site wide entries are shown
* if a blog id is specified then the latest entries from that blog are shown
*/
2006-04-10 07:27:03 +00:00
require_once('../config.php');
2006-03-10 06:53:01 +00:00
require_once($CFG->dirroot .'/blog/lib.php');
require_once($CFG->libdir .'/blocklib.php');
$id = optional_param('id', 0, PARAM_INT);
$start = optional_param('formstart', 0, PARAM_INT);
2008-02-22 10:25:36 +00:00
$userid = optional_param('userid', 0, PARAM_INT);
$tag = optional_param('tag', '', PARAM_NOTAGS);
$tagid = optional_param('tagid', 0, PARAM_INT);
2008-02-22 10:25:36 +00:00
$postid = optional_param('postid', 0, PARAM_INT);
$filtertype = optional_param('filtertype', '', PARAM_ALPHA);
2006-03-13 06:05:44 +00:00
$filterselect = optional_param('filterselect', 0, PARAM_INT);
$edit = optional_param('edit', -1, PARAM_BOOL);
$courseid = optional_param('courseid', 0, PARAM_INT); // needed for user tabs and course tracking
2006-03-10 06:53:01 +00:00
if (empty($CFG->bloglevel)) {
print_error('blogdisable', 'blog');
}
$sitecontext = get_context_instance(CONTEXT_SYSTEM);
// change block edit staus if not guest and logged in
if (isloggedin() and !isguest() and $edit != -1) {
$SESSION->blog_editing_enabled = $edit;
}
if (empty($filtertype)) {
if ($userid) { // default to user if specified
$filtertype = 'user';
$filterselect = $userid;
} else if (has_capability('moodle/blog:view', $sitecontext) and $CFG->bloglevel > BLOG_USER_LEVEL) {
2008-04-22 05:56:21 +00:00
if ($postid) {
$filtertype = 'user';
2008-06-01 13:48:12 +00:00
if (!$postobject = $DB->get_record('post', array('module'=>'blog', 'id'=>$postid))) {
print_error('nosuchentry', 'blog');
2008-04-22 05:56:21 +00:00
}
$filterselect = $postobject->userid;
} else {
$filtertype = 'site';
$filterselect = '';
}
} else {
// user might have capability to write blogs, but not read blogs at site level
// users might enter this url manually without parameters
$filtertype = 'user';
$filterselect = $USER->id;
2006-03-10 06:53:01 +00:00
}
}
/// check access and prepare filters
2006-03-10 06:53:01 +00:00
switch ($filtertype) {
2006-03-10 06:53:01 +00:00
case 'site':
2006-08-14 07:25:18 +00:00
if ($CFG->bloglevel < BLOG_SITE_LEVEL) {
print_error('siteblogdisable', 'blog');
}
if ($CFG->bloglevel < BLOG_GLOBAL_LEVEL) {
2006-03-10 06:53:01 +00:00
require_login();
}
if (!has_capability('moodle/blog:view', $sitecontext)) {
print_error('cannotviewsiteblog', 'blog');
}
2006-03-10 06:53:01 +00:00
break;
2006-03-10 06:53:01 +00:00
case 'course':
2006-08-14 07:25:18 +00:00
if ($CFG->bloglevel < BLOG_COURSE_LEVEL) {
print_error('courseblogdisable', 'blog');
2006-03-10 06:53:01 +00:00
}
2008-06-01 13:48:12 +00:00
if (!$course = $DB->get_record('course', array('id'=>$filterselect))) {
print_error('invalidcourseid');
}
$courseid = $course->id;
$coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
require_login($course);
if (!has_capability('moodle/blog:view', $coursecontext)) {
print_error('cannotviewcourseblog', 'blog');
}
2006-03-10 06:53:01 +00:00
break;
2006-03-10 06:53:01 +00:00
case 'group':
2006-08-14 07:25:18 +00:00
if ($CFG->bloglevel < BLOG_GROUP_LEVEL) {
print_error('groupblogdisable', 'blog');
}
2007-04-10 04:26:00 +00:00
// fix for MDL-9268
if (! $group = groups_get_group($filterselect)) { //TODO:check.
print_error('invalidgroupid');
}
2008-06-01 13:48:12 +00:00
if (!$course = $DB->get_record('course', array('id'=>$group->courseid))) {
print_error('invalidcourseid');
2006-03-10 06:53:01 +00:00
}
$coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
$courseid = $course->id;
require_login($course);
if (!has_capability('moodle/blog:view', $coursecontext)) {
print_error('cannotviewcourseorgroupblog', 'blog');
}
if (groups_get_course_groupmode($course) == SEPARATEGROUPS
and !has_capability('moodle/site:accessallgroups', $coursecontext)) {
if (!groups_is_member($filterselect)) {
print_error('notmemberofgroup');
2006-03-10 06:53:01 +00:00
}
}
2006-03-10 06:53:01 +00:00
break;
2006-03-10 06:53:01 +00:00
case 'user':
2006-08-14 07:25:18 +00:00
if ($CFG->bloglevel < BLOG_USER_LEVEL) {
print_error('blogdisable', 'blog');
2006-03-10 06:53:01 +00:00
}
2008-06-01 13:48:12 +00:00
if (!$user = $DB->get_record('user', array('id'=>$filterselect))) {
print_error('invaliduserid');
2006-04-18 01:59:13 +00:00
}
if ($user->deleted) {
print_header();
print_heading(get_string('userdeleted'));
print_footer();
die;
}
if ($USER->id == $filterselect) {
if (!has_capability('moodle/blog:create', $sitecontext)
and !has_capability('moodle/blog:view', $sitecontext)) {
print_error('donothaveblog', 'blog');
}
} else {
$personalcontext = get_context_instance(CONTEXT_USER, $filterselect);
if (!has_capability('moodle/blog:view', $sitecontext)
and !has_capability('moodle/user:readuserblogs', $personalcontext)) {
print_error('cannotviewuserblog', 'blog');
}
if (!blog_user_can_view_user_post($filterselect)) {
print_error('cannotviewcourseblog', 'blog');
}
}
$userid = $filterselect;
2006-04-18 01:59:13 +00:00
if (!empty($courseid)) {
require_login($courseid);
}
2006-03-10 06:53:01 +00:00
break;
2006-03-10 06:53:01 +00:00
default:
print_error('incorrectblogfilter', 'blog');
2006-03-10 06:53:01 +00:00
break;
}
if (empty($courseid)) {
$courseid = SITEID;
2006-03-10 06:53:01 +00:00
}
2006-03-10 06:53:01 +00:00
include($CFG->dirroot .'/blog/header.php');
blog_print_html_formatted_entries($postid, $filtertype, $filterselect, $tagid, $tag);
2006-03-10 06:53:01 +00:00
add_to_log($courseid, 'blog', 'view', 'index.php?filtertype='.$filtertype.'&amp;filterselect='.$filterselect.'&amp;postid='.$postid.'&amp;tagid='.$tagid.'&amp;tag='.$tag, 'view blog entry');
2006-05-02 02:44:35 +00:00
2006-03-10 06:53:01 +00:00
include($CFG->dirroot .'/blog/footer.php');
2006-08-14 07:25:18 +00:00
?>