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. |
- Overrides:
If not defined.
# assertValidRoleForMethod(userId)
Asserts that userId is logged in as an Admin, Faculty, or Advisor. 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 in the allowed roles.
# 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 slugID, opportunityTypeID, sponsorID, interestIDs, termIDs
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.
- Overrides:
The number of non-retired elements in this collection.
# define(description, name, slug, description, opportunityType, interests, sponsor, ice, eventDate1, eventDateLabel1, eventDate2, eventDateLabel2, eventDate3, eventDateLabel3, eventDate4, eventDateLabel4, picture, retired)
Defines a new Opportunity.
Parameters:
Name | Type | Description |
---|---|---|
description |
Object | Object with keys name, slug, description, opportunityType, sponsor, interests, |
name |
the name of the opportunity. |
|
slug |
must not be previously defined. |
|
description |
the description of the opportunity. Can be markdown. |
|
opportunityType |
must be defined slug. |
|
interests |
must be a (possibly empty) array of interest slugs or IDs. |
|
sponsor |
must be a User with role 'FACULTY', 'ADVISOR', or 'ADMIN'. |
|
ice |
must be a valid ICE object. |
|
eventDate1 |
||
eventDateLabel1 |
||
eventDate2 |
||
eventDateLabel2 |
||
eventDate3 |
||
eventDateLabel3 |
||
eventDate4 |
||
eventDateLabel4 |
||
picture |
The URL to the opportunity picture. (optional, defaults to a default picture.) |
|
retired |
optional, true if the opportunity is retired. |
If the definition includes a defined slug or undefined interest, sponsor, opportunityType, or startActive or endActive are not valid.
The newly created docID.
Example
Opportunities.define({ name: 'ATT Hackathon',
slug: 'att-hackathon',
description: 'Programming challenge at Sacred Hearts Academy, $10,000 prize',
opportunityType: 'event',
sponsor: 'philipjohnson',
ice: { i: 10, c: 0, e: 10},
interests: ['software-engineering'],
});
# 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 Opportunity docID in a format acceptable to define().
Parameters:
Name | Type | Description |
---|---|---|
docID |
The docID of an Opportunity. |
An object representing the definition of docID.
# 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.
# findDocBySlug(slug) → {Object}
Returns the instance associated with the passed slug.
Parameters:
Name | Type | Description |
---|---|---|
slug |
String | The slug (string or docID). |
- Overrides:
If the slug cannot be found, or is not associated with an instance in this collection.
The document representing the instance.
# findIdBySlug(slug) → {String}
Return the docID of the instance associated with this slug.
Parameters:
Name | Type | Description |
---|---|---|
slug |
String | The slug (string or docID). |
- Overrides:
If the slug cannot be found, or is not associated with an instance in this collection.
The docID.
# findIdsBySlugs(slugs) → {Array}
Returns a list of docIDs associated with the instances associated with the list of slugs.
Parameters:
Name | Type | Description |
---|---|---|
slugs |
Array | A list or collection of slugs. |
- Overrides:
If the slug cannot be found, or is not associated with an instance in this collection.
A list of docIDs.
# findNames(instanceIDs) → {Array}
Returns a list of Opportunity names corresponding to the passed list of Opportunity docIDs.
Parameters:
Name | Type | Description |
---|---|---|
instanceIDs |
A list of Opportunity docIDs. |
If any of the instanceIDs cannot be found.
# 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:
# findRelatedCareerGoals(docIdOrSlug) → {Array.<CareerGoals>}
Returns a list of CareerGoals that have common interests.
Parameters:
Name | Type | Description |
---|---|---|
docIdOrSlug |
string | an opportunity ID or slug. |
Courses that have common interests.
# findRelatedCourses(docIdOrSlug) → {Array.<Course>}
Returns a list of Courses that have common interests.
Parameters:
Name | Type | Description |
---|---|---|
docIdOrSlug |
string | an opportunity ID or slug. |
Courses that have common interests.
# findRelatedInternships(docIdOrSlug) → {Array.<Internship>}
Returns a list of Internships that have common interests.
Parameters:
Name | Type | Description |
---|---|---|
docIdOrSlug |
string | an opportunity ID or slug. |
Internships that have common interests.
# findSlugByID(docID) → {String}
Returns the slug name associated with this docID.
Parameters:
Name | Type | Description |
---|---|---|
docID |
The docID |
- Overrides:
If docID is not associated with this entity.
The slug name
# getCollection() → {Mongo.Collection}
Returns the Mongo collection.
- Overrides:
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.
- Overrides:
the define method's parameter.
# getID(instance) → {String}
Returns the docID associated with instance, or throws an error if it cannot be found. If instance is an object with an _id field, then that value is checked to see if it's in the collection. If instance is the value for the username field in this collection, then return that document's ID. If instance is a docID, then it is returned unchanged. If instance is a slug, its corresponding docID is returned.
Parameters:
Name | Type | Description |
---|---|---|
instance |
String | Either a valid docID or a valid slug string. |
If instance is not a docID or a slug.
The docID associated with instance.
# getIDs(instances) → {Array.<String>}
Returns the docIDs associated with instances, or throws an error if any cannot be found. If an instance is a docID, then it is returned unchanged. If a slug, its corresponding docID is returned. If nothing is passed, then an empty array is returned.
Parameters:
Name | Type | Description |
---|---|---|
instances |
Array.<String> | An array of valid docIDs, slugs, or a combination. |
If any instance is not a docID or a slug.
The docIDs associated with instances.
# getOpportunityTypeDoc(instanceID) → {Object}
Returns the OpportunityType associated with the Opportunity with the given instanceID.
Parameters:
Name | Type | Description |
---|---|---|
instanceID |
The id of the Opportunity. |
If instanceID is not a valid ID.
The associated Opportunity.
# getPublicationName() → {String}
Return the publication name.
- Overrides:
The publication name, as a string.
# getUpdateSchema() → {SimpleSchema}
Returns a schema for the update method's second parameter.
- Overrides:
.
# hasInterest(opportunity, interest) → {boolean}
Returns true if Opportunity has the specified interest.
Parameters:
Name | Type | Description |
---|---|---|
opportunity |
The opportunity(docID or slug) |
|
interest |
The Interest (docID or slug). |
If opportunity is not a opportunity or interest is not a Interest.
True if the opportunity has the associated Interest.
# hasSlug(slug) → {boolean}
Returns true if the passed slug is associated with an entity of this type.
Parameters:
Name | Type | Description |
---|---|---|
slug |
String | Either the name of a slug or a slugID. |
True if the slug is in this collection.
# isDefined(instance) → {boolean}
Return true if instance is a docID or a slug for this entity.
Parameters:
Name | Type | Description |
---|---|---|
instance |
String | A docID or a slug. |
- Overrides:
True if instance is a docID or slug for this entity.
# publish()
Default publication method for entities. It publishes the entire collection.
# 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(instance)
Remove the Opportunity.
Parameters:
Name | Type | Description |
---|---|---|
instance |
The docID or slug of the entity to be removed. |
If docID is not a Opportunity, or if this Opportunity has any associated opportunity instances.
# 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.
# sort()
Returns the instances sorted by slug string. Instances could be instanceIDs or slug names. Only tested so far with instances being slug names. Hopefully this.findDocBySlug resolves 'this' to the subcollection.
# subscribe()
Default subscription method for entities. It subscribes to the entire collection.
# toString() → {String}
Returns a string representing all of the documents in this collection.
# update(instance, name, description, opportunityType, sponsor, interests, academicTerms, eventDate, ice, retired, picture)
Update an Opportunity.
Parameters:
Name | Type | Description |
---|---|---|
instance |
The docID or slug associated with this opportunity. |
|
name |
a string (optional). |
|
description |
a string (optional). |
|
opportunityType |
docID or slug (optional). |
|
sponsor |
user in role admin, advisor, or faculty. (optional). |
|
interests |
array of slugs or IDs, (optional). |
|
academicTerms |
array of slugs or IDs, (optional). |
|
eventDate |
a Date (optional). // Deprecated |
|
ice |
An ICE object (optional). |
|
retired |
boolean (optional). |
|
picture |
a string (optional). |