radgrad/radgrad2

View on GitHub
archive/api/feedback/FeedbackInstanceCollection.ts

Summary

Maintainability
A
1 hr
Test Coverage
import _ from 'lodash';
import { Meteor } from 'meteor/meteor';
import SimpleSchema from 'simpl-schema';
import { ROLE } from '../../../app/imports/api/role/Role';
import { Users } from '../../../app/imports/api/user/UserCollection';
import BaseCollection from '../../../app/imports/api/base/BaseCollection';
import { FeedbackInstanceDefine, FeedbackInstanceUpdate } from '../../../app/imports/typings/radgrad';

/**
 * Each FeedbackInstance represents one recommendation or warning for a user.
 * @extends api/base.BaseCollection
 * @memberOf api/feedback
 */
class FeedbackInstanceCollection extends BaseCollection {
  public WARNING: string;

  public RECOMMENDATION: string;

  public feedbackTypes: string[];

  /**
   * Creates the FeedbackInstance collection.
   */
  constructor() {
    super('FeedbackInstance', new SimpleSchema({
      userID: { type: SimpleSchema.RegEx.Id },
      functionName: String,
      description: String,
      feedbackType: String,
      retired: { type: Boolean, optional: true },
    }));
    this.WARNING = 'Warning';
    this.RECOMMENDATION = 'Recommendation';
    this.feedbackTypes = [this.WARNING, this.RECOMMENDATION];
    if (Meteor.isServer) {
      this.collection._ensureIndex({ _id: 1, userID: 1, feedbackType: 1 });
    }
    this.defineSchema = new SimpleSchema({
      user: String,
      functionName: String,
      description: String,
      feedbackType: { type: String, allowedValues: this.feedbackTypes },
      retired: { type: Boolean, optional: true },
    });
    this.updateSchema = new SimpleSchema({
      user: { type: String, optional: true },
      functionName: { type: String, optional: true },
      description: { type: String, optional: true },
      feedbackType: { type: String, allowedValues: this.feedbackTypes, optional: true },
      retired: { type: Boolean, optional: true },
    });
  }

  /**
   * Defines a new FeedbackInstance.
   * @example
   * FeedbackInstances.define({ user: 'joesmith',
   *                            functionName: 'checkPrerequisites',
   *                            description: 'The prerequisite ICS 211 for the class ICS 314 is not satisfied.',
   *                            feedbackType: 'Warning' });
   * @param { Object } User, functionName, description, and feedbackType are all required.
   * user must be a username or docID for a user (presumably a student).
   * functionName is the name of a feedback function.
   * Description is the string to appear as the feedback.
   * feedbackType is either 'Recommendation' or 'Warning'.
   * @throws {Meteor.Error} If user or feedbackType cannot be resolved.
   * @returns The newly created docID.
   */
  public define({ user, functionName, description, feedbackType, retired = false }: FeedbackInstanceDefine) {
    // Validate Feedback and user.
    const userID = Users.getID(user);
    if (!_.includes(this.feedbackTypes, feedbackType)) {
      throw new Meteor.Error(`FeedbackInstances.define passed illegal feedbackType: ${feedbackType}`);
    }
    const doc = this.collection.findOne({ userID, functionName, description, feedbackType });
    if (doc) {
      return doc._id;
    }
    // Define and return the new FeedbackInstance
    const feedbackInstanceID = this.collection.insert({ userID, functionName, description, feedbackType, retired });
    return feedbackInstanceID;
  }

  /**
   * Update the course instance. Only a subset of fields can be updated.
   * @param docID
   * @param user
   * @param description
   * @param feedbackType
   * @param functionName
   */
  public update(docID: string, { user, description, feedbackType, functionName, retired }: FeedbackInstanceUpdate) {
    this.assertDefined(docID);
    const updateData: { userID?: string; description?: string; feedbackType?: string; functionName?: string; retired?: boolean; } = {};
    if (user) {
      updateData.userID = user;
    }
    if (description) {
      updateData.description = description;
    }
    if (feedbackType) {
      updateData.feedbackType = feedbackType;
    }
    if (functionName) {
      updateData.functionName = functionName;
    }
    if (_.isBoolean(retired)) {
      updateData.retired = retired;
    }
    this.collection.update(docID, { $set: updateData });
  }

  /**
   * Returns the FeedbackInstance associated with the given user, functionName, and feedbackType.
   * @param user The user (slug or ID)
   * @param functionName The feedback function name.
   * @param feedbackType The feedback type.
   * @returns {any}
   */
  public findFeedbackInstance(user: string, functionName: string, feedbackType: string) {
    const userID = Users.getID(user);
    return this.collection.findOne({ userID, functionName, feedbackType });
  }

  /**
   * Returns true if there exists a FeedbackInstance for the given user, functionName and feedbackType.
   * @param user the user (slug or ID)
   * @param functionName the feedback function name
   * @param feedbackType the feedback type.
   * @returns {boolean}
   */
  public isFeedbackInstance(user: string, functionName: string, feedbackType: string) {
    return !!this.findFeedbackInstance(user, functionName, feedbackType);
  }

  /**
   * Removes all FeedbackInstances associated with user and functionName.
   * @param user The user (typically a student).
   * @param functionName The FeedbackFunction name.
   */
  public clear(user: string, functionName: string) {
    const userID = Users.getID(user);
    this.collection.remove({ userID, functionName });
  }

  /**
   * Removes all FeedbackInstance documents referring to user.
   * @param user The user, either the ID or the username.
   * @throws { Meteor.Error } If user is not an ID or username.
   */
  public removeUser(user: string) {
    const userID = Users.getID(user);
    this.collection.remove({ userID });
  }

  /**
   * Returns a cursor to all the Warnings associated with this user.
   * @param user The user of interest.
   */
  public findWarnings(user: string) {
    const userID = Users.getID(user);
    return this.collection.find({ userID, feedbackType: this.WARNING });
  }

  /**
   * Returns a cursor to all the Warnings associated with this user.
   * @param user The user of interest.
   */
  public findRecommendations(user: string) {
    const userID = Users.getID(user);
    return this.collection.find({ userID, feedbackType: this.RECOMMENDATION });
  }

  /**
   * Implementation of assertValidRoleForMethod. Asserts that userId is logged in as an Admin, Advisor or
   * user.
   * This is used in the define, update, and removeIt Meteor methods associated with each class.
   * @param userId The userId of the logged in user. Can be null or undefined
   * @throws { Meteor.Error } If there is no logged in user, or the user is not an Admin or Advisor.
   */
  public assertValidRoleForMethod(userId: string) {
    this.assertRole(userId, [ROLE.ADMIN, ROLE.ADVISOR, ROLE.STUDENT]);
  }

  /**
   * Depending on the logged in user publish only their FeedbackInstances. If
   * the user is in the Role.ADMIN then publish all FeedbackInstances.
   */
  public publish() {
    if (Meteor.isServer) {
      const collection = this.collection;
      // eslint-disable-next-line meteor/audit-argument-checks
      Meteor.publish(this.collectionName, function publish(userID) {
        if (_.isNil(userID)) {
          return this.ready();
        }
        if (!this.userId) { // https://github.com/meteor/meteor/issues/9619
          return this.ready();
        }
        const profile = Users.getProfile(userID);
        if (profile.role === ROLE.ADMIN || Meteor.isAppTest) {
          return collection.find();
        }
        return collection.find({ userID, retired: { $not: { $eq: true } } });
      });
    }
  }

  /**
   * Returns an array of strings, each one representing an integrity problem with this collection.
   * Returns an empty array if no problems were found.
   * Checks userID
   * @returns {Array} A (possibly empty) array of strings indicating integrity issues.
   */
  public checkIntegrity() {
    const problems = [];
    this.find().forEach((doc) => {
      if (!Users.isDefined(doc.userID)) {
        problems.push(`Bad userID: ${doc.userID}`);
      }
    });
    return problems;
  }

  /**
   * Returns an object representing the FeedbackInstance docID in a format acceptable to define().
   * @param docID The docID of a FeedbackInstance.
   * @returns { Object } An object representing the definition of docID.
   */
  public dumpOne(docID: string): FeedbackInstanceDefine {
    const doc = this.findDoc(docID);
    const user = Users.getProfile(doc.userID).username;
    const functionName = doc.functionName;
    const description = doc.description;
    const feedbackType = doc.feedbackType;
    const retired = doc.retired;
    return { user, functionName, description, feedbackType, retired };
  }

}

/**
 * Provides the singleton instance of this class to all other entities.
 * @memberOf api/feedback
 */
export const FeedbackInstances = new FeedbackInstanceCollection();