2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
22 * @copyright 2009 Nicolas Connault
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') ||
die();
28 require_once($CFG->libdir
. '/filelib.php');
31 * Blog_entry class. Represents an entry in a user's blog. Contains all methods for managing this entry.
32 * This class does not contain any HTML-generating code. See blog_listing sub-classes for such code.
33 * This class follows the Object Relational Mapping technique, its member variables being mapped to
34 * the fields of the post table.
38 * @copyright 2009 Nicolas Connault
39 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
41 class blog_entry
implements renderable
{
42 // Public Database fields.
51 // Locked Database fields (Don't touch these).
54 public $module = 'blog';
56 public $coursemoduleid = 0;
59 public $uniquehash = '';
64 // Other class variables.
66 public $tags = array();
68 /** @var StdClass Data needed to render the entry */
71 /** @var string summary format. */
72 public string $summaryformat;
74 /** @var array summary editor. */
75 public array $summary_editor;
80 /** @var int course associated with the blog post. */
83 /** @var string module associated with the blog post. */
86 /** @var mixed attachment. */
87 public $attachment_filemanager;
89 /** @var string blog post body. */
92 /** @var int attachment entry id. */
95 /** @var string|null submit button. */
98 /** @var string|null user alias. */
101 /** @var string|null user picture. */
104 /** @var string|null user first name. */
107 /** @var string|null user middle name. */
110 /** @var string|null user last name. */
113 /** @var string|null user first name phonetic. */
114 public $firstnamephonetic;
116 /** @var string|null user last name phonetic. */
117 public $lastnamephonetic;
119 /** @var string|null user alternate name. */
120 public $alternatename;
122 /** @var string|null user email address. */
128 /** @var string|null user picture description. */
131 /** @var int module instance id. */
135 * Constructor. If given an id, will fetch the corresponding record from the DB.
137 * @param mixed $idorparams A blog entry id if INT, or data for a new entry if array
139 public function __construct($id=null, $params=null, $form=null) {
140 global $DB, $PAGE, $CFG;
143 $object = $DB->get_record('post', array('id' => $id));
144 foreach ($object as $var => $val) {
147 } else if (!empty($params) && (is_array($params) ||
is_object($params))) {
148 foreach ($params as $var => $val) {
153 if (!empty($CFG->useblogassociations
)) {
154 $associations = $DB->get_records('blog_association', array('blogid' => $this->id
));
155 foreach ($associations as $association) {
156 $context = context
::instance_by_id($association->contextid
);
157 if ($context->contextlevel
== CONTEXT_COURSE
) {
158 $this->courseassoc
= $association->contextid
;
159 } else if ($context->contextlevel
== CONTEXT_MODULE
) {
160 $this->modassoc
= $association->contextid
;
170 * Gets the required data to print the entry
172 public function prepare_render() {
174 global $DB, $CFG, $PAGE;
176 $this->renderable
= new StdClass();
178 $this->renderable
->user
= $DB->get_record('user', array('id' => $this->userid
));
181 if (!empty($CFG->usecomments
) and $CFG->blogusecomments
) {
182 require_once($CFG->dirroot
. '/comment/lib.php');
184 $cmt = new stdClass();
185 $cmt->context
= context_user
::instance($this->userid
);
186 $cmt->courseid
= $PAGE->course
->id
;
187 $cmt->area
= 'format_blog';
188 $cmt->itemid
= $this->id
;
189 $cmt->showcount
= $CFG->blogshowcommentscount
;
190 $cmt->component
= 'blog';
191 $this->renderable
->comment
= new comment($cmt);
194 $this->summary
= file_rewrite_pluginfile_urls($this->summary
, 'pluginfile.php', SYSCONTEXTID
, 'blog', 'post', $this->id
);
196 // External blog link.
197 if ($this->uniquehash
&& $this->content
) {
198 if ($externalblog = $DB->get_record('blog_external', array('id' => $this->content
))) {
199 $urlparts = parse_url($externalblog->url
);
200 $this->renderable
->externalblogtext
= get_string('retrievedfrom', 'blog') . get_string('labelsep', 'langconfig');
201 $this->renderable
->externalblogtext
.= html_writer
::link($urlparts['scheme'] . '://' . $urlparts['host'],
202 $externalblog->name
);
206 // Retrieve associations.
207 $this->renderable
->unassociatedentry
= false;
208 if (!empty($CFG->useblogassociations
)) {
210 // Adding the entry associations data.
211 if ($associations = $associations = $DB->get_records('blog_association', array('blogid' => $this->id
))) {
213 // Check to see if the entry is unassociated with group/course level access.
214 if ($this->publishstate
== 'group' ||
$this->publishstate
== 'course') {
215 $this->renderable
->unassociatedentry
= true;
218 foreach ($associations as $key => $assocrec) {
220 if (!$context = context
::instance_by_id($assocrec->contextid
, IGNORE_MISSING
)) {
221 unset($associations[$key]);
225 // The renderer will need the contextlevel of the association.
226 $associations[$key]->contextlevel
= $context->contextlevel
;
228 // Course associations.
229 if ($context->contextlevel
== CONTEXT_COURSE
) {
230 // TODO: performance!!!!
231 $instancename = $DB->get_field('course', 'shortname', array('id' => $context->instanceid
));
233 $associations[$key]->url
= $assocurl = new moodle_url('/course/view.php',
234 array('id' => $context->instanceid
));
235 $associations[$key]->text
= $instancename;
236 $associations[$key]->icon
= new pix_icon('i/course', $associations[$key]->text
);
240 if ($context->contextlevel
== CONTEXT_MODULE
) {
242 // Getting the activity type and the activity instance id.
243 $sql = 'SELECT cm.instance, m.name FROM {course_modules} cm
244 JOIN {modules} m ON m.id = cm.module
245 WHERE cm.id = :cmid';
246 $modinfo = $DB->get_record_sql($sql, array('cmid' => $context->instanceid
));
247 // TODO: performance!!!!
248 $instancename = $DB->get_field($modinfo->name
, 'name', array('id' => $modinfo->instance
));
250 $associations[$key]->type
= get_string('modulename', $modinfo->name
);
251 $associations[$key]->url
= new moodle_url('/mod/' . $modinfo->name
. '/view.php',
252 array('id' => $context->instanceid
));
253 $associations[$key]->text
= $instancename;
254 $associations[$key]->icon
= new pix_icon('icon', $associations[$key]->text
, $modinfo->name
);
258 $this->renderable
->blogassociations
= $associations;
261 // Entry attachments.
262 $this->renderable
->attachments
= $this->get_attachments();
264 $this->renderable
->usercanedit
= blog_user_can_edit_entry($this);
269 * Gets the entry attachments list
270 * @return array List of blog_entry_attachment instances
272 public function get_attachments() {
276 require_once($CFG->libdir
.'/filelib.php');
278 $syscontext = context_system
::instance();
280 $fs = get_file_storage();
281 $files = $fs->get_area_files($syscontext->id
, 'blog', 'attachment', $this->id
);
283 // Adding a blog_entry_attachment for each non-directory file.
284 $attachments = array();
285 foreach ($files as $file) {
286 if ($file->is_directory()) {
289 $attachments[] = new blog_entry_attachment($file, $this->id
);
296 * Inserts this entry in the database. Access control checks must be done by calling code.
298 * @param mform $form Used for attachments
301 public function process_attachment($form) {
306 * Inserts this entry in the database. Access control checks must be done by calling code.
307 * TODO Set the publishstate correctly
310 public function add() {
311 global $CFG, $USER, $DB;
314 $this->module
= 'blog';
315 $this->userid
= (empty($this->userid
)) ?
$USER->id
: $this->userid
;
316 $this->lastmodified
= time();
317 $this->created
= time();
319 // Insert the new blog entry.
320 $this->id
= $DB->insert_record('post', $this);
322 if (!empty($CFG->useblogassociations
)) {
323 $this->add_associations();
326 core_tag_tag
::set_item_tags('core', 'post', $this->id
, context_user
::instance($this->userid
), $this->tags
);
328 // Trigger an event for the new entry.
329 $event = \core\event\blog_entry_created
::create(array(
330 'objectid' => $this->id
,
331 'relateduserid' => $this->userid
333 $event->set_blog_entry($this);
338 * Updates this entry in the database. Access control checks must be done by calling code.
340 * @param array $params Entry parameters.
341 * @param moodleform $form Used for attachments.
342 * @param array $summaryoptions Summary options.
343 * @param array $attachmentoptions Attachment options.
347 public function edit($params=array(), $form=null, $summaryoptions=array(), $attachmentoptions=array()) {
350 $sitecontext = context_system
::instance();
354 foreach ($params as $var => $val) {
358 $entry = file_postupdate_standard_editor($entry, 'summary', $summaryoptions, $sitecontext, 'blog', 'post', $entry->id
);
359 $entry = file_postupdate_standard_filemanager($entry,
367 if (!empty($CFG->useblogassociations
)) {
368 $entry->add_associations();
371 $entry->lastmodified
= time();
374 $DB->update_record('post', $entry);
375 core_tag_tag
::set_item_tags('core', 'post', $entry->id
, context_user
::instance($this->userid
), $entry->tags
);
377 $event = \core\event\blog_entry_updated
::create(array(
378 'objectid' => $entry->id
,
379 'relateduserid' => $entry->userid
381 $event->set_blog_entry($entry);
386 * Deletes this entry from the database. Access control checks must be done by calling code.
390 public function delete() {
393 $this->delete_attachments();
394 $this->remove_associations();
396 // Get record to pass onto the event.
397 $record = $DB->get_record('post', array('id' => $this->id
));
398 $DB->delete_records('post', array('id' => $this->id
));
399 core_tag_tag
::remove_all_item_tags('core', 'post', $this->id
);
401 $event = \core\event\blog_entry_deleted
::create(array(
402 'objectid' => $this->id
,
403 'relateduserid' => $this->userid
405 $event->add_record_snapshot("post", $record);
406 $event->set_blog_entry($this);
411 * Function to add all context associations to an entry.
413 * @param string $unused This does nothing, do not use it.
415 public function add_associations($unused = null) {
417 if ($unused !== null) {
418 debugging('Illegal argument used in blog_entry->add_associations()', DEBUG_DEVELOPER
);
421 $this->remove_associations();
423 if (!empty($this->courseassoc
)) {
424 $this->add_association($this->courseassoc
);
427 if (!empty($this->modassoc
)) {
428 $this->add_association($this->modassoc
);
433 * Add a single association for a blog entry
435 * @param int $contextid - id of context to associate with the blog entry.
436 * @param string $unused This does nothing, do not use it.
438 public function add_association($contextid, $unused = null) {
441 if ($unused !== null) {
442 debugging('Illegal argument used in blog_entry->add_association()', DEBUG_DEVELOPER
);
445 $assocobject = new StdClass
;
446 $assocobject->contextid
= $contextid;
447 $assocobject->blogid
= $this->id
;
448 $id = $DB->insert_record('blog_association', $assocobject);
450 // Trigger an association created event.
451 $context = context
::instance_by_id($contextid);
454 'other' => array('associateid' => $context->instanceid
, 'subject' => $this->subject
, 'blogid' => $this->id
),
455 'relateduserid' => $this->userid
457 if ($context->contextlevel
== CONTEXT_COURSE
) {
458 $eventparam['other']['associatetype'] = 'course';
460 } else if ($context->contextlevel
== CONTEXT_MODULE
) {
461 $eventparam['other']['associatetype'] = 'coursemodule';
463 $event = \core\event\blog_association_created
::create($eventparam);
468 * remove all associations for a blog entry
472 public function remove_associations() {
475 $associations = $DB->get_records('blog_association', array('blogid' => $this->id
));
476 foreach ($associations as $association) {
478 // Trigger an association deleted event.
479 $context = context
::instance_by_id($association->contextid
);
481 'objectid' => $this->id
,
482 'other' => array('subject' => $this->subject
, 'blogid' => $this->id
),
483 'relateduserid' => $this->userid
485 $event = \core\event\blog_association_deleted
::create($eventparam);
486 $event->add_record_snapshot('blog_association', $association);
489 // Now remove the association.
490 $DB->delete_records('blog_association', array('id' => $association->id
));
495 * Deletes all the user files in the attachments area for an entry
499 public function delete_attachments() {
500 $fs = get_file_storage();
501 $fs->delete_area_files(SYSCONTEXTID
, 'blog', 'attachment', $this->id
);
502 $fs->delete_area_files(SYSCONTEXTID
, 'blog', 'post', $this->id
);
506 * User can edit a blog entry if this is their own blog entry and they have
507 * the capability moodle/blog:create, or if they have the capability
508 * moodle/blog:manageentries.
509 * This also applies to deleting of entries.
511 * @param int $userid Optional. If not given, $USER is used
514 public function can_user_edit($userid=null) {
517 if (empty($userid)) {
521 $sitecontext = context_system
::instance();
523 if (has_capability('moodle/blog:manageentries', $sitecontext)) {
524 return true; // Can edit any blog entry.
527 if ($this->userid
== $userid && has_capability('moodle/blog:create', $sitecontext)) {
528 return true; // Can edit own when having blog:create capability.
535 * Checks to see if a user can view the blogs of another user.
536 * Only blog level is checked here, the capabilities are enforced
539 * @param int $targetuserid ID of the user we are checking
543 public function can_user_view($targetuserid) {
544 global $CFG, $USER, $DB;
545 $sitecontext = context_system
::instance();
547 if (empty($CFG->enableblogs
) ||
!has_capability('moodle/blog:view', $sitecontext)) {
548 return false; // Blog system disabled or user has no blog view capability.
551 if (isloggedin() && $USER->id
== $targetuserid) {
552 return true; // Can view own entries in any case.
555 if (has_capability('moodle/blog:manageentries', $sitecontext)) {
556 return true; // Can manage all entries.
559 // Coming for 1 entry, make sure it's not a draft.
560 if ($this->publishstate
== 'draft' && !has_capability('moodle/blog:viewdrafts', $sitecontext)) {
561 return false; // Can not view draft of others.
564 // Coming for 1 entry, make sure user is logged in, if not a public blog.
565 if ($this->publishstate
!= 'public' && !isloggedin()) {
569 switch ($CFG->bloglevel
) {
570 case BLOG_GLOBAL_LEVEL
:
574 case BLOG_SITE_LEVEL
:
575 if (isloggedin()) { // Not logged in viewers forbidden.
581 case BLOG_USER_LEVEL
:
583 $personalcontext = context_user
::instance($targetuserid);
584 return has_capability('moodle/user:readuserblogs', $personalcontext);
590 * Use this function to retrieve a list of publish states available for
591 * the currently logged in user.
593 * @return array This function returns an array ideal for sending to moodles'
594 * choose_from_menu function.
597 public static function get_applicable_publish_states() {
601 // Everyone gets draft access.
602 if ($CFG->bloglevel
>= BLOG_USER_LEVEL
) {
603 $options['draft'] = get_string('publishtonoone', 'blog');
606 if ($CFG->bloglevel
> BLOG_USER_LEVEL
) {
607 $options['site'] = get_string('publishtosite', 'blog');
610 if ($CFG->bloglevel
>= BLOG_GLOBAL_LEVEL
) {
611 $options['public'] = get_string('publishtoworld', 'blog');
619 * Abstract Blog_Listing class: used to gather blog entries and output them as listings. One of the subclasses must be used.
621 * @package moodlecore
623 * @copyright 2009 Nicolas Connault
624 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
628 * Array of blog_entry objects.
629 * @var array $entries
631 public $entries = null;
634 * Caches the total number of the entries.
637 public $totalentries = null;
640 * An array of blog_filter_* objects
641 * @var array $filters
643 public $filters = array();
648 * @param array $filters An associative array of filtername => filterid
650 public function __construct($filters=array()) {
651 // Unset filters overridden by more specific filters.
652 foreach ($filters as $type => $id) {
653 if (!empty($type) && !empty($id)) {
654 $this->filters
[$type] = blog_filter
::get_instance($id, $type);
658 foreach ($this->filters
as $type => $filter) {
659 foreach ($filter->overrides
as $override) {
660 if (array_key_exists($override, $this->filters
)) {
661 unset($this->filters
[$override]);
668 * Fetches the array of blog entries.
672 public function get_entries($start=0, $limit=10) {
675 if ($this->entries
=== null) {
676 if ($sqlarray = $this->get_entry_fetch_sql(false, 'created DESC')) {
677 $this->entries
= $DB->get_records_sql($sqlarray['sql'], $sqlarray['params'], $start, $limit);
678 if (!$start && count($this->entries
) < $limit) {
679 $this->totalentries
= count($this->entries
);
686 return $this->entries
;
690 * Finds total number of blog entries
694 public function count_entries() {
696 if ($this->totalentries
=== null) {
697 if ($sqlarray = $this->get_entry_fetch_sql(true)) {
698 $this->totalentries
= $DB->count_records_sql($sqlarray['sql'], $sqlarray['params']);
700 $this->totalentries
= 0;
703 return $this->totalentries
;
706 public function get_entry_fetch_sql($count=false, $sort='lastmodified DESC', $userid = false) {
707 global $DB, $USER, $CFG;
712 $userfieldsapi = \core_user\fields
::for_userpic();
713 $allnamefields = $userfieldsapi->get_sql('u', false, '', 'useridalias', false)->selects
;
714 // The query used to locate blog entries is complicated. It will be built from the following components:
715 $requiredfields = "p.*, $allnamefields"; // The SELECT clause.
716 $tables = array('p' => 'post', 'u' => 'user'); // Components of the FROM clause (table_id => table_name).
717 // Components of the WHERE clause (conjunction).
718 $conditions = array('u.deleted = 0', 'p.userid = u.id', '(p.module = \'blog\' OR p.module = \'blog_external\')');
720 // Build up a clause for permission constraints.
724 // Fix for MDL-9165, use with readuserblogs capability in a user context can read that user's private blogs.
725 // Admins can see all blogs regardless of publish states, as described on the help page.
726 if (has_capability('moodle/user:readuserblogs', context_system
::instance())) {
727 // Don't add permission constraints.
729 } else if (!empty($this->filters
['user'])
730 && has_capability('moodle/user:readuserblogs',
731 context_user
::instance((empty($this->filters
['user']->id
) ?
0 : $this->filters
['user']->id
)))) {
732 // Don't add permission constraints.
735 if (isloggedin() and !isguestuser()) {
736 // Dont check association records if there aren't any.
737 $assocexists = $DB->record_exists('blog_association', array());
739 // Begin permission sql clause.
740 $permissionsql = '(p.userid = ? ';
743 if ($CFG->bloglevel
>= BLOG_SITE_LEVEL
) { // Add permission to view site-level entries.
744 $permissionsql .= " OR p.publishstate = 'site' ";
747 if ($CFG->bloglevel
>= BLOG_GLOBAL_LEVEL
) { // Add permission to view global entries.
748 $permissionsql .= " OR p.publishstate = 'public' ";
751 $permissionsql .= ') '; // Close permissions sql clause.
752 } else { // Default is access to public entries.
753 $permissionsql = "p.publishstate = 'public'";
755 $conditions[] = $permissionsql; // Add permission constraints.
758 foreach ($this->filters
as $type => $blogfilter) {
759 $conditions = array_merge($conditions, $blogfilter->conditions
);
760 $params = array_merge($params, $blogfilter->params
);
761 $tables = array_merge($tables, $blogfilter->tables
);
764 $tablessql = ''; // Build up the FROM clause.
765 foreach ($tables as $tablename => $table) {
766 $tablessql .= ($tablessql ?
', ' : '').'{'.$table.'} '.$tablename;
769 $sql = ($count) ?
'SELECT COUNT(*)' : 'SELECT ' . $requiredfields;
770 $sql .= " FROM $tablessql WHERE " . implode(' AND ', $conditions);
771 $sql .= ($count) ?
'' : " ORDER BY $sort";
773 return array('sql' => $sql, 'params' => $params);
777 * Outputs all the blog entries aggregated by this blog listing.
781 public function print_entries() {
782 global $CFG, $USER, $DB, $OUTPUT, $PAGE;
783 $sitecontext = context_system
::instance();
786 $output = $PAGE->get_renderer('blog');
788 $page = optional_param('blogpage', 0, PARAM_INT
);
789 $limit = optional_param('limit', get_user_preferences('blogpagesize', 10), PARAM_INT
);
790 $start = $page * $limit;
792 $morelink = '<br /> ';
794 $entries = $this->get_entries($start, $limit);
795 $totalentries = $this->count_entries();
796 $pagingbar = new paging_bar($totalentries, $page, $limit, $this->get_baseurl());
797 $pagingbar->pagevar
= 'blogpage';
798 $blogheaders = blog_get_headers();
800 echo $OUTPUT->render($pagingbar);
802 if (has_capability('moodle/blog:create', $sitecontext)) {
803 // The user's blog is enabled and they are viewing their own blog.
804 $userid = optional_param('userid', null, PARAM_INT
);
806 if (empty($userid) ||
(!empty($userid) && $userid == $USER->id
)) {
808 $courseid = optional_param('courseid', null, PARAM_INT
);
809 $modid = optional_param('modid', null, PARAM_INT
);
811 $addurl = new moodle_url("$CFG->wwwroot/blog/edit.php");
812 $urlparams = array('action' => 'add',
814 'courseid' => $courseid,
815 'groupid' => optional_param('groupid', null, PARAM_INT
),
817 'tagid' => optional_param('tagid', null, PARAM_INT
),
818 'tag' => optional_param('tag', null, PARAM_INT
),
819 'search' => optional_param('search', null, PARAM_INT
));
821 $urlparams = array_filter($urlparams);
822 $addurl->params($urlparams);
824 $addlink = '<div class="addbloglink">';
825 $addlink .= '<a href="'.$addurl->out().'">'. $blogheaders['stradd'].'</a>';
826 $addlink .= '</div>';
833 foreach ($entries as $entry) {
834 $blogentry = new blog_entry(null, $entry);
836 // Get the required blog entry data to render it.
837 $blogentry->prepare_render();
838 echo $output->render($blogentry);
843 echo $OUTPUT->render($pagingbar);
846 print '<br /><div style="text-align:center">'. get_string('noentriesyet', 'blog') .'</div><br />';
849 print $morelink.'<br />'."\n";
854 // Find the base url from $_GET variables, for print_paging_bar.
855 public function get_baseurl() {
858 unset($getcopy['blogpage']);
860 if (!empty($getcopy)) {
864 foreach ($getcopy as $var => $val) {
867 $querystring .= "?$var=$val";
869 $querystring .= '&'.$var.'='.$val;
877 return strip_querystring(qualified_me()) . $querystring;
883 * Abstract class for blog_filter objects.
884 * A set of core filters are implemented here. To write new filters, you need to subclass
885 * blog_filter and give it the name of the type you want (for example, blog_filter_entry).
886 * The blog_filter abstract class will automatically use it when the filter is added to the
887 * URL. The first parameter of the constructor is the ID of your filter, but it can be a string
888 * or have any other meaning you wish it to have. The second parameter is called $type and is
889 * used as a sub-type for filters that have a very similar implementation (see blog_filter_context for an example)
891 abstract class blog_filter
{
893 * An array of strings representing the available filter types for each blog_filter.
894 * @var array $availabletypes
896 public $availabletypes = array();
899 * The type of filter (for example, types of blog_filter_context are site, course and module)
905 * The unique ID for a filter's associated record
911 * An array of table aliases that are used in the WHERE conditions
914 public $tables = array();
917 * An array of WHERE conditions
918 * @var array $conditions
920 public $conditions = array();
923 * An array of SQL params
926 public $params = array();
929 * An array of filter types which this particular filter type overrides: their conditions will not be evaluated
931 public $overrides = array();
933 public function __construct($id, $type=null) {
939 * TODO This is poor design. A parent class should not know anything about its children.
940 * The default case helps to resolve this design issue
942 public static function get_instance($id, $type) {
948 return new blog_filter_context($id, $type);
953 return new blog_filter_user($id, $type);
957 return new blog_filter_tag($id);
961 $classname = "blog_filter_$type";
962 if (class_exists($classname)) {
963 return new $classname($id, $type);
970 * This filter defines the context level of the blog entries being searched: site, course, module
972 class blog_filter_context
extends blog_filter
{
976 * @param string $type
979 public function __construct($id=null, $type='site') {
980 global $SITE, $CFG, $DB;
983 $this->type
= 'site';
989 $this->availabletypes
= array('site' => get_string('site'),
990 'course' => get_string('course'),
991 'module' => get_string('activity'),
992 'context' => get_string('coresystem'));
994 switch ($this->type
) {
995 case 'course': // Careful of site course!
996 // Ignore course filter if blog associations are not enabled.
997 if ($this->id
!= $SITE->id
&& !empty($CFG->useblogassociations
)) {
998 $this->overrides
= array('site', 'context');
999 $context = context_course
::instance($this->id
);
1000 $this->tables
['ba'] = 'blog_association';
1001 $this->conditions
[] = 'p.id = ba.blogid';
1002 $this->conditions
[] = 'ba.contextid = '.$context->id
;
1005 // We are dealing with the site course, do not break from the current case.
1009 // No special constraints.
1012 if (!empty($CFG->useblogassociations
)) {
1013 $this->overrides
= array('course', 'site', 'context');
1015 $context = context_module
::instance($this->id
);
1016 $this->tables
['ba'] = 'blog_association';
1017 $this->tables
['p'] = 'post';
1018 $this->conditions
= array('p.id = ba.blogid', 'ba.contextid = ?');
1019 $this->params
= array($context->id
);
1023 if ($id != context_system
::instance()->id
&& !empty($CFG->useblogassociations
)) {
1024 $this->overrides
= array('site');
1025 $context = context
::instance_by_id($this->id
);
1026 $this->tables
['ba'] = 'blog_association';
1027 $this->tables
['ctx'] = 'context';
1028 $this->conditions
[] = 'p.id = ba.blogid';
1029 $this->conditions
[] = 'ctx.id = ba.contextid';
1030 $this->conditions
[] = 'ctx.path LIKE ?';
1031 $this->params
= array($context->path
. '%');
1040 * This filter defines the user level of the blog entries being searched: a userid or a groupid.
1041 * It can be combined with a context filter in order to refine the search.
1043 class blog_filter_user
extends blog_filter
{
1044 public $tables = array('u' => 'user');
1049 * @param string $type
1052 public function __construct($id=null, $type='user') {
1053 global $CFG, $DB, $USER;
1054 $this->availabletypes
= array('user' => get_string('user'), 'group' => get_string('group'));
1057 $this->id
= $USER->id
;
1058 $this->type
= 'user';
1061 $this->type
= $type;
1064 if ($this->type
== 'user') {
1065 $this->conditions
= array('u.id = ?');
1066 $this->params
= array($this->id
);
1067 $this->overrides
= array('group');
1069 } else if ($this->type
== 'group') {
1070 $this->overrides
= array('course', 'site');
1072 $this->tables
['gm'] = 'groups_members';
1073 $this->conditions
[] = 'p.userid = gm.userid';
1074 $this->conditions
[] = 'gm.groupid = ?';
1075 $this->params
[] = $this->id
;
1077 if (!empty($CFG->useblogassociations
)) { // Only show blog entries associated with this course.
1078 $coursecontext = context_course
::instance($DB->get_field('groups', 'courseid', array('id' => $this->id
)));
1079 $this->tables
['ba'] = 'blog_association';
1080 $this->conditions
[] = 'gm.groupid = ?';
1081 $this->conditions
[] = 'ba.contextid = ?';
1082 $this->conditions
[] = 'ba.blogid = p.id';
1083 $this->params
[] = $this->id
;
1084 $this->params
[] = $coursecontext->id
;
1092 * This filter defines a tag by which blog entries should be searched.
1094 class blog_filter_tag
extends blog_filter
{
1095 public $tables = array('t' => 'tag', 'ti' => 'tag_instance', 'p' => 'post');
1102 public function __construct($id) {
1106 $this->conditions
= array('ti.tagid = t.id',
1107 "ti.itemtype = 'post'",
1108 "ti.component = 'core'",
1111 $this->params
= array($this->id
);
1116 * This filter defines a specific blog entry id.
1118 class blog_filter_entry
extends blog_filter
{
1119 public $conditions = array('p.id = ?');
1120 public $overrides = array('site', 'course', 'module', 'group', 'user', 'tag');
1122 public function __construct($id) {
1124 $this->params
[] = $this->id
;
1129 * This filter restricts the results to a time interval in seconds up to time()
1131 class blog_filter_since
extends blog_filter
{
1132 public function __construct($interval) {
1133 $this->conditions
[] = 'p.lastmodified >= ? AND p.lastmodified <= ?';
1134 $this->params
[] = time() - $interval;
1135 $this->params
[] = time();
1140 * Filter used to perform full-text search on an entry's subject, summary and content
1142 class blog_filter_search
extends blog_filter
{
1144 public function __construct($searchterm) {
1146 $this->conditions
= array("(".$DB->sql_like('p.summary', '?', false)." OR
1147 ".$DB->sql_like('p.content', '?', false)." OR
1148 ".$DB->sql_like('p.subject', '?', false).")");
1149 $this->params
[] = "%$searchterm%";
1150 $this->params
[] = "%$searchterm%";
1151 $this->params
[] = "%$searchterm%";
1157 * Renderable class to represent an entry attachment
1159 class blog_entry_attachment
implements renderable
{
1166 * Gets the file data
1168 * @param stored_file $file
1169 * @param int $entryid Attachment entry id
1171 public function __construct($file, $entryid) {
1175 $this->file
= $file;
1176 $this->filename
= $file->get_filename();
1177 $this->url
= file_encode_url($CFG->wwwroot
. '/pluginfile.php',
1178 '/' . SYSCONTEXTID
. '/blog/attachment/' . $entryid . '/' . $this->filename
);