Skip to content

Commit 3153def

Browse files
committed
first commit
1 parent a25bd96 commit 3153def

8 files changed

Lines changed: 282 additions & 217 deletions

File tree

‎.gitignore‎

Lines changed: 9 additions & 217 deletions
Original file line numberDiff line numberDiff line change
@@ -1,218 +1,10 @@
11
# Byte-compiled / optimized / DLL files
2-
__pycache__/
3-
*.py[codz]
4-
*$py.class
5-
6-
# C extensions
7-
*.so
8-
9-
# Distribution / packaging
10-
.Python
11-
build/
12-
develop-eggs/
13-
dist/
14-
downloads/
15-
eggs/
16-
.eggs/
17-
lib/
18-
lib64/
19-
parts/
20-
sdist/
21-
var/
22-
wheels/
23-
share/python-wheels/
24-
*.egg-info/
25-
.installed.cfg
26-
*.egg
27-
MANIFEST
28-
29-
# PyInstaller
30-
# Usually these files are written by a python script from a template
31-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32-
*.manifest
33-
*.spec
34-
35-
# Installer logs
36-
pip-log.txt
37-
pip-delete-this-directory.txt
38-
39-
# Unit test / coverage reports
40-
htmlcov/
41-
.tox/
42-
.nox/
43-
.coverage
44-
.coverage.*
45-
.cache
46-
nosetests.xml
47-
coverage.xml
48-
*.cover
49-
*.py.cover
50-
.hypothesis/
51-
.pytest_cache/
52-
cover/
53-
54-
# Translations
55-
*.mo
56-
*.pot
57-
58-
# Django stuff:
59-
*.log
60-
local_settings.py
61-
db.sqlite3
62-
db.sqlite3-journal
63-
64-
# Flask stuff:
65-
instance/
66-
.webassets-cache
67-
68-
# Scrapy stuff:
69-
.scrapy
70-
71-
# Sphinx documentation
72-
docs/_build/
73-
74-
# PyBuilder
75-
.pybuilder/
76-
target/
77-
78-
# Jupyter Notebook
79-
.ipynb_checkpoints
80-
81-
# IPython
82-
profile_default/
83-
ipython_config.py
84-
85-
# pyenv
86-
# For a library or package, you might want to ignore these files since the code is
87-
# intended to run in multiple environments; otherwise, check them in:
88-
# .python-version
89-
90-
# pipenv
91-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94-
# install all needed dependencies.
95-
# Pipfile.lock
96-
97-
# UV
98-
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99-
# This is especially recommended for binary packages to ensure reproducibility, and is more
100-
# commonly ignored for libraries.
101-
# uv.lock
102-
103-
# poetry
104-
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105-
# This is especially recommended for binary packages to ensure reproducibility, and is more
106-
# commonly ignored for libraries.
107-
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108-
# poetry.lock
109-
# poetry.toml
110-
111-
# pdm
112-
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113-
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114-
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115-
# pdm.lock
116-
# pdm.toml
117-
.pdm-python
118-
.pdm-build/
119-
120-
# pixi
121-
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122-
# pixi.lock
123-
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124-
# in the .venv directory. It is recommended not to include this directory in version control.
125-
.pixi
126-
127-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128-
__pypackages__/
129-
130-
# Celery stuff
131-
celerybeat-schedule
132-
celerybeat.pid
133-
134-
# Redis
135-
*.rdb
136-
*.aof
137-
*.pid
138-
139-
# RabbitMQ
140-
mnesia/
141-
rabbitmq/
142-
rabbitmq-data/
143-
144-
# ActiveMQ
145-
activemq-data/
146-
147-
# SageMath parsed files
148-
*.sage.py
149-
150-
# Environments
151-
.env
152-
.envrc
153-
.venv
154-
env/
155-
venv/
156-
ENV/
157-
env.bak/
158-
venv.bak/
159-
160-
# Spyder project settings
161-
.spyderproject
162-
.spyproject
163-
164-
# Rope project settings
165-
.ropeproject
166-
167-
# mkdocs documentation
168-
/site
169-
170-
# mypy
171-
.mypy_cache/
172-
.dmypy.json
173-
dmypy.json
174-
175-
# Pyre type checker
176-
.pyre/
177-
178-
# pytype static type analyzer
179-
.pytype/
180-
181-
# Cython debug symbols
182-
cython_debug/
183-
184-
# PyCharm
185-
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
186-
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
187-
# and can be added to the global gitignore or merged into this file. For a more nuclear
188-
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
189-
# .idea/
190-
191-
# Abstra
192-
# Abstra is an AI-powered process automation framework.
193-
# Ignore directories containing user credentials, local state, and settings.
194-
# Learn more at https://abstra.io/docs
195-
.abstra/
196-
197-
# Visual Studio Code
198-
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
199-
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
200-
# and can be added to the global gitignore or merged into this file. However, if you prefer,
201-
# you could uncomment the following to ignore the entire vscode folder
202-
# .vscode/
203-
# Temporary file for partial code execution
204-
tempCodeRunnerFile.py
205-
206-
# Ruff stuff:
207-
.ruff_cache/
208-
209-
# PyPI configuration file
210-
.pypirc
211-
212-
# Marimo
213-
marimo/_static/
214-
marimo/_lsp/
215-
__marimo__/
216-
217-
# Streamlit
218-
.streamlit/secrets.toml
2+
.DS_Store
3+
.idea/inspectionProfiles/profiles_settings.xml
4+
.idea/*
5+
src/etc/config.conf
6+
/tests
7+
/src/lib/__pycache__
8+
/unittest/__pycache__
9+
unittest/files_backend_utils/config1.conf
10+
.venv

‎install.sh‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#!/bin/bash

‎src/bin/upsertidentity.py‎

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/python3
2+
import sys
3+
sys.path.append('../lib')
4+
import backend_utils as u
5+
import backend_sambaad_utils as smb
6+
7+
8+
def main():
9+
json=u.readjsoninput()
10+
config=u.read_config('../etc/config.conf')
11+
smb.set_config(config)
12+
if u.is_backend_concerned(json):
13+
l=smb.connect_sambaad(u.config('host'),u.config('dn'),u.config('password'))
14+
print(smb.upsert_entry(l,json))
15+
else:
16+
print(u.returncode(0,'not concerned'))
17+
18+
19+
if __name__ == '__main__':
20+
main()

‎src/config.yml‎

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
_version: 2
2+
3+
name: 'sambaad'
4+
description: 'Backend for samba AD'
5+
active: true
6+
actions:
7+
IDENTITY_PASSWORD_CHANGE:
8+
script: "changepwd.py"
9+
onError: 'stop'
10+
IDENTITY_PASSWORD_RESET:
11+
script: "resetpwd.py"
12+
onError: 'stop'
13+
IDENTITY_CREATE:
14+
script: 'upsertidentity.py'
15+
onError: 'stop'
16+
IDENTITY_UPDATE:
17+
script: 'upsertidentity.py'
18+
onError: 'stop'
19+
IDENTITY_DELETE:
20+
script: 'delentity.py'
21+
onError: 'stop'
22+
IDENTITY_ENABLE:
23+
script: 'activation.py --active 1'
24+
IDENTITY_DISABLE:
25+
script: 'activation.py --active 0'
26+
PING_TARGET:
27+
script: 'ping.py'
28+
onError: 'stop'
29+
IDENTITY_LIFECYCLE_CHANGED:
30+
script: 'lifecycle.py'
31+
onError: 'stop'

‎src/lib/__init__.py‎

Whitespace-only changes.

‎src/lib/backend_sambaad_utils.py‎

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
import configparser
2+
import json
3+
import os
4+
import jinja2
5+
import sys
6+
import getpass
7+
import ldb
8+
from samba.auth import system_session
9+
from samba.credentials import Credentials
10+
from samba.dcerpc import security
11+
from samba.dcerpc.security import dom_sid
12+
from samba.ndr import ndr_pack, ndr_unpack
13+
from samba.param import LoadParm
14+
from samba.samdb import SamDB
15+
from sys import stdin
16+
sys.path.append('.')
17+
import backend_utils as u
18+
__LIFECYLE_DIR__="../lifecycle"
19+
20+
def set_config(config):
21+
u.__CONFIG__ = config
22+
23+
def connect_sambaad(url,user,password):
24+
creds = Credentials()
25+
creds.guess(lp)
26+
creds.set_username(user)
27+
creds.set_password(password)
28+
try:
29+
samdb = SamDB(url=url, session_info=system_session(), credentials=creds, lp=lp)
30+
return (1)
31+
except samdb.error.SamDBError as e:
32+
print(u.returncode(1, e))
33+
return (1)
34+
35+
def upsert_entry(l,entity):
36+
return (1)
37+
38+
def search_entity(l,entity):
39+
return (1)
40+
41+
def delete_entity(l,entity):
42+
return (1)
43+
44+
def update_entity(l,entity):
45+
return (1)
46+
47+
def activate_entry(l,entity,activate):
48+
return (1)
49+
50+
def change_entity_password(l,entity):
51+
return (1)
52+
53+
def reset_entity_password(l,entity):
54+
return (1)
55+
56+
57+

0 commit comments

Comments
 (0)