import { SimpleSchema } from 'meteor/aldeed:simple-schema'; import Users from './collection.js'; const adminGroup = { name: "admin", order: 10 }; const ownsOrIsAdmin = (user, document) => { return Users.owns(user, document) || Users.isAdmin(user); }; /** * @summary Users schema * @type {Object} */ const schema = { _id: { type: String, optional: true, viewableBy: ['guests'], preload: true, }, username: { type: String, optional: true, viewableBy: ['guests'], preload: true, }, emails: { type: [Object], optional: true, }, "emails.$.address": { type: String, regEx: SimpleSchema.RegEx.Email, optional: true, }, "emails.$.verified": { type: Boolean, optional: true, }, createdAt: { type: Date, optional: true, viewableBy: ['guests'], preload: true, }, isAdmin: { type: Boolean, label: "Admin", control: "checkbox", optional: true, insertableBy: ['admins'], editableBy: ['admins'], viewableBy: ['guests'], group: adminGroup, preload: true, }, profile: { type: Object, optional: true, blackbox: true }, // telescope-specific data, kept for backward compatibility and migration purposes telescope: { type: Object, blackbox: true, optional: true, viewableBy: ['guests'], }, services: { type: Object, optional: true, blackbox: true, }, /** Bio (Markdown version) */ bio: { type: String, optional: true, control: "textarea", insertableBy: ['members'], editableBy: ['members'], viewableBy: ['guests'], }, /** The name displayed throughout the app. Can contain spaces and special characters, doesn't need to be unique */ displayName: { type: String, optional: true, control: "text", insertableBy: ['members'], editableBy: ['members'], viewableBy: ['guests'], preload: true, }, /** The user's email. Modifiable. */ email: { type: String, optional: true, regEx: SimpleSchema.RegEx.Email, required: true, control: "text", insertableBy: ['members'], editableBy: ['members'], viewableBy: ownsOrIsAdmin, preload: true, // unique: true // note: find a way to fix duplicate accounts before enabling this }, /** A hash of the email, used for Gravatar // TODO: change this when email changes */ emailHash: { type: String, optional: true, viewableBy: ['guests'], preload: true, }, /** The HTML version of the bio field */ htmlBio: { type: String, optional: true, viewableBy: ['guests'], }, /** The user's karma */ karma: { type: Number, decimal: true, optional: true, viewableBy: ['guests'], }, /** The user's profile URL slug // TODO: change this when displayName changes */ slug: { type: String, optional: true, viewableBy: ['guests'], preload: true, }, /** The user's Twitter username */ twitterUsername: { type: String, optional: true, control: "text", insertableBy: ['members'], editableBy: ['members'], viewableBy: ['guests'], resolveAs: 'twitterUsername: String', }, /** A link to the user's homepage */ website: { type: String, regEx: SimpleSchema.RegEx.Url, optional: true, control: "text", insertableBy: ['members'], editableBy: ['members'], viewableBy: ['guests'], }, /** Groups */ groups: { type: [String], optional: true, control: "checkboxgroup", insertableBy: ['admins'], editableBy: ['admins'], viewableBy: ['guests'], form: { options: function () { const groups = _.without(_.keys(Users.groups), "guests", "members", "admins"); return groups.map(group => {return {value: group, label: group};}); } }, preload: true, }, }; export default schema;