// (C) Copyright 2015 Martin Dougiamas // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import { Injectable, Injector } from '@angular/core'; import { CoreDelegate, CoreDelegateHandler } from '@classes/delegate'; import { CoreEventsProvider } from '@providers/events'; import { CoreLoggerProvider } from '@providers/logger'; import { CoreSitesProvider } from '@providers/sites'; import { CoreUtilsProvider, PromiseDefer } from '@providers/utils/utils'; import { CoreCoursesProvider } from '@core/courses/providers/courses'; import { CoreCourseProvider } from './course'; /** * Interface that all course options handlers must implement. */ export interface CoreCourseOptionsHandler extends CoreDelegateHandler { /** * The highest priority is displayed first. * @type {number} */ priority: number; /** * Whether or not the handler is enabled for a certain course. * * @param {number} courseId The course ID. * @param {any} accessData Access type and data. Default, guest, ... * @param {any} [navOptions] Course navigation options for current user. See CoreCoursesProvider.getUserNavigationOptions. * @param {any} [admOptions] Course admin options for current user. See CoreCoursesProvider.getUserAdministrationOptions. * @return {boolean|Promise} True or promise resolved with true if enabled. */ isEnabledForCourse(courseId: number, accessData: any, navOptions?: any, admOptions?: any): boolean | Promise; /** * Returns the data needed to render the handler. * * @param {Injector} injector Injector. * @param {number} courseId The course ID. * @return {CoreCourseOptionsHandlerData|Promise} Data or promise resolved with the data. */ getDisplayData?(injector: Injector, courseId: number): CoreCourseOptionsHandlerData | Promise; /** * Should invalidate the data to determine if the handler is enabled for a certain course. * * @param {number} courseId The course ID. * @param {any} [navOptions] Course navigation options for current user. See CoreCoursesProvider.getUserNavigationOptions. * @param {any} [admOptions] Course admin options for current user. See CoreCoursesProvider.getUserAdministrationOptions. * @return {Promise} Promise resolved when done. */ invalidateEnabledForCourse?(courseId: number, navOptions?: any, admOptions?: any): Promise; /** * Called when a course is downloaded. It should prefetch all the data to be able to see the addon in offline. * * @param {any} course The course. * @return {Promise} Promise resolved when done. */ prefetch?(course: any): Promise; } /** * Data needed to render a course handler. It's returned by the handler. */ export interface CoreCourseOptionsHandlerData { /** * Title to display for the handler. * @type {string} */ title: string; /** * Class to add to the displayed handler. * @type {string} */ class?: string; /** * The component to render the handler. It must be the component class, not the name or an instance. * When the component is created, it will receive the courseId as input. */ component: any; /** * Data to pass to the component. All the properties in this object will be passed to the component as inputs. * @type {any} */ componentData?: any; } /** * Data returned by the delegate for each handler. */ export interface CoreCourseOptionsHandlerToDisplay { /** * Data to display. * @type {CoreCourseOptionsHandlerData} */ data: CoreCourseOptionsHandlerData; /** * The highest priority is displayed first. * @type {number} */ priority?: number; /** * Called when a course is downloaded. It should prefetch all the data to be able to see the addon in offline. * * @param {any} course The course. * @return {Promise} Promise resolved when done. */ prefetch?(course: any): Promise; } /** * Service to interact with plugins to be shown in each course (participants, learning plans, ...). */ @Injectable() export class CoreCourseOptionsDelegate extends CoreDelegate { protected loaded: { [courseId: number]: boolean } = {}; protected lastUpdateHandlersForCoursesStart: any = {}; protected coursesHandlers: { [courseId: number]: { access?: any, navOptions?: any, admOptions?: any, deferred?: PromiseDefer, enabledHandlers?: CoreCourseOptionsHandler[] } } = {}; protected featurePrefix = 'CoreCourseOptionsDelegate_'; constructor(loggerProvider: CoreLoggerProvider, protected sitesProvider: CoreSitesProvider, private utils: CoreUtilsProvider, protected eventsProvider: CoreEventsProvider, private coursesProvider: CoreCoursesProvider) { super('CoreCourseOptionsDelegate', loggerProvider, sitesProvider, eventsProvider); eventsProvider.on(CoreEventsProvider.LOGOUT, () => { this.clearCoursesHandlers(); }); } /** * Check if handlers are loaded for a certain course. * * @param {number} courseId The course ID to check. * @return {boolean} True if handlers are loaded, false otherwise. */ areHandlersLoaded(courseId: number): boolean { return !!this.loaded[courseId]; } /** * Clear all course options handlers. * * @param {number} [courseId] The course ID. If not defined, all handlers will be cleared. */ protected clearCoursesHandlers(courseId?: number): void { if (courseId) { this.loaded[courseId] = false; delete this.coursesHandlers[courseId]; } else { this.loaded = {}; this.coursesHandlers = {}; } } /** * Clear all courses handlers and invalidate its options. * * @param {number} [courseId] The course ID. If not defined, all handlers will be cleared. * @return {Promise} Promise resolved when done. */ clearAndInvalidateCoursesOptions(courseId?: number): Promise { const promises = []; this.eventsProvider.trigger(CoreCoursesProvider.EVENT_MY_COURSES_REFRESHED); // Invalidate course enabled data for the handlers that are enabled at site level. if (courseId) { // Invalidate only options for this course. promises.push(this.coursesProvider.invalidateCoursesAdminAndNavOptions([courseId])); promises.push(this.invalidateCourseHandlers(courseId)); } else { // Invalidate all options. promises.push(this.coursesProvider.invalidateUserNavigationOptions()); promises.push(this.coursesProvider.invalidateUserAdministrationOptions()); for (const cId in this.coursesHandlers) { promises.push(this.invalidateCourseHandlers(parseInt(cId, 10))); } } this.clearCoursesHandlers(courseId); return Promise.all(promises); } /** * Get the handlers for a course using a certain access type. * * @param {number} courseId The course ID. * @param {boolean} refresh True if it should refresh the list. * @param {any} accessData Access type and data. Default, guest, ... * @param {any} [navOptions] Course navigation options for current user. See CoreCoursesProvider.getUserNavigationOptions. * @param {any} [admOptions] Course admin options for current user. See CoreCoursesProvider.getUserAdministrationOptions. * @return {Promise} Promise resolved with array of handlers. */ protected getHandlersForAccess(courseId: number, refresh: boolean, accessData: any, navOptions?: any, admOptions?: any): Promise { // If the handlers aren't loaded, do not refresh. if (!this.loaded[courseId]) { refresh = false; } if (refresh || !this.coursesHandlers[courseId] || this.coursesHandlers[courseId].access.type != accessData.type) { if (!this.coursesHandlers[courseId]) { this.coursesHandlers[courseId] = {}; } this.coursesHandlers[courseId].access = accessData; this.coursesHandlers[courseId].navOptions = navOptions; this.coursesHandlers[courseId].admOptions = admOptions; this.coursesHandlers[courseId].deferred = this.utils.promiseDefer(); this.updateHandlersForCourse(courseId, accessData, navOptions, admOptions); } return this.coursesHandlers[courseId].deferred.promise.then(() => { return this.coursesHandlers[courseId].enabledHandlers; }); } /** * Get the list of handlers that should be displayed for a course. * This function should be called only when the handlers need to be displayed, since it can call several WebServices. * * @param {Injector} injector Injector. * @param {any} course The course object. * @param {boolean} [refresh] True if it should refresh the list. * @param {boolean} [isGuest] Whether it's guest. * @param {any} [navOptions] Course navigation options for current user. See CoreCoursesProvider.getUserNavigationOptions. * @param {any} [admOptions] Course admin options for current user. See CoreCoursesProvider.getUserAdministrationOptions. * @return {Promise} Promise resolved with array of handlers. */ getHandlersToDisplay(injector: Injector, course: any, refresh?: boolean, isGuest?: boolean, navOptions?: any, admOptions?: any): Promise { course.id = parseInt(course.id, 10); const accessData = { type: isGuest ? CoreCourseProvider.ACCESS_GUEST : CoreCourseProvider.ACCESS_DEFAULT }; if (navOptions) { course.navOptions = navOptions; } if (admOptions) { course.admOptions = admOptions; } return this.loadCourseOptions(course, refresh).then(() => { // Call getHandlersForAccess to make sure the handlers have been loaded. return this.getHandlersForAccess(course.id, refresh, accessData, course.navOptions, course.admOptions); }).then(() => { const handlersToDisplay: CoreCourseOptionsHandlerToDisplay[] = [], promises = []; this.coursesHandlers[course.id].enabledHandlers.forEach((handler) => { promises.push(Promise.resolve(handler.getDisplayData(injector, course)).then((data) => { handlersToDisplay.push({ data: data, priority: handler.priority, prefetch: handler.prefetch }); }).catch((err) => { this.logger.error('Error getting data for handler', handler.name, err); })); }); // Sort them by priority. handlersToDisplay.sort((a, b) => { return b.priority - a.priority; }); return handlersToDisplay; }); } /** * Check if a course has any handler enabled for default access, using course object. * * @param {any} course The course object. * @param {boolean} [refresh] True if it should refresh the list. * @return {Promise} Promise resolved with boolean: true if it has handlers, false otherwise. */ hasHandlersForCourse(course: any, refresh?: boolean): Promise { // Load course options if missing. return this.loadCourseOptions(course, refresh).then(() => { return this.hasHandlersForDefault(course.id, refresh, course.navOptions, course.admOptions); }); } /** * Check if a course has any handler enabled for default access. * * @param {number} courseId The course ID. * @param {boolean} [refresh] True if it should refresh the list. * @param {any} [navOptions] Course navigation options for current user. See CoreCoursesProvider.getUserNavigationOptions. * @param {any} [admOptions] Course admin options for current user. See CoreCoursesProvider.getUserAdministrationOptions. * @return {Promise} Promise resolved with boolean: true if it has handlers, false otherwise. */ hasHandlersForDefault(courseId: number, refresh?: boolean, navOptions?: any, admOptions?: any): Promise { // Default access. const accessData = { type: CoreCourseProvider.ACCESS_DEFAULT }; return this.getHandlersForAccess(courseId, refresh, accessData, navOptions, admOptions).then((handlers) => { return !!(handlers && handlers.length); }); } /** * Check if a course has any handler enabled for guest access. * * @param {number} courseId The course ID. * @param {boolean} [refresh] True if it should refresh the list. * @param {any} [navOptions] Course navigation options for current user. See CoreCoursesProvider.getUserNavigationOptions. * @param {any} [admOptions] Course admin options for current user. See CoreCoursesProvider.getUserAdministrationOptions. * @return {Promise} Promise resolved with boolean: true if it has handlers, false otherwise. */ hasHandlersForGuest(courseId: number, refresh?: boolean, navOptions?: any, admOptions?: any): Promise { // Guest access. const accessData = { type: CoreCourseProvider.ACCESS_GUEST }; return this.getHandlersForAccess(courseId, refresh, accessData, navOptions, admOptions).then((handlers) => { return !!(handlers && handlers.length); }); } /** * Invalidate the data to be able to determine if handlers are enabled for a certain course. * * @param {number} courseId Course ID. * @return {Promise} Promise resolved when done. */ invalidateCourseHandlers(courseId: number): Promise { const promises = [], courseData = this.coursesHandlers[courseId]; if (!courseData) { return Promise.resolve(); } courseData.enabledHandlers.forEach((handler) => { if (handler && handler.invalidateEnabledForCourse) { promises.push(Promise.resolve( handler.invalidateEnabledForCourse(courseId, courseData.navOptions, courseData.admOptions))); } }); return this.utils.allPromises(promises); } /** * Check if a time belongs to the last update handlers for course call. * This is to handle the cases where updateHandlersForCourse don't finish in the same order as they're called. * * @param {number} courseId Course ID. * @param {number} time Time to check. * @return {boolean} Whether it's the last call. */ isLastUpdateCourseCall(courseId: number, time: number): boolean { if (!this.lastUpdateHandlersForCoursesStart[courseId]) { return true; } return time == this.lastUpdateHandlersForCoursesStart[courseId]; } /** * Load course options if missing. * * @param {any} course The course object. * @param {boolean} [refresh] True if it should refresh the list. * @return {Promise} Promise resolved when done. */ protected loadCourseOptions(course: any, refresh?: boolean): Promise { if (this.coursesProvider.canGetAdminAndNavOptions() && (typeof course.navOptions == 'undefined' || typeof course.admOptions == 'undefined' || refresh)) { return this.coursesProvider.getCoursesAdminAndNavOptions([course.id]).then((options) => { course.navOptions = options.navOptions[course.id]; course.admOptions = options.admOptions[course.id]; }); } else { return Promise.resolve(); } } /** * Update handlers for each course. * * @param {string} [siteId] Site ID. */ updateData(siteId?: string): void { if (this.sitesProvider.getCurrentSiteId() === siteId) { // Update handlers for all courses. for (const courseId in this.coursesHandlers) { const handler = this.coursesHandlers[courseId]; this.updateHandlersForCourse(parseInt(courseId, 10), handler.access, handler.navOptions, handler.admOptions); } } } /** * Update the handlers for a certain course. * * @param {number} courseId The course ID. * @param {any} accessData Access type and data. Default, guest, ... * @param {any} [navOptions] Course navigation options for current user. See CoreCoursesProvider.getUserNavigationOptions. * @param {any} [admOptions] Course admin options for current user. See CoreCoursesProvider.getUserAdministrationOptions. * @return {Promise} Resolved when updated. */ updateHandlersForCourse(courseId: number, accessData: any, navOptions?: any, admOptions?: any): Promise { const promises = [], enabledForCourse = [], siteId = this.sitesProvider.getCurrentSiteId(), now = Date.now(); this.lastUpdateHandlersForCoursesStart[courseId] = now; for (const name in this.enabledHandlers) { const handler = this.enabledHandlers[name]; // Checks if the handler is enabled for the user. promises.push(Promise.resolve(handler.isEnabledForCourse(courseId, accessData, navOptions, admOptions)) .then((enabled) => { if (enabled) { enabledForCourse.push(handler); } else { return Promise.reject(null); } }).catch(() => { // Nothing to do here, it is not enabled for this user. })); } return Promise.all(promises).then(() => { return true; }).catch(() => { // Never fails. return true; }).finally(() => { // Verify that this call is the last one that was started. // Check that site hasn't changed since the check started. if (this.isLastUpdateCourseCall(courseId, now) && this.sitesProvider.getCurrentSiteId() === siteId) { // Update the coursesHandlers array with the new enabled addons. this.coursesHandlers[courseId].enabledHandlers = enabledForCourse; this.loaded[courseId] = true; // Resolve the promise. this.coursesHandlers[courseId].deferred.resolve(); } }); } }