feat: first version

This commit is contained in:
egarette@silique.fr 2025-02-05 11:30:51 +01:00
parent 195c7b6887
commit 5682ac96b6
13 changed files with 419 additions and 0 deletions

View file

@ -0,0 +1,49 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2025-02-05 11:18+0100\n"
"PO-Revision-Date: 2025-02-05 11:21+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 3.5\n"
#: src/rougail/user_data_bitwarden/data.py:50
msgid "\"bitwarden\" is not set in step.user_data"
msgstr "\"bitwarden\" n'est pas dans step.user_data"
#: src/rougail/user_data_bitwarden/data.py:67
msgid "the default value for \"{0}\" must be the Bitwarden password name"
msgstr "la valeur par défaut pour \"{0}\" doit être un nom de mot de passe de Bitwarden"
#: src/rougail/user_data_bitwarden/data.py:72
msgid "cannot execute the \"bw\" commandline from Bitwarden for \"{0}\": {1}"
msgstr "ne peut exécuter la ligne de commande \"bw\" pour Bitwarden pour \"{0}\": {1}"
#: src/rougail/user_data_bitwarden/data.py:77
msgid "cannot get password \"{0}\" from Bitwarden for \"{1}\": {2} ({3})"
msgstr "ne peut récupérer le mot de passe \"{0}\" pour Bitwarden pour \"{1}\": {2} ({3})"
#: src/rougail/user_data_bitwarden/data.py:82
msgid "cannot load password \"{0}\" from Bitwarden for \"{1}\": {2}"
msgstr "ne peut charger le mot de passe \"{0}\" pour Bitwarden pour \"{1}\": {2}"
#: src/rougail/user_data_bitwarden/data.py:85
msgid "cannot find password \"{0}\" from Bitwarden for \"{1}\""
msgstr "ne peut trouver le mot de passe \"{0}\" pour Bitwarden pour \"{1}\""
#: src/rougail/user_data_bitwarden/data.py:89
msgid "several passwords found with name \"{0}\" from Bitwarden for \"{1}\": \"{2}\""
msgstr "plusieurs mots de passe trouvés avec le nom \"{0}\" pour Bitwarden pour \"{1}\": \"{2}\""
#: src/rougail/user_data_bitwarden/data.py:94
msgid "unexpected password \"{0}\" from Bitwarden for \"{1}\": {2}"
msgstr "mot de passe inattendu \"{0}\" pour Bitwarden pour \"{1}\": {2}"

View file

@ -0,0 +1,49 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2025-02-05 11:21+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: src/rougail/user_data_bitwarden/data.py:50
msgid "\"bitwarden\" is not set in step.user_data"
msgstr ""
#: src/rougail/user_data_bitwarden/data.py:67
msgid "the default value for \"{0}\" must be the Bitwarden password name"
msgstr ""
#: src/rougail/user_data_bitwarden/data.py:72
msgid "cannot execute the \"bw\" commandline from Bitwarden for \"{0}\": {1}"
msgstr ""
#: src/rougail/user_data_bitwarden/data.py:77
msgid "cannot get password \"{0}\" from Bitwarden for \"{1}\": {2} ({3})"
msgstr ""
#: src/rougail/user_data_bitwarden/data.py:82
msgid "cannot load password \"{0}\" from Bitwarden for \"{1}\": {2}"
msgstr ""
#: src/rougail/user_data_bitwarden/data.py:85
msgid "cannot find password \"{0}\" from Bitwarden for \"{1}\""
msgstr ""
#: src/rougail/user_data_bitwarden/data.py:89
msgid "several passwords found with name \"{0}\" from Bitwarden for \"{1}\": \"{2}\""
msgstr ""
#: src/rougail/user_data_bitwarden/data.py:94
msgid "unexpected password \"{0}\" from Bitwarden for \"{1}\": {2}"
msgstr ""

40
pyproject.toml Normal file
View file

@ -0,0 +1,40 @@
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail.user_data_bitwarden"
version = "0.0.0"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
description = "Rougail user_data Bitwarden"
requires-python = ">=3.8"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
"Natural Language :: French",
]
dependencies = [
"rougail >= 1.1,<2",
]
[project.urls]
Home = "https://forge.cloud.silique.fr/stove/rougail-user-data-bitwarden"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
changelog_merge_prerelease = true

View file

@ -0,0 +1,3 @@
from .data import RougailUserDataBitwarden
RougailUserData = RougailUserDataBitwarden
__all__ = ('RougailUserDataBitwarden',)

View file

@ -0,0 +1,32 @@
"""
Silique (https://www.silique.fr)
Copyright (C) 2025
distribued with GPL-2 or later license
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
def get_rougail_config(*,
backward_compatibility=True,
) -> dict:
return {'name': 'bitwarden',
'process': 'user data',
'level': 90,
}
__all__ = ('get_rougail_config',)

View file

@ -0,0 +1,95 @@
"""
Silique (https://www.silique.fr)
Copyright (C) 2025
distribued with GPL-2 or later license
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
from subprocess import run
from json import loads
from rougail.error import ExtentionError
from .i18n import _
class RougailUserDataBitwarden:
force_apply_user_data = True
def __init__(self,
config: 'Config',
*,
rougailconfig: "RougailConfig"=None,
):
# this is the tiramisu config object
self.config = config
if rougailconfig is None:
from rougail.config import RougailConfig
rougailconfig = RougailConfig
user_data = rougailconfig['step.user_data']
if 'bitwarden' not in user_data:
user_data.append('bitwarden')
rougailconfig['step.user_data'] = user_data
user_data = rougailconfig['step.user_data']
self.rougailconfig = rougailconfig
if 'bitwarden' not in user_data:
raise ExtentionError(_('"bitwarden" is not set in step.user_data'))
self.errors = []
self.warnings = []
def run(self):
self.set_passwords(self.config)
return {'errors': self.errors,
'warnings': self.warnings,
}
def set_passwords(self, optiondescription):
for option in optiondescription:
if option.isoptiondescription():
self.set_passwords(option)
elif option.owner.isdefault() and option.type() == 'password':
key_bitwarden = option.value.get()
if not isinstance(key_bitwarden, str):
self.errors.append(_('the default value for "{0}" must be the Bitwarden password name').format(option.path()))
continue
try:
cpe = run(["bw", "list", "items", "--search", key_bitwarden, '--nointeraction'], capture_output=True)
except Exception as exc:
self.errors.append(_('cannot execute the "bw" commandline from Bitwarden for "{0}": {1}').format(option.path(), exc))
continue
out = cpe.stdout.decode('utf8')
err = cpe.stderr.decode('utf8')
if cpe.returncode != 0 or err:
self.errors.append(_('cannot get password "{0}" from Bitwarden for "{1}": {2} ({3})').format(key_bitwarden, option.path(), err, cpe.returncode))
continue
try:
data = loads(out)
except Exception as exc:
self.errors.append(_('cannot load password "{0}" from Bitwarden for "{1}": {2}').format(key_bitwarden, option.path(), exc))
continue
if not data:
self.errors.append(_('cannot find password "{0}" from Bitwarden for "{1}"').format(key_bitwarden, option.path()))
continue
if len(data) != 1:
names = [d["name"] for d in data]
self.errors.append(_('several passwords found with name "{0}" from Bitwarden for "{1}": "{2}"').format(key_bitwarden, option.path(), "\", \"".join(names)))
continue
try:
option.value.set(data[0]['login']['password'])
except Exception as exc:
self.errors.append(_('unexpected password "{0}" from Bitwarden for "{1}": {2}').format(key_bitwarden, option.path(), exc))
continue

View file

@ -0,0 +1,26 @@
"""
Silique (https://www.silique.fr)
Copyright (C) 2025
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
from gettext import translation
from pathlib import Path
t = translation(
"rougail_user_data_bitwarden", str(Path(__file__).parent / "locale"), fallback=True
)
_ = t.gettext

View file

@ -0,0 +1,7 @@
{
"errors": [
"the default value for \"secret1\" must be the Bitwarden password name",
"cannot get password \"value\" from Bitwarden for \"secret2\": Vault is locked. (1)"
],
"warnings": []
}

View file

@ -0,0 +1,4 @@
{
"secret1": null,
"secret2": "value"
}

View file

@ -0,0 +1,7 @@
{
"errors": [
"the default value for \"rougail.secret1\" must be the Bitwarden password name",
"cannot get password \"value\" from Bitwarden for \"rougail.secret2\": Vault is locked. (1)"
],
"warnings": []
}

View file

@ -0,0 +1,4 @@
{
"rougail.secret1": null,
"rougail.secret2": "value"
}

103
tests/test_load.py Normal file
View file

@ -0,0 +1,103 @@
import os
from pytest import fixture # , raises
from pathlib import Path
from rougail import Rougail
#########################
from dotenv import load_dotenv
from rougail.user_data_bitwarden import RougailUserDataBitwarden as RougailUserData
from json import load, dump
#########################
from rougail_tests.utils import get_structures_list, get_rougail_config, get_values_for_config, config_to_dict
EXT = "env"
#########################
#let's save the original environment
save = os.environ.copy()
#########################
excludes = []
test_ok = get_structures_list(excludes)
test_ok = [Path('../rougail-tests/structures/00_6secret')]
def idfn(fixture_value):
return fixture_value.name
@fixture(scope="module", params=test_ok, ids=idfn)
def test_dir(request):
return request.param
def _test_dictionaries(test_dir, namespace, ext):
rougailconfig = get_rougail_config(test_dir, namespace)
if not rougailconfig:
return
##################################
rougailconfig['step.user_data'] = ['bitwarden']
##################################
dir_name = 'test'
if namespace:
dir_name += '_namespace'
elif (test_dir / 'force_namespace').is_file():
return
rougail = Rougail(rougailconfig)
config = rougail.run()
##################################
if not has_secrets(config):
return
##################################
# loads variables in the tiramisu config
errors = RougailUserData(config, rougailconfig=rougailconfig).run()
#expected output
config_dict = dict(config_to_dict(config.value.get()))
ok_file = Path('tests') / 'results' / dir_name / test_dir.name / 'makedict' / 'bitwarden.json'
if not ok_file.is_file():
ok_file.parent.mkdir(parents=True, exist_ok=True)
with open(ok_file, 'a') as json_file:
dump(config_dict, json_file, indent=4)
with open(ok_file) as json_file:
expected = load(json_file)
errors_file = Path('tests') / 'results' / dir_name / test_dir.name / 'errors' / 'bitwarden.json'
if not errors_file.is_file():
errors_file.parent.mkdir(parents=True, exist_ok=True)
with open(errors_file, 'a') as json_file:
dump(errors, json_file, indent=4)
with open(errors_file) as json_file:
expected_errors = load(json_file)
# expected_errors = {
# 'errors': [],
# 'warnings': [],
# }
assert expected_errors == errors
#
config.property.read_only()
assert expected == config_dict
######################################
#teardown: set the original environement again
os.environ = save.copy()
######################################
def has_secrets(optiondescription):
for option in optiondescription:
if option.isoptiondescription():
if has_secrets(option):
return True
elif option.information.get('type', None) == 'secret':
return True
return False
def test_dictionaries_all(test_dir):
"tests the output"
_test_dictionaries(test_dir, False, EXT)
def test_dictionaries_namespace_all(test_dir):
"tests the output"
_test_dictionaries(test_dir, True, EXT)