2018-03-22 14:51:00 +01:00
|
|
|
// (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 { CoreLoggerProvider } from '@providers/logger';
|
|
|
|
import { CoreEventsProvider } from '@providers/events';
|
|
|
|
import { CoreSitesProvider } from '@providers/sites';
|
|
|
|
import { CoreUtilsProvider } from '@providers/utils/utils';
|
|
|
|
import { CoreDelegate, CoreDelegateHandler } from '@classes/delegate';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface that all access rules handlers must implement.
|
|
|
|
*/
|
|
|
|
export interface AddonModQuizAccessRuleHandler extends CoreDelegateHandler {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Name of the rule the handler supports. E.g. 'password'.
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
ruleName: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the rule requires a preflight check when prefetch/start/continue an attempt.
|
|
|
|
*
|
|
|
|
* @param {any} quiz The quiz the rule belongs to.
|
2018-03-26 14:29:30 +02:00
|
|
|
* @param {any} [attempt] The attempt started/continued. If not supplied, user is starting a new attempt.
|
2018-03-22 14:51:00 +01:00
|
|
|
* @param {boolean} [prefetch] Whether the user is prefetching the quiz.
|
|
|
|
* @param {string} [siteId] Site ID. If not defined, current site.
|
|
|
|
* @return {boolean|Promise<boolean>} Whether the rule requires a preflight check.
|
|
|
|
*/
|
2018-03-26 14:29:30 +02:00
|
|
|
isPreflightCheckRequired(quiz: any, attempt?: any, prefetch?: boolean, siteId?: string): boolean | Promise<boolean>;
|
2018-03-22 14:51:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add preflight data that doesn't require user interaction. The data should be added to the preflightData param.
|
|
|
|
*
|
|
|
|
* @param {any} quiz The quiz the rule belongs to.
|
|
|
|
* @param {any} preflightData Object where to add the preflight data.
|
2018-03-26 14:29:30 +02:00
|
|
|
* @param {any} [attempt] The attempt started/continued. If not supplied, user is starting a new attempt.
|
2018-03-22 14:51:00 +01:00
|
|
|
* @param {boolean} [prefetch] Whether the user is prefetching the quiz.
|
|
|
|
* @param {string} [siteId] Site ID. If not defined, current site.
|
|
|
|
* @return {void|Promise<any>} Promise resolved when done if async, void if it's synchronous.
|
|
|
|
*/
|
2018-03-26 14:29:30 +02:00
|
|
|
getFixedPreflightData?(quiz: any, preflightData: any, attempt?: any, prefetch?: boolean, siteId?: string): void | Promise<any>;
|
2018-03-22 14:51:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the Component to use to display the access rule preflight.
|
|
|
|
* Implement this if your access rule requires a preflight check with user interaction.
|
|
|
|
* It's recommended to return the class of the component, but you can also return an instance of the component.
|
|
|
|
*
|
|
|
|
* @param {Injector} injector Injector.
|
|
|
|
* @return {any|Promise<any>} The component (or promise resolved with component) to use, undefined if not found.
|
|
|
|
*/
|
|
|
|
getPreflightComponent?(injector: Injector): any | Promise<any>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called when the preflight check has passed. This is a chance to record that fact in some way.
|
|
|
|
*
|
|
|
|
* @param {any} quiz The quiz the rule belongs to.
|
|
|
|
* @param {any} attempt The attempt started/continued.
|
|
|
|
* @param {any} preflightData Preflight data gathered.
|
|
|
|
* @param {boolean} [prefetch] Whether the user is prefetching the quiz.
|
|
|
|
* @param {string} [siteId] Site ID. If not defined, current site.
|
|
|
|
* @return {void|Promise<any>} Promise resolved when done if async, void if it's synchronous.
|
|
|
|
*/
|
|
|
|
notifyPreflightCheckPassed?(quiz: any, attempt: any, preflightData: any, prefetch?: boolean, siteId?: string)
|
|
|
|
: void | Promise<any>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function called when the preflight check fails. This is a chance to record that fact in some way.
|
|
|
|
*
|
|
|
|
* @param {any} quiz The quiz the rule belongs to.
|
|
|
|
* @param {any} attempt The attempt started/continued.
|
|
|
|
* @param {any} preflightData Preflight data gathered.
|
|
|
|
* @param {boolean} [prefetch] Whether the user is prefetching the quiz.
|
|
|
|
* @param {string} [siteId] Site ID. If not defined, current site.
|
|
|
|
* @return {void|Promise<any>} Promise resolved when done if async, void if it's synchronous.
|
|
|
|
*/
|
|
|
|
notifyPreflightCheckFailed?(quiz: any, attempt: any, preflightData: any, prefetch?: boolean, siteId?: string)
|
|
|
|
: void | Promise<any>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the time left of an attempt should be displayed.
|
|
|
|
*
|
|
|
|
* @param {any} attempt The attempt.
|
|
|
|
* @param {number} endTime The attempt end time (in seconds).
|
|
|
|
* @param {number} timeNow The current time in seconds.
|
|
|
|
* @return {boolean} Whether it should be displayed.
|
|
|
|
*/
|
|
|
|
shouldShowTimeLeft?(attempt: any, endTime: number, timeNow: number): boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delegate to register access rules for quiz module.
|
|
|
|
*/
|
|
|
|
@Injectable()
|
|
|
|
export class AddonModQuizAccessRuleDelegate extends CoreDelegate {
|
|
|
|
|
|
|
|
protected handlerNameProperty = 'ruleName';
|
|
|
|
|
|
|
|
constructor(logger: CoreLoggerProvider, sitesProvider: CoreSitesProvider, eventsProvider: CoreEventsProvider,
|
|
|
|
protected utils: CoreUtilsProvider) {
|
|
|
|
super('AddonModQuizAccessRulesDelegate', logger, sitesProvider, eventsProvider);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the handler for a certain rule.
|
|
|
|
*
|
|
|
|
* @param {string} ruleName Name of the access rule.
|
|
|
|
* @return {AddonModQuizAccessRuleHandler} Handler. Undefined if no handler found for the rule.
|
|
|
|
*/
|
|
|
|
getAccessRuleHandler(ruleName: string): AddonModQuizAccessRuleHandler {
|
|
|
|
return <AddonModQuizAccessRuleHandler> this.getHandler(ruleName, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a list of rules, get some fixed preflight data (data that doesn't require user interaction).
|
|
|
|
*
|
|
|
|
* @param {string[]} rules List of active rules names.
|
|
|
|
* @param {any} quiz Quiz.
|
|
|
|
* @param {any} preflightData Object where to store the preflight data.
|
2018-03-26 14:29:30 +02:00
|
|
|
* @param {any} [attempt] The attempt started/continued. If not supplied, user is starting a new attempt.
|
2018-03-22 14:51:00 +01:00
|
|
|
* @param {boolean} [prefetch] Whether the user is prefetching the quiz.
|
|
|
|
* @param {string} [siteId] Site ID. If not defined, current site.
|
|
|
|
* @return {Promise<any>} Promise resolved when all the data has been gathered.
|
|
|
|
*/
|
2018-03-26 14:29:30 +02:00
|
|
|
getFixedPreflightData(rules: string[], quiz: any, preflightData: any, attempt?: any, prefetch?: boolean, siteId?: string)
|
2018-03-22 14:51:00 +01:00
|
|
|
: Promise<any> {
|
|
|
|
rules = rules || [];
|
|
|
|
|
|
|
|
const promises = [];
|
|
|
|
rules.forEach((rule) => {
|
|
|
|
promises.push(Promise.resolve(
|
2018-03-26 14:29:30 +02:00
|
|
|
this.executeFunctionOnEnabled(rule, 'getFixedPreflightData', [quiz, preflightData, attempt, prefetch, siteId])
|
2018-03-22 14:51:00 +01:00
|
|
|
));
|
|
|
|
});
|
|
|
|
|
|
|
|
return this.utils.allPromises(promises).catch(() => {
|
|
|
|
// Never reject.
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-03-26 14:29:30 +02:00
|
|
|
/**
|
|
|
|
* Get the Component to use to display the access rule preflight.
|
|
|
|
*
|
|
|
|
* @param {Injector} injector Injector.
|
|
|
|
* @return {Promise<any>} Promise resolved with the component to use, undefined if not found.
|
|
|
|
*/
|
|
|
|
getPreflightComponent(rule: string, injector: Injector): Promise<any> {
|
|
|
|
return Promise.resolve(this.executeFunctionOnEnabled(rule, 'getPreflightComponent', [injector]));
|
|
|
|
}
|
|
|
|
|
2018-03-22 14:51:00 +01:00
|
|
|
/**
|
|
|
|
* Check if an access rule is supported.
|
|
|
|
*
|
|
|
|
* @param {string} ruleName Name of the rule.
|
|
|
|
* @return {boolean} Whether it's supported.
|
|
|
|
*/
|
|
|
|
isAccessRuleSupported(ruleName: string): boolean {
|
|
|
|
return this.hasHandler(ruleName, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a list of rules, check if preflight check is required.
|
|
|
|
*
|
|
|
|
* @param {string[]} rules List of active rules names.
|
|
|
|
* @param {any} quiz Quiz.
|
2018-03-26 14:29:30 +02:00
|
|
|
* @param {any} [attempt] The attempt started/continued. If not supplied, user is starting a new attempt.
|
2018-03-22 14:51:00 +01:00
|
|
|
* @param {boolean} [prefetch] Whether the user is prefetching the quiz.
|
|
|
|
* @param {string} [siteId] Site ID. If not defined, current site.
|
|
|
|
* @return {Promise<boolean>} Promise resolved with boolean: whether it's required.
|
|
|
|
*/
|
|
|
|
isPreflightCheckRequired(rules: string[], quiz: any, attempt: any, prefetch?: boolean, siteId?: string): Promise<boolean> {
|
|
|
|
rules = rules || [];
|
|
|
|
|
|
|
|
const promises = [];
|
|
|
|
let isRequired = false;
|
|
|
|
|
|
|
|
rules.forEach((rule) => {
|
2018-03-26 14:29:30 +02:00
|
|
|
promises.push(this.isPreflightCheckRequiredForRule(rule, quiz, attempt, prefetch, siteId).then((required) => {
|
2018-03-22 14:51:00 +01:00
|
|
|
if (required) {
|
|
|
|
isRequired = true;
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
return this.utils.allPromises(promises).then(() => {
|
|
|
|
return isRequired;
|
|
|
|
}).catch(() => {
|
|
|
|
// Never reject.
|
|
|
|
return isRequired;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-03-26 14:29:30 +02:00
|
|
|
/**
|
|
|
|
* Check if preflight check is required for a certain rule.
|
|
|
|
*
|
|
|
|
* @param {string} rule Rule name.
|
|
|
|
* @param {any} quiz Quiz.
|
|
|
|
* @param {any} [attempt] The attempt started/continued. If not supplied, user is starting a new attempt.
|
|
|
|
* @param {boolean} [prefetch] Whether the user is prefetching the quiz.
|
|
|
|
* @param {string} [siteId] Site ID. If not defined, current site.
|
|
|
|
* @return {Promise<boolean>} Promise resolved with boolean: whether it's required.
|
|
|
|
*/
|
|
|
|
isPreflightCheckRequiredForRule(rule: string, quiz: any, attempt: any, prefetch?: boolean, siteId?: string): Promise<boolean> {
|
|
|
|
return Promise.resolve(this.executeFunctionOnEnabled(rule, 'isPreflightCheckRequired', [quiz, attempt, prefetch, siteId]));
|
|
|
|
}
|
|
|
|
|
2018-03-22 14:51:00 +01:00
|
|
|
/**
|
|
|
|
* Notify all rules that the preflight check has passed.
|
|
|
|
*
|
|
|
|
* @param {string[]} rules List of active rules names.
|
|
|
|
* @param {any} quiz Quiz.
|
|
|
|
* @param {any} attempt Attempt.
|
|
|
|
* @param {any} preflightData Preflight data gathered.
|
|
|
|
* @param {boolean} [prefetch] Whether the user is prefetching the quiz.
|
|
|
|
* @param {string} [siteId] Site ID. If not defined, current site.
|
|
|
|
* @return {Promise<any>} Promise resolved when done.
|
|
|
|
*/
|
|
|
|
notifyPreflightCheckPassed(rules: string[], quiz: any, attempt: any, preflightData: any, prefetch?: boolean, siteId?: string)
|
|
|
|
: Promise<any> {
|
|
|
|
rules = rules || [];
|
|
|
|
|
|
|
|
const promises = [];
|
|
|
|
rules.forEach((rule) => {
|
|
|
|
promises.push(Promise.resolve(
|
|
|
|
this.executeFunctionOnEnabled(rule, 'notifyPreflightCheckPassed', [quiz, attempt, preflightData, prefetch, siteId])
|
|
|
|
));
|
|
|
|
});
|
|
|
|
|
|
|
|
return this.utils.allPromises(promises).catch(() => {
|
|
|
|
// Never reject.
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify all rules that the preflight check has failed.
|
|
|
|
*
|
|
|
|
* @param {string[]} rules List of active rules names.
|
|
|
|
* @param {any} quiz Quiz.
|
|
|
|
* @param {any} attempt Attempt.
|
|
|
|
* @param {any} preflightData Preflight data gathered.
|
|
|
|
* @param {boolean} [prefetch] Whether the user is prefetching the quiz.
|
|
|
|
* @param {string} [siteId] Site ID. If not defined, current site.
|
|
|
|
* @return {Promise<any>} Promise resolved when done.
|
|
|
|
*/
|
|
|
|
notifyPreflightCheckFailed(rules: string[], quiz: any, attempt: any, preflightData: any, prefetch?: boolean, siteId?: string)
|
|
|
|
: Promise<any> {
|
|
|
|
rules = rules || [];
|
|
|
|
|
|
|
|
const promises = [];
|
|
|
|
rules.forEach((rule) => {
|
|
|
|
promises.push(Promise.resolve(
|
|
|
|
this.executeFunctionOnEnabled(rule, 'notifyPreflightCheckFailed', [quiz, attempt, preflightData, prefetch, siteId])
|
|
|
|
));
|
|
|
|
});
|
|
|
|
|
|
|
|
return this.utils.allPromises(promises).catch(() => {
|
|
|
|
// Never reject.
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the time left of an attempt should be displayed.
|
|
|
|
*
|
|
|
|
* @param {string[]} rules List of active rules names.
|
|
|
|
* @param {any} attempt The attempt.
|
|
|
|
* @param {number} endTime The attempt end time (in seconds).
|
|
|
|
* @param {number} timeNow The current time in seconds.
|
|
|
|
* @return {boolean} Whether it should be displayed.
|
|
|
|
*/
|
|
|
|
shouldShowTimeLeft(rules: string[], attempt: any, endTime: number, timeNow: number): boolean {
|
|
|
|
rules = rules || [];
|
|
|
|
|
|
|
|
for (const i in rules) {
|
|
|
|
const rule = rules[i];
|
|
|
|
|
|
|
|
if (this.executeFunctionOnEnabled(rule, 'shouldShowTimeLeft', [attempt, endTime, timeNow])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|