Skip to content

Commit

Permalink
feat: add string adapter (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
BustDot authored Jul 10, 2023
1 parent 27b91c4 commit 784a46f
Show file tree
Hide file tree
Showing 3 changed files with 150 additions and 0 deletions.
67 changes: 67 additions & 0 deletions casbin/persist/adapters/string_adapter.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Copyright 2023 The casbin Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from casbin import persist, load_policy_line
import os

from casbin.util import util


class StringAdapter(persist.Adapter):
"""the string adapter for Casbin.
It can load policy from string or save policy to string.
"""

_file_path = ""

def __init__(self, line):
self.line = line

def load_policy(self, model):
"""loads all policy rules from the storage."""
if self.line == "":
raise RuntimeError("invalid line, line cannot be empty")

strs = self.line.split("\n")
for s in strs:
if s == "":
continue
load_policy_line(s, model)

def save_policy(self, model):
"""saves all policy rules to the storage."""
tmp = []
for ptype, ast in model["p"].items():
for rule in ast.policy:
tmp.append(ptype + ", " + util.array_to_string(rule) + "\n")

for ptype, ast in model["g"].items():
for rule in ast.policy:
tmp.append(ptype + ", " + util.array_to_string(rule) + "\n")

self.line = "".join(tmp).rstrip("\n")

def add_policy(self, sec, ptype, rule):
"""adds a policy rule to the storage."""
raise RuntimeError("not implemented")

def remove_policy(self, sec, ptype, rule):
"""removes a policy rule from the storage."""
raise RuntimeError("not implemented")

def remove_filtered_policy(self, sec, ptype, field_index, *field_values):
"""removes policy rules that match the filter from the storage.
This is part of the Auto-Save feature.
"""
raise RuntimeError("not implemented")
Empty file added tests/persist/__init__.py
Empty file.
83 changes: 83 additions & 0 deletions tests/persist/test_string_adapter.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
# Copyright 2023 The casbin Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from casbin import Model
from casbin.persist.adapters.string_adapter import StringAdapter
from tests import TestCaseBase


class TestStringAdapter(TestCaseBase):
def test_key_match_rbac(self):
conf = """
[request_definition]
r = sub, obj, act
[policy_definition]
p = sub, obj, act
[role_definition]
g = _ , _
[policy_effect]
e = some(where (p.eft == allow))
[matchers]
m = g(r.sub, p.sub) && keyMatch(r.obj, p.obj) && regexMatch(r.act, p.act)
"""
line = """
p, alice, /alice_data/*, (GET)|(POST)
p, alice, /alice_data/resource1, POST
p, data_group_admin, /admin/*, POST
p, data_group_admin, /bob_data/*, POST
g, alice, data_group_admin
"""
adapter = StringAdapter(line)
model = Model()
model.load_model_from_text(conf)
e = self.get_enforcer(model, adapter)
sub = "alice"
obj = "/alice_data/login"
act = "POST"
self.assertTrue(e.enforce(sub, obj, act))

def test_string_rbac(self):
conf = """
[request_definition]
r = sub, obj, act
[policy_definition]
p = sub, obj, act
[role_definition]
g = _ , _
[policy_effect]
e = some(where (p.eft == allow))
[matchers]
m = g(r.sub, p.sub) && r.obj == p.obj && r.act == p.act
"""
line = """
p, alice, data1, read
p, data_group_admin, data3, read
p, data_group_admin, data3, write
g, alice, data_group_admin
"""
adapter = StringAdapter(line)
model = Model()
model.load_model_from_text(conf)
e = self.get_enforcer(model, adapter)
sub = "alice"
obj = "data1"
act = "read"
self.assertTrue(e.enforce(sub, obj, act))

0 comments on commit 784a46f

Please sign in to comment.