add types for linting
This commit is contained in:
parent
7294210821
commit
8d29d4d395
|
@ -0,0 +1,54 @@
|
||||||
|
const { Model } = require('sequelize');
|
||||||
|
|
||||||
|
class Article extends Model {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
let init = (sequelize, DataTypes) => {
|
||||||
|
let article = Article.init({
|
||||||
|
id: {
|
||||||
|
type: DataTypes.BIGINT(11),
|
||||||
|
primaryKey: true,
|
||||||
|
autoIncrement: true,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
title: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
shortText: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
body: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
submitted: {
|
||||||
|
type: DataTypes.BIGINT,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
edited: {
|
||||||
|
type: DataTypes.BIGINT,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
submitter: {
|
||||||
|
type: DataTypes.BIGINT,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
gpgsign: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
allowNull: true
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
sequelize,
|
||||||
|
modelName: 'Article',
|
||||||
|
tableName: 'articles'
|
||||||
|
})
|
||||||
|
article.class = Article;
|
||||||
|
|
||||||
|
return article;
|
||||||
|
}
|
||||||
|
|
||||||
|
init.class = Article;
|
||||||
|
module.exports = init;
|
|
@ -1,19 +1,18 @@
|
||||||
'use strict';
|
const { Model } = require('sequelize');
|
||||||
const {
|
|
||||||
Model
|
class Guestbook extends Model {
|
||||||
} = require('sequelize');
|
/**
|
||||||
module.exports = (sequelize, DataTypes) => {
|
* Helper method for defining associations.
|
||||||
class Guestbook extends Model {
|
* This method is not a part of Sequelize lifecycle.
|
||||||
/**
|
* The `models/index` file will call this method automatically.
|
||||||
* Helper method for defining associations.
|
*/
|
||||||
* This method is not a part of Sequelize lifecycle.
|
static associate(models) {
|
||||||
* The `models/index` file will call this method automatically.
|
// define association here
|
||||||
*/
|
|
||||||
static associate(models) {
|
|
||||||
// define association here
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
Guestbook.init({
|
}
|
||||||
|
|
||||||
|
const init = (sequelize, DataTypes) => {
|
||||||
|
let model = Guestbook.init({
|
||||||
id: {
|
id: {
|
||||||
type: DataTypes.BIGINT(11),
|
type: DataTypes.BIGINT(11),
|
||||||
primaryKey: true,
|
primaryKey: true,
|
||||||
|
@ -49,5 +48,8 @@ module.exports = (sequelize, DataTypes) => {
|
||||||
modelName: 'Guestbook',
|
modelName: 'Guestbook',
|
||||||
tableName: 'guestbook'
|
tableName: 'guestbook'
|
||||||
});
|
});
|
||||||
return Guestbook;
|
return model;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
init.class = Guestbook;
|
||||||
|
return init;
|
|
@ -9,6 +9,19 @@ const process = require('process');
|
||||||
const basename = path.basename(__filename);
|
const basename = path.basename(__filename);
|
||||||
const env = process.env.NODE_ENV || 'production';
|
const env = process.env.NODE_ENV || 'production';
|
||||||
let config = require(__dirname + '/../config/config.json')[env];
|
let config = require(__dirname + '/../config/config.json')[env];
|
||||||
|
|
||||||
|
class Models {
|
||||||
|
sequelize = Sequelize
|
||||||
|
Sequelize = Sequelize
|
||||||
|
|
||||||
|
User = require('./user').class
|
||||||
|
Article = require('./article').class
|
||||||
|
Guestbook = require('./guestbook').class
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @type Models
|
||||||
|
*/
|
||||||
const db = {};
|
const db = {};
|
||||||
|
|
||||||
const {
|
const {
|
||||||
|
|
|
@ -0,0 +1,54 @@
|
||||||
|
const { Model } = require('sequelize');
|
||||||
|
|
||||||
|
class User extends Model {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {import('sequelize').Sequelize} sequelize
|
||||||
|
* @param {import('sequelize').DataTypes} DataTypes
|
||||||
|
*/
|
||||||
|
const init = (sequelize, DataTypes) => {
|
||||||
|
let user = User.init({
|
||||||
|
id: {
|
||||||
|
type: DataTypes.BIGINT,
|
||||||
|
primaryKey: true,
|
||||||
|
autoIncrement: true,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
login: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
pass: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
totp: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
allowNull: true
|
||||||
|
},
|
||||||
|
totpRec: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
allowNull: true
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
gpgkey: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
allowNull: false
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
sequelize,
|
||||||
|
tableName: 'users',
|
||||||
|
tableName: 'users'
|
||||||
|
});
|
||||||
|
|
||||||
|
return user;
|
||||||
|
}
|
||||||
|
|
||||||
|
init.class = User;
|
||||||
|
module.exports = init;
|
Loading…
Reference in New Issue