| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- 'use strict'
- const assert = require('check-types').assert
- /**
- * An author of a {@link Change}. We want to store user IDs, and then fill in
- * the other properties (which the user can change over time) when changes are
- * loaded.
- *
- * At present, we're assuming that all authors have a user ID; we may need to
- * generalise this to cover users for whom we only have a name and email, e.g.
- * from git. For now, though, this seems to do what we need.
- */
- class Author {
- /**
- * @param {number} id
- * @param {string} email
- * @param {string} name
- */
- constructor(id, email, name) {
- assert.number(id, 'bad id')
- assert.string(email, 'bad email')
- assert.string(name, 'bad name')
- this.id = id
- this.email = email
- this.name = name
- }
- /**
- * Create an Author from its raw form.
- *
- * @param {Object} [raw]
- * @return {Author | null}
- */
- static fromRaw(raw) {
- if (!raw) return null
- return new Author(raw.id, raw.email, raw.name)
- }
- /**
- * Convert the Author to raw form for storage or transmission.
- *
- * @return {Object}
- */
- toRaw() {
- return { id: this.id, email: this.email, name: this.name }
- }
- /**
- * @return {number}
- */
- getId() {
- return this.id
- }
- /**
- * @return {string}
- */
- getEmail() {
- return this.email
- }
- /**
- * @return {string}
- */
- getName() {
- return this.name
- }
- }
- module.exports = Author
|