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/>.
18 * Contains classes, functions and constants used in badges.
22 * @copyright 2012 onwards Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 * @author Yuliya Bozhko <yuliya.bozhko@totaralms.com>
27 defined('MOODLE_INTERNAL') ||
die();
29 /* Include required award criteria library. */
30 require_once($CFG->dirroot
. '/badges/criteria/award_criteria.php');
33 * Number of records per page.
35 define('BADGE_PERPAGE', 50);
38 * Badge award criteria aggregation method.
40 define('BADGE_CRITERIA_AGGREGATION_ALL', 1);
43 * Badge award criteria aggregation method.
45 define('BADGE_CRITERIA_AGGREGATION_ANY', 2);
48 * Inactive badge means that this badge cannot be earned and has not been awarded
49 * yet. Its award criteria can be changed.
51 define('BADGE_STATUS_INACTIVE', 0);
54 * Active badge means that this badge can we earned, but it has not been awarded
55 * yet. Can be deactivated for the purpose of changing its criteria.
57 define('BADGE_STATUS_ACTIVE', 1);
60 * Inactive badge can no longer be earned, but it has been awarded in the past and
61 * therefore its criteria cannot be changed.
63 define('BADGE_STATUS_INACTIVE_LOCKED', 2);
66 * Active badge means that it can be earned and has already been awarded to users.
67 * Its criteria cannot be changed any more.
69 define('BADGE_STATUS_ACTIVE_LOCKED', 3);
72 * Archived badge is considered deleted and can no longer be earned and is not
73 * displayed in the list of all badges.
75 define('BADGE_STATUS_ARCHIVED', 4);
78 * Badge type for site badges.
80 define('BADGE_TYPE_SITE', 1);
83 * Badge type for course badges.
85 define('BADGE_TYPE_COURSE', 2);
88 * Badge messaging schedule options.
90 define('BADGE_MESSAGE_NEVER', 0);
91 define('BADGE_MESSAGE_ALWAYS', 1);
92 define('BADGE_MESSAGE_DAILY', 2);
93 define('BADGE_MESSAGE_WEEKLY', 3);
94 define('BADGE_MESSAGE_MONTHLY', 4);
97 * URL of backpack. Currently only the Open Badges backpack is supported.
99 define('BADGE_BACKPACKURL', 'backpack.openbadges.org');
102 * Class that represents badge.
106 /** @var int Badge id */
109 /** Values from the table 'badge' */
113 public $timemodified;
115 public $usermodified;
118 public $issuercontact;
120 public $expireperiod;
124 public $messagesubject;
126 public $notification;
130 /** @var array Badge criteria */
131 public $criteria = array();
134 * Constructs with badge details.
136 * @param int $badgeid badge ID.
138 public function __construct($badgeid) {
140 $this->id
= $badgeid;
142 $data = $DB->get_record('badge', array('id' => $badgeid));
145 print_error('error:nosuchbadge', 'badges', $badgeid);
148 foreach ((array)$data as $field => $value) {
149 if (property_exists($this, $field)) {
150 $this->{$field} = $value;
154 $this->criteria
= self
::get_criteria();
158 * Use to get context instance of a badge.
159 * @return context instance.
161 public function get_context() {
162 if ($this->type
== BADGE_TYPE_SITE
) {
163 return context_system
::instance();
164 } else if ($this->type
== BADGE_TYPE_COURSE
) {
165 return context_course
::instance($this->courseid
);
167 debugging('Something is wrong...');
172 * Return array of aggregation methods
175 public static function get_aggregation_methods() {
177 BADGE_CRITERIA_AGGREGATION_ALL
=> get_string('all', 'badges'),
178 BADGE_CRITERIA_AGGREGATION_ANY
=> get_string('any', 'badges'),
183 * Return array of accepted criteria types for this badge
186 public function get_accepted_criteria() {
187 $criteriatypes = array();
189 if ($this->type
== BADGE_TYPE_COURSE
) {
190 $criteriatypes = array(
191 BADGE_CRITERIA_TYPE_OVERALL
,
192 BADGE_CRITERIA_TYPE_MANUAL
,
193 BADGE_CRITERIA_TYPE_COURSE
,
194 BADGE_CRITERIA_TYPE_ACTIVITY
196 } else if ($this->type
== BADGE_TYPE_SITE
) {
197 $criteriatypes = array(
198 BADGE_CRITERIA_TYPE_OVERALL
,
199 BADGE_CRITERIA_TYPE_MANUAL
,
200 BADGE_CRITERIA_TYPE_COURSESET
,
201 BADGE_CRITERIA_TYPE_PROFILE
,
205 return $criteriatypes;
209 * Save/update badge information in 'badge' table only.
210 * Cannot be used for updating awards and criteria settings.
212 * @return bool Returns true on success.
214 public function save() {
217 $fordb = new stdClass();
218 foreach (get_object_vars($this) as $k => $v) {
221 unset($fordb->criteria
);
223 $fordb->timemodified
= time();
224 if ($DB->update_record_raw('badge', $fordb)) {
227 throw new moodle_exception('error:save', 'badges');
233 * Creates and saves a clone of badge with all its properties.
234 * Clone is not active by default and has 'Copy of' attached to its name.
236 * @return int ID of new badge.
238 public function make_clone() {
241 $fordb = new stdClass();
242 foreach (get_object_vars($this) as $k => $v) {
246 $fordb->name
= get_string('copyof', 'badges', $this->name
);
247 $fordb->status
= BADGE_STATUS_INACTIVE
;
248 $fordb->usercreated
= $USER->id
;
249 $fordb->usermodified
= $USER->id
;
250 $fordb->timecreated
= time();
251 $fordb->timemodified
= time();
254 if ($fordb->notification
> 1) {
255 $fordb->nextcron
= badges_calculate_message_schedule($fordb->notification
);
258 $criteria = $fordb->criteria
;
259 unset($fordb->criteria
);
261 if ($new = $DB->insert_record('badge', $fordb, true)) {
262 $newbadge = new badge($new);
265 $fs = get_file_storage();
266 if ($file = $fs->get_file($this->get_context()->id
, 'badges', 'badgeimage', $this->id
, '/', 'f1.png')) {
267 if ($imagefile = $file->copy_content_to_temp()) {
268 badges_process_badge_image($newbadge, $imagefile);
272 // Copy badge criteria.
273 foreach ($this->criteria
as $crit) {
274 $crit->make_clone($new);
279 throw new moodle_exception('error:clone', 'badges');
285 * Checks if badges is active.
286 * Used in badge award.
288 * @return bool A status indicating badge is active
290 public function is_active() {
291 if (($this->status
== BADGE_STATUS_ACTIVE
) ||
292 ($this->status
== BADGE_STATUS_ACTIVE_LOCKED
)) {
299 * Use to get the name of badge status.
302 public function get_status_name() {
303 return get_string('badgestatus_' . $this->status
, 'badges');
307 * Use to set badge status.
308 * Only active badges can be earned/awarded/issued.
310 * @param int $status Status from BADGE_STATUS constants
312 public function set_status($status = 0) {
313 $this->status
= $status;
318 * Checks if badges is locked.
319 * Used in badge award and editing.
321 * @return bool A status indicating badge is locked
323 public function is_locked() {
324 if (($this->status
== BADGE_STATUS_ACTIVE_LOCKED
) ||
325 ($this->status
== BADGE_STATUS_INACTIVE_LOCKED
)) {
332 * Checks if badge has been awarded to users.
333 * Used in badge editing.
335 * @return bool A status indicating badge has been awarded at least once
337 public function has_awards() {
339 $awarded = $DB->record_exists_sql('SELECT b.uniquehash
340 FROM {badge_issued} b INNER JOIN {user} u ON b.userid = u.id
341 WHERE b.badgeid = :badgeid AND u.deleted = 0', array('badgeid' => $this->id
));
347 * Gets list of users who have earned an instance of this badge.
349 * @return array An array of objects with information about badge awards.
351 public function get_awards() {
354 $awards = $DB->get_records_sql(
355 'SELECT b.userid, b.dateissued, b.uniquehash, u.firstname, u.lastname
356 FROM {badge_issued} b INNER JOIN {user} u
358 WHERE b.badgeid = :badgeid AND u.deleted = 0', array('badgeid' => $this->id
));
364 * Indicates whether badge has already been issued to a user.
367 public function is_issued($userid) {
369 return $DB->record_exists('badge_issued', array('badgeid' => $this->id
, 'userid' => $userid));
373 * Issue a badge to user.
375 * @param int $userid User who earned the badge
376 * @param bool $nobake Not baking actual badges (for testing purposes)
378 public function issue($userid, $nobake = false) {
382 $issued = new stdClass();
383 $issued->badgeid
= $this->id
;
384 $issued->userid
= $userid;
385 $issued->uniquehash
= sha1(rand() . $userid . $this->id
. $now);
386 $issued->dateissued
= $now;
388 if ($this->can_expire()) {
389 $issued->dateexpire
= $this->calculate_expiry($now);
391 $issued->dateexpire
= null;
394 // Take into account user badges privacy settings.
395 // If none set, badges default visibility is set to public.
396 $issued->visible
= get_user_preferences('badgeprivacysetting', 1, $userid);
398 $result = $DB->insert_record('badge_issued', $issued, true);
401 // Lock the badge, so that its criteria could not be changed any more.
402 if ($this->status
== BADGE_STATUS_ACTIVE
) {
403 $this->set_status(BADGE_STATUS_ACTIVE_LOCKED
);
406 // Update details in criteria_met table.
407 $compl = $this->get_criteria_completions($userid);
408 foreach ($compl as $c) {
409 $obj = new stdClass();
411 $obj->issuedid
= $result;
412 $DB->update_record('badge_criteria_met', $obj, true);
416 // Bake a badge image.
417 $pathhash = badges_bake($issued->uniquehash
, $this->id
, $userid, true);
419 // Notify recipients and badge creators.
420 badges_notify_badge_award($this, $userid, $issued->uniquehash
, $pathhash);
426 * Reviews all badge criteria and checks if badge can be instantly awarded.
428 * @return int Number of awards
430 public function review_all_criteria() {
434 // Raise timelimit as this could take a while for big web sites.
435 core_php_time_limit
::raise();
436 raise_memory_limit(MEMORY_HUGE
);
438 foreach ($this->criteria
as $crit) {
439 // Overall criterion is decided when other criteria are reviewed.
440 if ($crit->criteriatype
== BADGE_CRITERIA_TYPE_OVERALL
) {
444 list($extrajoin, $extrawhere, $extraparams) = $crit->get_completed_criteria_sql();
445 // For site level badges, get all active site users who can earn this badge and haven't got it yet.
446 if ($this->type
== BADGE_TYPE_SITE
) {
447 $sql = "SELECT DISTINCT u.id, bi.badgeid
450 LEFT JOIN {badge_issued} bi
451 ON u.id = bi.userid AND bi.badgeid = :badgeid
452 WHERE bi.badgeid IS NULL AND u.id != :guestid AND u.deleted = 0 " . $extrawhere;
453 $params = array_merge(array('badgeid' => $this->id
, 'guestid' => $CFG->siteguest
), $extraparams);
454 $toearn = $DB->get_fieldset_sql($sql, $params);
456 // For course level badges, get all users who already earned the badge in this course.
457 // Then find the ones who are enrolled in the course and don't have a badge yet.
458 $earned = $DB->get_fieldset_select('badge_issued', 'userid AS id', 'badgeid = :badgeid', array('badgeid' => $this->id
));
460 $earnedparams = array();
461 if (!empty($earned)) {
462 list($earnedsql, $earnedparams) = $DB->get_in_or_equal($earned, SQL_PARAMS_NAMED
, 'u', false);
463 $wheresql = ' WHERE u.id ' . $earnedsql;
465 list($enrolledsql, $enrolledparams) = get_enrolled_sql($this->get_context(), 'moodle/badges:earnbadge', 0, true);
469 JOIN ({$enrolledsql}) je ON je.id = u.id " . $wheresql . $extrawhere;
470 $params = array_merge($enrolledparams, $earnedparams, $extraparams);
471 $toearn = $DB->get_fieldset_sql($sql, $params);
474 foreach ($toearn as $uid) {
475 $reviewoverall = false;
476 if ($crit->review($uid, true)) {
477 $crit->mark_complete($uid);
478 if ($this->criteria
[BADGE_CRITERIA_TYPE_OVERALL
]->method
== BADGE_CRITERIA_AGGREGATION_ANY
) {
479 $this->criteria
[BADGE_CRITERIA_TYPE_OVERALL
]->mark_complete($uid);
483 $reviewoverall = true;
486 // Will be reviewed some other time.
487 $reviewoverall = false;
489 // Review overall if it is required.
490 if ($reviewoverall && $this->criteria
[BADGE_CRITERIA_TYPE_OVERALL
]->review($uid)) {
491 $this->criteria
[BADGE_CRITERIA_TYPE_OVERALL
]->mark_complete($uid);
502 * Gets an array of completed criteria from 'badge_criteria_met' table.
504 * @param int $userid Completions for a user
505 * @return array Records of criteria completions
507 public function get_criteria_completions($userid) {
509 $completions = array();
510 $sql = "SELECT bcm.id, bcm.critid
511 FROM {badge_criteria_met} bcm
512 INNER JOIN {badge_criteria} bc ON bcm.critid = bc.id
513 WHERE bc.badgeid = :badgeid AND bcm.userid = :userid ";
514 $completions = $DB->get_records_sql($sql, array('badgeid' => $this->id
, 'userid' => $userid));
520 * Checks if badges has award criteria set up.
522 * @return bool A status indicating badge has at least one criterion
524 public function has_criteria() {
525 if (count($this->criteria
) > 0) {
532 * Returns badge award criteria
534 * @return array An array of badge criteria
536 public function get_criteria() {
540 if ($records = (array)$DB->get_records('badge_criteria', array('badgeid' => $this->id
))) {
541 foreach ($records as $record) {
542 $criteria[$record->criteriatype
] = award_criteria
::build((array)$record);
550 * Get aggregation method for badge criteria
552 * @param int $criteriatype If none supplied, get overall aggregation method (optional)
553 * @return int One of BADGE_CRITERIA_AGGREGATION_ALL or BADGE_CRITERIA_AGGREGATION_ANY
555 public function get_aggregation_method($criteriatype = 0) {
557 $params = array('badgeid' => $this->id
, 'criteriatype' => $criteriatype);
558 $aggregation = $DB->get_field('badge_criteria', 'method', $params, IGNORE_MULTIPLE
);
561 return BADGE_CRITERIA_AGGREGATION_ALL
;
568 * Checks if badge has expiry period or date set up.
570 * @return bool A status indicating badge can expire
572 public function can_expire() {
573 if ($this->expireperiod ||
$this->expiredate
) {
580 * Calculates badge expiry date based on either expirydate or expiryperiod.
582 * @param int $timestamp Time of badge issue
583 * @return int A timestamp
585 public function calculate_expiry($timestamp) {
588 if (isset($this->expiredate
)) {
589 $expiry = $this->expiredate
;
590 } else if (isset($this->expireperiod
)) {
591 $expiry = $timestamp +
$this->expireperiod
;
598 * Checks if badge has manual award criteria set.
600 * @return bool A status indicating badge can be awarded manually
602 public function has_manual_award_criteria() {
603 foreach ($this->criteria
as $criterion) {
604 if ($criterion->criteriatype
== BADGE_CRITERIA_TYPE_MANUAL
) {
612 * Fully deletes the badge or marks it as archived.
614 * @param $archive bool Achive a badge without actual deleting of any data.
616 public function delete($archive = true) {
620 $this->status
= BADGE_STATUS_ARCHIVED
;
625 $fs = get_file_storage();
627 // Remove all issued badge image files and badge awards.
628 // Cannot bulk remove area files here because they are issued in user context.
629 $awards = $this->get_awards();
630 foreach ($awards as $award) {
631 $usercontext = context_user
::instance($award->userid
);
632 $fs->delete_area_files($usercontext->id
, 'badges', 'userbadge', $this->id
);
634 $DB->delete_records('badge_issued', array('badgeid' => $this->id
));
636 // Remove all badge criteria.
637 $criteria = $this->get_criteria();
638 foreach ($criteria as $criterion) {
639 $criterion->delete();
642 // Delete badge images.
643 $badgecontext = $this->get_context();
644 $fs->delete_area_files($badgecontext->id
, 'badges', 'badgeimage', $this->id
);
646 // Finally, remove badge itself.
647 $DB->delete_records('badge', array('id' => $this->id
));
652 * Sends notifications to users about awarded badges.
654 * @param badge $badge Badge that was issued
655 * @param int $userid Recipient ID
656 * @param string $issued Unique hash of an issued badge
657 * @param string $filepathhash File path hash of an issued badge for attachments
659 function badges_notify_badge_award(badge
$badge, $userid, $issued, $filepathhash) {
662 $admin = get_admin();
663 $userfrom = new stdClass();
664 $userfrom->id
= $admin->id
;
665 $userfrom->email
= !empty($CFG->badges_defaultissuercontact
) ?
$CFG->badges_defaultissuercontact
: $admin->email
;
666 foreach (get_all_user_name_fields() as $addname) {
667 $userfrom->$addname = !empty($CFG->badges_defaultissuername
) ?
'' : $admin->$addname;
669 $userfrom->firstname
= !empty($CFG->badges_defaultissuername
) ?
$CFG->badges_defaultissuername
: $admin->firstname
;
670 $userfrom->maildisplay
= true;
672 $issuedlink = html_writer
::link(new moodle_url('/badges/badge.php', array('hash' => $issued)), $badge->name
);
673 $userto = $DB->get_record('user', array('id' => $userid), '*', MUST_EXIST
);
675 $params = new stdClass();
676 $params->badgename
= $badge->name
;
677 $params->username
= fullname($userto);
678 $params->badgelink
= $issuedlink;
679 $message = badge_message_from_template($badge->message
, $params);
680 $plaintext = format_text_email($message, FORMAT_HTML
);
683 $eventdata = new stdClass();
684 $eventdata->component
= 'moodle';
685 $eventdata->name
= 'badgerecipientnotice';
686 $eventdata->userfrom
= $userfrom;
687 $eventdata->userto
= $userto;
688 $eventdata->notification
= 1;
689 $eventdata->subject
= $badge->messagesubject
;
690 $eventdata->fullmessage
= $plaintext;
691 $eventdata->fullmessageformat
= FORMAT_PLAIN
;
692 $eventdata->fullmessagehtml
= $message;
693 $eventdata->smallmessage
= $plaintext;
695 // Attach badge image if possible.
696 if (!empty($CFG->allowattachments
) && $badge->attachment
&& is_string($filepathhash)) {
697 $fs = get_file_storage();
698 $file = $fs->get_file_by_hash($filepathhash);
699 $eventdata->attachment
= $file;
700 $eventdata->attachname
= str_replace(' ', '_', $badge->name
) . ".png";
702 message_send($eventdata);
704 message_send($eventdata);
707 // Notify badge creator about the award if they receive notifications every time.
708 if ($badge->notification
== 1) {
709 $userfrom = core_user
::get_noreply_user();
710 $userfrom->maildisplay
= true;
712 $creator = $DB->get_record('user', array('id' => $badge->usercreated
), '*', MUST_EXIST
);
714 $a->user
= fullname($userto);
715 $a->link
= $issuedlink;
716 $creatormessage = get_string('creatorbody', 'badges', $a);
717 $creatorsubject = get_string('creatorsubject', 'badges', $badge->name
);
719 $eventdata = new stdClass();
720 $eventdata->component
= 'moodle';
721 $eventdata->name
= 'badgecreatornotice';
722 $eventdata->userfrom
= $userfrom;
723 $eventdata->userto
= $creator;
724 $eventdata->notification
= 1;
725 $eventdata->subject
= $creatorsubject;
726 $eventdata->fullmessage
= format_text_email($creatormessage, FORMAT_HTML
);
727 $eventdata->fullmessageformat
= FORMAT_PLAIN
;
728 $eventdata->fullmessagehtml
= $creatormessage;
729 $eventdata->smallmessage
= $creatorsubject;
731 message_send($eventdata);
732 $DB->set_field('badge_issued', 'issuernotified', time(), array('badgeid' => $badge->id
, 'userid' => $userid));
737 * Caclulates date for the next message digest to badge creators.
739 * @param in $schedule Type of message schedule BADGE_MESSAGE_DAILY|BADGE_MESSAGE_WEEKLY|BADGE_MESSAGE_MONTHLY.
740 * @return int Timestamp for next cron
742 function badges_calculate_message_schedule($schedule) {
746 case BADGE_MESSAGE_DAILY
:
747 $nextcron = time() +
60 * 60 * 24;
749 case BADGE_MESSAGE_WEEKLY
:
750 $nextcron = time() +
60 * 60 * 24 * 7;
752 case BADGE_MESSAGE_MONTHLY
:
753 $nextcron = time() +
60 * 60 * 24 * 7 * 30;
761 * Replaces variables in a message template and returns text ready to be emailed to a user.
763 * @param string $message Message body.
764 * @return string Message with replaced values
766 function badge_message_from_template($message, $params) {
768 foreach ($params as $key => $value) {
769 $msg = str_replace("%$key%", $value, $msg);
778 * @param int Type of badges to return
779 * @param int Course ID for course badges
780 * @param string $sort An SQL field to sort by
781 * @param string $dir The sort direction ASC|DESC
782 * @param int $page The page or records to return
783 * @param int $perpage The number of records to return per page
784 * @param int $user User specific search
785 * @return array $badge Array of records matching criteria
787 function badges_get_badges($type, $courseid = 0, $sort = '', $dir = '', $page = 0, $perpage = BADGE_PERPAGE
, $user = 0) {
791 $where = "b.status != :deleted AND b.type = :type ";
792 $params['deleted'] = BADGE_STATUS_ARCHIVED
;
794 $userfields = array('b.id, b.name, b.status');
797 $userfields[] = 'bi.dateissued';
798 $userfields[] = 'bi.uniquehash';
799 $usersql = " LEFT JOIN {badge_issued} bi ON b.id = bi.badgeid AND bi.userid = :userid ";
800 $params['userid'] = $user;
801 $where .= " AND (b.status = 1 OR b.status = 3) ";
803 $fields = implode(', ', $userfields);
805 if ($courseid != 0 ) {
806 $where .= "AND b.courseid = :courseid ";
807 $params['courseid'] = $courseid;
810 $sorting = (($sort != '' && $dir != '') ?
'ORDER BY ' . $sort . ' ' . $dir : '');
811 $params['type'] = $type;
813 $sql = "SELECT $fields FROM {badge} b $usersql WHERE $where $sorting";
814 $records = $DB->get_records_sql($sql, $params, $page * $perpage, $perpage);
817 foreach ($records as $r) {
818 $badge = new badge($r->id
);
819 $badges[$r->id
] = $badge;
821 $badges[$r->id
]->dateissued
= $r->dateissued
;
822 $badges[$r->id
]->uniquehash
= $r->uniquehash
;
824 $badges[$r->id
]->awards
= $DB->count_records_sql('SELECT COUNT(b.userid)
825 FROM {badge_issued} b INNER JOIN {user} u ON b.userid = u.id
826 WHERE b.badgeid = :badgeid AND u.deleted = 0', array('badgeid' => $badge->id
));
827 $badges[$r->id
]->statstring
= $badge->get_status_name();
834 * Get badges for a specific user.
836 * @param int $userid User ID
837 * @param int $courseid Badges earned by a user in a specific course
838 * @param int $page The page or records to return
839 * @param int $perpage The number of records to return per page
840 * @param string $search A simple string to search for
841 * @param bool $onlypublic Return only public badges
842 * @return array of badges ordered by decreasing date of issue
844 function badges_get_user_badges($userid, $courseid = 0, $page = 0, $perpage = 0, $search = '', $onlypublic = false) {
861 WHERE b.id = bi.badgeid
865 if (!empty($search)) {
866 $sql .= ' AND (' . $DB->sql_like('b.name', '?', false) . ') ';
867 $params[] = "%$search%";
870 $sql .= ' AND (bi.visible = 1) ';
873 if ($courseid != 0) {
874 $sql .= ' AND (b.courseid = ' . $courseid . ') ';
876 $sql .= ' ORDER BY bi.dateissued DESC';
877 $badges = $DB->get_records_sql($sql, $params, $page * $perpage, $perpage);
883 * Extends the course administration navigation with the Badges page
885 * @param navigation_node $coursenode
886 * @param object $course
888 function badges_add_course_navigation(navigation_node
$coursenode, stdClass
$course) {
891 $coursecontext = context_course
::instance($course->id
);
892 $isfrontpage = (!$coursecontext ||
$course->id
== $SITE->id
);
893 $canmanage = has_any_capability(array('moodle/badges:viewawarded',
894 'moodle/badges:createbadge',
895 'moodle/badges:awardbadge',
896 'moodle/badges:configurecriteria',
897 'moodle/badges:configuremessages',
898 'moodle/badges:configuredetails',
899 'moodle/badges:deletebadge'), $coursecontext);
901 if (!empty($CFG->enablebadges
) && !empty($CFG->badges_allowcoursebadges
) && !$isfrontpage && $canmanage) {
902 $coursenode->add(get_string('coursebadges', 'badges'), null,
903 navigation_node
::TYPE_CONTAINER
, null, 'coursebadges',
904 new pix_icon('i/badge', get_string('coursebadges', 'badges')));
906 $url = new moodle_url('/badges/index.php', array('type' => BADGE_TYPE_COURSE
, 'id' => $course->id
));
908 $coursenode->get('coursebadges')->add(get_string('managebadges', 'badges'), $url,
909 navigation_node
::TYPE_SETTING
, null, 'coursebadges');
911 if (has_capability('moodle/badges:createbadge', $coursecontext)) {
912 $url = new moodle_url('/badges/newbadge.php', array('type' => BADGE_TYPE_COURSE
, 'id' => $course->id
));
914 $coursenode->get('coursebadges')->add(get_string('newbadge', 'badges'), $url,
915 navigation_node
::TYPE_SETTING
, null, 'newbadge');
921 * Triggered when badge is manually awarded.
923 * @param object $data
926 function badges_award_handle_manual_criteria_review(stdClass
$data) {
927 $criteria = $data->crit
;
928 $userid = $data->userid
;
929 $badge = new badge($criteria->badgeid
);
931 if (!$badge->is_active() ||
$badge->is_issued($userid)) {
935 if ($criteria->review($userid)) {
936 $criteria->mark_complete($userid);
938 if ($badge->criteria
[BADGE_CRITERIA_TYPE_OVERALL
]->review($userid)) {
939 $badge->criteria
[BADGE_CRITERIA_TYPE_OVERALL
]->mark_complete($userid);
940 $badge->issue($userid);
948 * Process badge image from form data
950 * @param badge $badge Badge object
951 * @param string $iconfile Original file
953 function badges_process_badge_image(badge
$badge, $iconfile) {
955 require_once($CFG->libdir
. '/gdlib.php');
957 if (!empty($CFG->gdversion
)) {
958 process_new_icon($badge->get_context(), 'badges', 'badgeimage', $badge->id
, $iconfile);
961 // Clean up file draft area after badge image has been saved.
962 $context = context_user
::instance($USER->id
, MUST_EXIST
);
963 $fs = get_file_storage();
964 $fs->delete_area_files($context->id
, 'user', 'draft');
971 * @param badge $badge Badge object
972 * @param stdClass $context
973 * @param string $size
975 function print_badge_image(badge
$badge, stdClass
$context, $size = 'small') {
976 $fsize = ($size == 'small') ?
'f2' : 'f1';
978 $imageurl = moodle_url
::make_pluginfile_url($context->id
, 'badges', 'badgeimage', $badge->id
, '/', $fsize, false);
979 // Appending a random parameter to image link to forse browser reload the image.
980 $imageurl->param('refresh', rand(1, 10000));
981 $attributes = array('src' => $imageurl, 'alt' => s($badge->name
), 'class' => 'activatebadge');
983 return html_writer
::empty_tag('img', $attributes);
989 * @param string $hash Unique hash of an issued badge.
990 * @param int $badgeid ID of the original badge.
991 * @param int $userid ID of badge recipient (optional).
992 * @param boolean $pathhash Return file pathhash instead of image url (optional).
993 * @return string|url Returns either new file path hash or new file URL
995 function badges_bake($hash, $badgeid, $userid = 0, $pathhash = false) {
997 require_once(dirname(dirname(__FILE__
)) . '/badges/lib/bakerlib.php');
999 $badge = new badge($badgeid);
1000 $badge_context = $badge->get_context();
1001 $userid = ($userid) ?
$userid : $USER->id
;
1002 $user_context = context_user
::instance($userid);
1004 $fs = get_file_storage();
1005 if (!$fs->file_exists($user_context->id
, 'badges', 'userbadge', $badge->id
, '/', $hash . '.png')) {
1006 if ($file = $fs->get_file($badge_context->id
, 'badges', 'badgeimage', $badge->id
, '/', 'f1.png')) {
1007 $contents = $file->get_content();
1009 $filehandler = new PNG_MetaDataHandler($contents);
1010 $assertion = new moodle_url('/badges/assertion.php', array('b' => $hash));
1011 if ($filehandler->check_chunks("tEXt", "openbadges")) {
1012 // Add assertion URL tExt chunk.
1013 $newcontents = $filehandler->add_chunks("tEXt", "openbadges", $assertion->out(false));
1015 'contextid' => $user_context->id
,
1016 'component' => 'badges',
1017 'filearea' => 'userbadge',
1018 'itemid' => $badge->id
,
1020 'filename' => $hash . '.png',
1023 // Create a file with added contents.
1024 $newfile = $fs->create_file_from_string($fileinfo, $newcontents);
1026 return $newfile->get_pathnamehash();
1030 debugging('Error baking badge image!', DEBUG_DEVELOPER
);
1035 // If file exists and we just need its path hash, return it.
1037 $file = $fs->get_file($user_context->id
, 'badges', 'userbadge', $badge->id
, '/', $hash . '.png');
1038 return $file->get_pathnamehash();
1041 $fileurl = moodle_url
::make_pluginfile_url($user_context->id
, 'badges', 'userbadge', $badge->id
, '/', $hash, true);
1046 * Returns external backpack settings and badges from this backpack.
1048 * This function first checks if badges for the user are cached and
1049 * tries to retrieve them from the cache. Otherwise, badges are obtained
1050 * through curl request to the backpack.
1052 * @param int $userid Backpack user ID.
1053 * @param boolean $refresh Refresh badges collection in cache.
1054 * @return null|object Returns null is there is no backpack or object with backpack settings.
1056 function get_backpack_settings($userid, $refresh = false) {
1058 require_once(dirname(dirname(__FILE__
)) . '/badges/lib/backpacklib.php');
1060 // Try to get badges from cache first.
1061 $badgescache = cache
::make('core', 'externalbadges');
1062 $out = $badgescache->get($userid);
1063 if ($out !== false && !$refresh) {
1066 // Get badges through curl request to the backpack.
1067 $record = $DB->get_record('badge_backpack', array('userid' => $userid));
1069 $backpack = new OpenBadgesBackpackHandler($record);
1070 $out = new stdClass();
1071 $out->backpackurl
= $backpack->get_url();
1073 if ($collections = $DB->get_records('badge_external', array('backpackid' => $record->id
))) {
1074 $out->totalcollections
= count($collections);
1075 $out->totalbadges
= 0;
1076 $out->badges
= array();
1077 foreach ($collections as $collection) {
1078 $badges = $backpack->get_badges($collection->collectionid
);
1079 if (isset($badges->badges
)) {
1080 $out->badges
= array_merge($out->badges
, $badges->badges
);
1081 $out->totalbadges +
= count($out->badges
);
1083 $out->badges
= array_merge($out->badges
, array());
1087 $out->totalbadges
= 0;
1088 $out->totalcollections
= 0;
1091 $badgescache->set($userid, $out);
1099 * Download all user badges in zip archive.
1101 * @param int $userid ID of badge owner.
1103 function badges_download($userid) {
1105 $context = context_user
::instance($userid);
1106 $records = $DB->get_records('badge_issued', array('userid' => $userid));
1108 // Get list of files to download.
1109 $fs = get_file_storage();
1110 $filelist = array();
1111 foreach ($records as $issued) {
1112 $badge = new badge($issued->badgeid
);
1113 // Need to make image name user-readable and unique using filename safe characters.
1114 $name = $badge->name
. ' ' . userdate($issued->dateissued
, '%d %b %Y') . ' ' . hash('crc32', $badge->id
);
1115 $name = str_replace(' ', '_', $name);
1116 if ($file = $fs->get_file($context->id
, 'badges', 'userbadge', $issued->badgeid
, '/', $issued->uniquehash
. '.png')) {
1117 $filelist[$name . '.png'] = $file;
1121 // Zip files and sent them to a user.
1122 $tempzip = tempnam($CFG->tempdir
.'/', 'mybadges');
1123 $zipper = new zip_packer();
1124 if ($zipper->archive_to_pathname($filelist, $tempzip)) {
1125 send_temp_file($tempzip, 'badges.zip');
1127 debugging("Problems with archiving the files.");
1132 * Print badges on user profile page.
1134 * @param int $userid User ID.
1135 * @param int $courseid Course if we need to filter badges (optional).
1137 function profile_display_badges($userid, $courseid = 0) {
1138 global $CFG, $PAGE, $USER, $SITE;
1139 require_once($CFG->dirroot
. '/badges/renderer.php');
1141 // Determine context.
1143 $context = context_user
::instance($USER->id
);
1145 $context = context_system
::instance();
1148 if ($USER->id
== $userid ||
has_capability('moodle/badges:viewotherbadges', $context)) {
1149 $records = badges_get_user_badges($userid, $courseid, null, null, null, true);
1150 $renderer = new core_badges_renderer($PAGE, '');
1152 // Print local badges.
1154 $left = get_string('localbadgesp', 'badges', format_string($SITE->fullname
));
1155 $right = $renderer->print_badges_list($records, $userid, true);
1156 echo html_writer
::tag('dt', $left);
1157 echo html_writer
::tag('dd', $right);
1160 // Print external badges.
1161 if ($courseid == 0 && !empty($CFG->badges_allowexternalbackpack
)) {
1162 $backpack = get_backpack_settings($userid);
1163 if (isset($backpack->totalbadges
) && $backpack->totalbadges
!== 0) {
1164 $left = get_string('externalbadgesp', 'badges');
1165 $right = $renderer->print_badges_list($backpack->badges
, $userid, true, true);
1166 echo html_writer
::tag('dt', $left);
1167 echo html_writer
::tag('dd', $right);
1174 * Checks if badges can be pushed to external backpack.
1176 * @return string Code of backpack accessibility status.
1178 function badges_check_backpack_accessibility() {
1180 include_once $CFG->libdir
. '/filelib.php';
1182 // Using fake assertion url to check whether backpack can access the web site.
1183 $fakeassertion = new moodle_url('/badges/assertion.php', array('b' => 'abcd1234567890'));
1185 // Curl request to backpack baker.
1188 'FRESH_CONNECT' => true,
1189 'RETURNTRANSFER' => true,
1191 'CONNECTTIMEOUT' => 2,
1193 $location = 'http://' . BADGE_BACKPACKURL
. '/baker';
1194 $out = $curl->get($location, array('assertion' => $fakeassertion->out(false)), $options);
1196 $data = json_decode($out);
1197 if (!empty($curl->error
)) {
1198 return 'curl-request-timeout';
1200 if (isset($data->code
) && $data->code
== 'http-unreachable') {
1201 return 'http-unreachable';
1211 * Checks if user has external backpack connected.
1213 * @param int $userid ID of a user.
1214 * @return bool True|False whether backpack connection exists.
1216 function badges_user_has_backpack($userid) {
1218 return $DB->record_exists('badge_backpack', array('userid' => $userid));
1222 * Handles what happens to the course badges when a course is deleted.
1224 * @param int $courseid course ID.
1227 function badges_handle_course_deletion($courseid) {
1229 include_once $CFG->libdir
. '/filelib.php';
1231 $systemcontext = context_system
::instance();
1232 $coursecontext = context_course
::instance($courseid);
1233 $fs = get_file_storage();
1235 // Move badges images to the system context.
1236 $fs->move_area_files_to_new_context($coursecontext->id
, $systemcontext->id
, 'badges', 'badgeimage');
1238 // Get all course badges.
1239 $badges = $DB->get_records('badge', array('type' => BADGE_TYPE_COURSE
, 'courseid' => $courseid));
1240 foreach ($badges as $badge) {
1241 // Archive badges in this course.
1242 $toupdate = new stdClass();
1243 $toupdate->id
= $badge->id
;
1244 $toupdate->type
= BADGE_TYPE_SITE
;
1245 $toupdate->courseid
= null;
1246 $toupdate->status
= BADGE_STATUS_ARCHIVED
;
1247 $DB->update_record('badge', $toupdate);
1252 * Loads JS files required for backpack support.
1257 function badges_setup_backpack_js() {
1259 if (!empty($CFG->badges_allowexternalbackpack
)) {
1260 $PAGE->requires
->string_for_js('error:backpackproblem', 'badges');
1261 $protocol = (strpos($CFG->wwwroot
, 'https://') === 0) ?
'https://' : 'http://';
1262 $PAGE->requires
->js(new moodle_url($protocol . BADGE_BACKPACKURL
. '/issuer.js'), true);
1263 $PAGE->requires
->js('/badges/backpack.js', true);