Skip to content

Commit

Permalink
Feat: upgrade casbin v2
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerchai committed Aug 31, 2020
1 parent cc8677f commit 0500df5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name = "actix_casbin_auth"
path = "src/lib.rs"

[dependencies]
casbin = { version = "1.1.3", default-features = false, features = ["incremental", "cached"] }
casbin = { version = "2.0.1", default-features = false, features = ["incremental", "cached"] }
tokio = { version = "0.2.22", default-features = false, optional = true }
async-std = { version = "1.6.3", default-features = false, optional = true }
actix-web = "2.0.0"
Expand Down
8 changes: 4 additions & 4 deletions src/middleware.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ where
return Ok(req.into_response(HttpResponse::Unauthorized().finish().into_body()))
}
};
let subject = &vals.subject;
let subject = vals.subject.clone();

if !vals.subject.is_empty() {
if let Some(domain) = &vals.domain {
if let Some(domain) = vals.domain {
let lock = cloned_enforcer.write().await;
match lock.enforce(&[subject, domain, &path, &action]) {
match lock.enforce(vec![subject, domain, path, action]) {
Ok(true) => {
drop(lock);
srv.call(req).await
Expand All @@ -140,7 +140,7 @@ where
}
} else {
let lock = cloned_enforcer.write().await;
match lock.enforce(&[subject, &path, &action]) {
match lock.enforce(vec![subject, path, action]) {
Ok(true) => {
drop(lock);
srv.call(req).await
Expand Down

0 comments on commit 0500df5

Please sign in to comment.