gpt4 book ai didi

node.js - 如何在处理单用户帐户和多用户(具有角色的组织帐户)时创建 MongoDB 架构设计

转载 作者:太空宇宙 更新时间:2023-11-04 00:02:54 25 4
gpt4 key购买 nike

我正在开发一个使用 mongoDB 和 mongoose 的 Nodejs Express API 项目,我想获得一些有关最佳实践的建议,并从社区创建高效的模式设计

该应用程序处理两种类型的用户帐户

帐户类型:

  • 单个(默认)
  • 组织(可以从设置切换到)

注意:在组织帐户中,将有一个管理员(所有者)和其他受邀用户,每个用户都被分配权限级别/访问级别。一个用户将始终仅与一个帐户关联,即,如果他已经是现有帐户的一部分,则不能再次邀请他加入另一个帐户或启动新帐户。此外,在组织帐户的情况下,帐单和送货地址是特定于帐户而不是用户的(切换到组织帐户的用户地址将是组织帐户的地址)

我在passport.js JWT本地策略的帮助下完成了身份验证部分

我尝试开发一种类似于 RDBMS 的方法(我曾经是 RDBMS 人员)但失败了

enter image description here

模型和架构

const userSchema = new Schema({
first_name: String,
last_name: String,
email: String,
phone: String,
avatar: String,
password: String,
active: Boolean
});

const User = mongoose.model('user', userSchema);

const accountSchema = mongoose.Schema({
account_type: { type: String, enum: ['single', 'organization'], default: 'single' },
organization: { type: Schema.Types.ObjectId, ref: 'organization', required: false },
billing_address: String,
shipping_address: String,

});

const Account = mongoose.model('account', accountSchema);

const accountUserRoleSchema = mongoose.Schema({
user : { type: Schema.Types.ObjectId, ref: 'user', },
role: { type: String, enum: ['admin', 'user'], default: 'user' },
account: { type: Schema.Types.ObjectId, ref: 'account', required: true }
});

const AccountUserRole = mongoose.model('accountUserRole', accountUserRoleSchema);


const permissionSchema = mongoose.Schema({
user : { type: Schema.Types.ObjectId, ref: 'user', required: true },
type: { type: Schema.Types.ObjectId, ref: 'permissionType', required: true },
read: { type: Boolean, default: false, required: true },
write: { type: Boolean, default: false, required: true },
delete: { type: Boolean, default: false, required: true },
accountUser : { type: Schema.Types.ObjectId, ref: 'account',required: true }

});

const Permission = mongoose.model('permission', permissionSchema);


const permissionTypeSchema = mongoose.Schema({
name : { type: String, required: true }

});

const PermissionType = mongoose.model('permissionType', permissionTypeSchema);


const organizationSchema = mongoose.Schema({
account : { type: Schema.Types.ObjectId, ref: 'account', },
name: { type: String, required: true },
logo: { type: String, required: true }
});


const Organization = mongoose.model('organization', organizationSchema);

现在我正在开发授权部分,其中需要通过检查他或她分配的权限来限制用户对资源的访问。

我发现的解决方案是开发一个授权中间件,该中间件在身份验证中间件之后运行,检查分配的访问权限

但是当我尝试根据当前登录的用户访问帐户数据时出现了问题,因为我必须根据 objectId 引用搜索文档。我可以理解,如果我继续当前的设计,可能会发生这种情况。这工作正常,但使用 objectId 引用搜索文档似乎不是一个好主意

授权中间件

module.exports = {

checkAccess : (permission_type,action) => {

return async (req, res, next) => {

// check if the user object is in the request after verifying jwt
if(req.user){

// find the accountUserRole with the user data from the req after passort jwt auth
const accountUser = await AccountUserRole.findOne({ user :new ObjectId( req.user._id) }).populate('account');
if(accountUser)
{
// find the account and check the type

if(accountUser.account)
{
if(accountUser.account.type === 'single')
{
// if account is single grant access
return next();
}
else if(accountUser.account.type === 'organization'){


// find the user permission

// check permission with permission type and see if action is true

// if true move to next middileware else throw access denied error


}
}

}

}
}


}


}

我决定放弃当前的架构,因为我知道在 NoSQL 上强制使用 RDBMS 方法是一个坏主意。

与关系数据库不同,MongoDB 的最佳模式设计在很大程度上取决于您访问数据的方式。您将使用帐户数据做什么,以及如何访问它

我重新设计的新架构和模型

const userSchema = new Schema({
first_name: String,
last_name: String,
email: String,
phone: String,
avatar: String,
password: String,
active: Boolean
account : { type: Schema.Types.ObjectId, ref: 'account', },
role: { type: String, enum: ['admin', 'user'], default: 'user' },
permssion: [
{
type: { type: Schema.Types.ObjectId, ref: 'permissionType', required: true },
read: { type: Boolean, default: false, required: true },
write: { type: Boolean, default: false, required: true },
delete: { type: Boolean, default: false, required: true },
}
]

});

const User = mongoose.model('user', userSchema);

const accountSchema = mongoose.Schema({
account_type: { type: String, enum: ['single', 'organization'], default: 'single' },
organization: {
name: { type: String, required: true },
logo: { type: String, required: true }
},
billing_address: String,
shipping_address: String,

});


const Account = mongoose.model('account', accountSchema);


const permissionTypeSchema = mongoose.Schema({
name : { type: String, required: true }

});

const PermissionType = mongoose.model('permissionType', permissionTypeSchema);

我仍然不确定这是否是正确的方法,请帮助我提供建议。

最佳答案

您可以合并用户和用户帐户架构:

添加了一些对您有用的更多文件。

const userSchema = new Schema({
first_name: { type: String,default:'',required:true},
last_name: { type: String,default:'',required:true},
email: { type: String,unique:true,required:true,index: true},
email_verified :{type: Boolean,default:false},
email_verify_token:{type: String,default:null},
phone: { type: String,default:''},
phone_verified :{type: Boolean,default:false},
phone_otp_number:{type:Number,default:null},
phone_otp_expired_at:{ type: Date,default:null},
avatar: { type: String,default:''},
password: { type: String,required:true},
password_reset_token:{type: String,default:null},
reset_token_expired_at: { type: Date,default:null},
active: { type: Boolean,default:true}
account_type: { type: String, enum: ['single', 'organization'], default: 'single' },
organization: {type:Schema.Types.Mixed,default:{}},
billing_address: { type: String,default:''}
shipping_address: { type: String,default:''}
role: { type: String, enum: ['admin', 'user'], default: 'user' },
permission: [
{
type: { type: Schema.Types.ObjectId, ref: 'permissionType', required: true },
read: { type: Boolean, default: false, required: true },
write: { type: Boolean, default: false, required: true },
delete: { type: Boolean, default: false, required: true },
}
],
created_at: { type: Date, default: Date.now },
updated_at: { type: Date, default: Date.now }
});

在你的中间件中:

module.exports = {

checkAccess : (permission_type,action) => {

return async (req, res, next) => {

// check if the user object is in the request after verifying jwt
if(req.user){
if(req.user.account_type === 'single')
{
// if account is single grant access
return next();
}
else{


// find the user permission

// check permission with permission type and see if action is true

// if true move to next middileware else throw access denied error


}
}
}
}
};

关于node.js - 如何在处理单用户帐户和多用户(具有角色的组织帐户)时创建 MongoDB 架构设计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53880700/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com