aboutsummaryrefslogtreecommitdiff
path: root/src/server/authentication/models/User.ts
diff options
context:
space:
mode:
authorSam Wilkins <abdullah_ahmed@brown.edu>2019-02-26 18:58:07 -0500
committerSam Wilkins <abdullah_ahmed@brown.edu>2019-02-26 18:58:07 -0500
commit042eb977ad7733919daf468001b17dbee4e1fa9f (patch)
treef4ed1faca8e6fb794290146e79827500d4cab4e8 /src/server/authentication/models/User.ts
parentab110ba8cc8bbf5a633fc5488458be038b06ec24 (diff)
beginning multiple workspaces backend and ui
Diffstat (limited to 'src/server/authentication/models/User.ts')
-rw-r--r--src/server/authentication/models/User.ts90
1 files changed, 0 insertions, 90 deletions
diff --git a/src/server/authentication/models/User.ts b/src/server/authentication/models/User.ts
deleted file mode 100644
index 433e2f6c3..000000000
--- a/src/server/authentication/models/User.ts
+++ /dev/null
@@ -1,90 +0,0 @@
-//@ts-ignore
-import * as bcrypt from "bcrypt-nodejs";
-//@ts-ignore
-import * as mongoose from "mongoose";
-var url = 'mongodb://localhost:27017/Dash'
-
-mongoose.connect(url, { useNewUrlParser: true });
-
-mongoose.connection.on('connected', function () {
- console.log('Stablished connection on ' + url);
-});
-mongoose.connection.on('error', function (error) {
- console.log('Something wrong happened: ' + error);
-});
-mongoose.connection.on('disconnected', function () {
- console.log('connection closed');
-});
-export type UserModel = mongoose.Document & {
- email: string,
- password: string,
- passwordResetToken: string | undefined,
- passwordResetExpires: Date | undefined,
- tokens: AuthToken[],
-
- profile: {
- name: string,
- gender: string,
- location: string,
- website: string,
- picture: string
- },
-
- comparePassword: comparePasswordFunction,
-};
-
-type comparePasswordFunction = (candidatePassword: string, cb: (err: any, isMatch: any) => {}) => void;
-
-export type AuthToken = {
- accessToken: string,
- kind: string
-};
-
-const userSchema = new mongoose.Schema({
- email: { type: String, unique: true },
- password: String,
- passwordResetToken: String,
- passwordResetExpires: Date,
-
- userDocumentId: String,
-
- facebook: String,
- twitter: String,
- google: String,
- tokens: Array,
-
- profile: {
- name: String,
- gender: String,
- location: String,
- website: String,
- picture: String
- }
-}, { timestamps: true });
-
-/**
- * Password hash middleware.
- */
-userSchema.pre("save", function save(next) {
- const user = this as UserModel;
- if (!user.isModified("password")) { return next(); }
- bcrypt.genSalt(10, (err, salt) => {
- if (err) { return next(err); }
- bcrypt.hash(user.password, salt, () => void {}, (err: mongoose.Error, hash) => {
- if (err) { return next(err); }
- user.password = hash;
- next();
- });
- });
-});
-
-const comparePassword: comparePasswordFunction = function (this: UserModel, candidatePassword, cb) {
- bcrypt.compare(candidatePassword, this.password, (err: mongoose.Error, isMatch: boolean) => {
- cb(err, isMatch);
- });
-};
-
-userSchema.methods.comparePassword = comparePassword;
-
-const User = mongoose.model("User", userSchema);
-export default User; \ No newline at end of file