2022-05-09 07:24:35 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2022-08-08 14:24:58 +02:00
|
|
|
# Copyright (c) Ansible project
|
2022-08-05 12:28:29 +02:00
|
|
|
# Simplified BSD License (see LICENSES/BSD-2-Clause.txt or https://opensource.org/licenses/BSD-2-Clause)
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2022-05-09 07:24:35 +02:00
|
|
|
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
class OnePasswordConfig(object):
|
|
|
|
_config_file_paths = (
|
|
|
|
"~/.op/config",
|
|
|
|
"~/.config/op/config",
|
|
|
|
"~/.config/.op/config",
|
|
|
|
)
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self._config_file_path = ""
|
|
|
|
|
|
|
|
@property
|
|
|
|
def config_file_path(self):
|
|
|
|
if self._config_file_path:
|
|
|
|
return self._config_file_path
|
|
|
|
|
|
|
|
for path in self._config_file_paths:
|
|
|
|
realpath = os.path.expanduser(path)
|
|
|
|
if os.path.exists(realpath):
|
|
|
|
self._config_file_path = realpath
|
|
|
|
return self._config_file_path
|