Extends
Methods
# assertAllDefined(names)
Verifies that the list of passed instances are all members of this collection.
Parameters:
Name | Type | Description |
---|---|---|
names |
Should be a list of docs and/or docIDs. |
- Overrides:
If instances is not an array, or if any instance is not in this collection.
# assertDefined(name)
Verifies that the passed object is one of this collection's instances.
Parameters:
Name | Type | Description |
---|---|---|
name |
String | List | Should be a defined ID or doc in this collection. |
If not defined.
# assertValidRoleForMethod(userId)
Implementation of assertValidRoleForMethod. Asserts that userId is logged in as an Admin, Advisor or Student. This is used in the define, update, and removeIt Meteor methods associated with each class.
Parameters:
Name | Type | Description |
---|---|---|
userId |
The userId of the logged in user. Can be null or undefined |
If there is no logged in user, or the user is not an Admin or Advisor.
# checkIntegrity() → {Array}
Returns an array of strings, each one representing an integrity problem with this collection. Returns an empty array if no problems were found. Checks termID, opportunityID, studentID
A (possibly empty) array of strings indicating integrity issues.
# count() → {Number}
Returns the number of documents in this collection.
The number of elements in this collection.
# countNonRetired() → {Number}
Returns the number of non-retired documents in this collection.
The number of non-retired elements in this collection.
# define(description)
Defines a new OpportunityInstance.
Parameters:
Name | Type | Description |
---|---|---|
description |
Object | AcademicTerm, opportunity, and student must be slugs or IDs. Verified defaults to false. Sponsor defaults to the opportunity sponsor. Note that only one opportunity instance can be defined for a given academicTerm, opportunity, and student. |
If academicTerm, opportunity, or student cannot be resolved, or if verified is not a boolean.
The newly created docID.
Example
OpportunityInstances.define({ academicTerm: 'Fall-2015',
opportunity: 'hack2015',
verified: false,
student: 'joesmith',
sponsor: 'johnson' });
# dumpAll() → {Object}
Returns an object with two fields: name and contents. Name is the name of this collection. Contents is an array of objects suitable for passing to the restore() method.
An object representing the contents of this collection.
# dumpOne(docID) → {Object}
Returns an object representing the OpportunityInstance docID in a format acceptable to define().
Parameters:
Name | Type | Description |
---|---|---|
docID |
The docID of an OpportunityInstance. |
An object representing the definition of docID.
# dumpUser(usernameOrID) → {Array.<OpportunityInstanceDefine>}
Dumps the OpportunityInstances for the given usernameOrID.
Parameters:
Name | Type | Description |
---|---|---|
usernameOrID |
string |
# find(selector, options) → {Mongo.Cursor}
Runs find on this collection.
Parameters:
Name | Type | Description |
---|---|---|
selector |
Object | A MongoDB selector. |
options |
Object | MongoDB options. |
- Overrides:
- See:
# findDoc(name) → {Object}
A stricter form of findOne, in that it throws an exception if the entity isn't found in the collection.
Parameters:
Name | Type | Description |
---|---|---|
name |
String | Object | Either the docID, or an object selector, or the 'name' field value. |
If the document cannot be found.
The document associated with name.
# findNonRetired(selector, options) → {Array}
Runs find on this collection and returns the non-retired documents.
Parameters:
Name | Type | Description |
---|---|---|
selector |
Object | A MongoDB selector. |
options |
Object | MongoDB options. |
- Overrides:
- See:
non-retired documents.
# findOne(selector, options) → {Mongo.Cursor}
Runs findOne on this collection.
Parameters:
Name | Type | Description |
---|---|---|
selector |
Object | A MongoDB selector. |
options |
Object | MongoDB options. |
- Overrides:
- See:
# findOpportunityInstanceDoc(academicTerm, opportunity, student) → {Object}
Returns the opportunityInstance document associated with academicTerm, opportunity, and student.
Parameters:
Name | Type | Description |
---|---|---|
academicTerm |
The academicTerm (slug or ID). |
|
opportunity |
The opportunity (slug or ID). |
|
student |
The student (slug or ID) |
If academicTerm, opportunity, or student does not exist.
Returns the document or null if not found.
# getAcademicTermDoc(instanceID) → {Object}
Returns the AcademicTerm associated with the OpportunityInstance with the given instanceID.
Parameters:
Name | Type | Description |
---|---|---|
instanceID |
The id of the OpportunityInstance. |
If instanceID is not a valid ID.
The associated AcademicTerm.
# getCollection() → {Mongo.Collection}
Returns the Mongo collection.
The collection.
# getCollectionName() → {string}
Returns the collection name.
- Overrides:
The collection name as a string.
# getCollectionSchema() → {SimpleSchema}
Returns the schema applied to the collection.
- Overrides:
.
# getDefineSchema() → {SimpleSchema}
Returns a schema for the define method's parameter.
the define method's parameter.
# getOpportunityDoc(instanceID) → {Object}
Returns the Opportunity associated with the OpportunityInstance with the given instanceID.
Parameters:
Name | Type | Description |
---|---|---|
instanceID |
The id of the OpportunityInstance. |
If instanceID is not a valid ID.
The associated Opportunity.
# getOpportunitySlug(instanceID) → {string}
Returns the Opportunity slug for the instance's corresponding Opportunity.
Parameters:
Name | Type | Description |
---|---|---|
instanceID |
The OpportunityInstance ID. |
The opportunity slug.
# getPublicationName() → {String}
Return the publication name.
- Overrides:
The publication name, as a string.
# getStudentDoc(instanceID) → {Object}
Returns the Student profile associated with the OpportunityInstance with the given instanceID.
Parameters:
Name | Type | Description |
---|---|---|
instanceID |
The id of the OpportunityInstance. |
If instanceID is not a valid ID.
The associated Student profile.
# getUnverifiedInstances(student) → {Array.<OpportunityInstance>}
Returns the unverified opportunity instances for the given student.
Parameters:
Name | Type | Description |
---|---|---|
student |
string | username or ID. |
the unverified opportunity instances.
# getUpdateSchema() → {SimpleSchema}
Returns a schema for the update method's second parameter.
.
# isDefined(name) → {boolean}
Returns true if the passed entity is in this collection.
Parameters:
Name | Type | Description |
---|---|---|
name |
String | Object | The docID, or an object specifying a documennt. |
True if name exists in this collection.
# isOpportunityInstance(academicTerm, opportunity, student)
Returns true if there exists an OpportunityInstance for the given academicTerm, opportunity, and student.
Parameters:
Name | Type | Description |
---|---|---|
academicTerm |
The academicTerm (slug or ID). |
|
opportunity |
The opportunity (slug or ID). |
|
student |
The student (slug or ID). |
If academicTerm, opportunity, or student does not exist.
True if the opportunity instance exists.
# publish()
Depending on the logged in user publish only their OpportunityInstances. If the user is in the Role.ADMIN then publish all OpportunityInstances.
# removeAll()
Removes all elements of this collection. This is implemented by mapping through all elements because mini-mongo does not implement the remove operation. So this approach can be used on both client and server side. removeAll should only used for testing purposes, so it doesn't need to be efficient.
true
# removeIt(docID)
Remove the opportunity instance.
Parameters:
Name | Type | Description |
---|---|---|
docID |
The docID of the opportunity instance. |
# removeUser(user)
Removes all OpportunityInstance documents referring to user.
Parameters:
Name | Type | Description |
---|---|---|
user |
The user, either the ID or the username. |
If user is not an ID or username.
# restoreAll(dumpObjects)
Defines all the entities in the passed array of objects.
Parameters:
Name | Type | Description |
---|---|---|
dumpObjects |
The array of objects representing the definition of a document in this collection. |
# restoreOne(dumpObject) → {String}
Defines the entity represented by dumpObject. Defaults to calling the define() method if it exists.
Parameters:
Name | Type | Description |
---|---|---|
dumpObject |
An object representing one document in this collection. |
The docID of the newly created document.
# subscribe()
Default subscription method for entities. It subscribes to the entire collection.
# toString(opportunityInstanceID) → {String}
Parameters:
Name | Type | Description |
---|---|---|
opportunityInstanceID |
The opportunity instance ID. |
If not a valid ID.
This opportunity instance, formatted as a string.
# update(docID, termID, verified, ice)
Update the opportunity instance. Only verified and ICE fields can be updated.
Parameters:
Name | Type | Description |
---|---|---|
docID |
The course instance docID (required). |
|
termID |
the termID for the course instance optional. |
|
verified |
boolean optional. |
|
ice |
an object with fields i, c, e (optional) |
# updateAcademicTerm(opportunityInstanceID, termID)
Updates the OpportunityInstance's AcademicTerm.
Parameters:
Name | Type | Description |
---|---|---|
opportunityInstanceID |
The opportunity instance ID. |
|
termID |
The academicTerm id. |
If not a valid ID.
# updateVerified(opportunityInstanceID, verified)
Updates the verified field.
Parameters:
Name | Type | Description |
---|---|---|
opportunityInstanceID |
The opportunity instance ID. |
|
verified |
The new value of verified. |
If not a valid ID.