ahriman/src/ahriman/models/smtp_ssl_settings.py
Evgeniy Alekseev 9fa6722eaa small improvements on code smell
* fix some grammar/typo errors
* change some statements to be more clear
* use pattern matching for enum processing
2023-08-25 04:15:10 +03:00

57 lines
1.7 KiB
Python

#
# Copyright (c) 2021-2023 ahriman team.
#
# This file is part of ahriman
# (see https://github.com/arcan1s/ahriman).
#
# 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 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from __future__ import annotations
from enum import Enum
class SmtpSSLSettings(str, Enum):
"""
SMTP SSL mode enumeration
Attributes:
Disabled(SmtpSSLSettings): (class attribute) no SSL enabled
SSL(SmtpSSLSettings): (class attribute) use SMTP_SSL instead of normal SMTP client
STARTTLS(SmtpSSLSettings): (class attribute) use STARTTLS in normal SMTP client
"""
Disabled = "disabled"
SSL = "ssl"
STARTTLS = "starttls"
@staticmethod
def from_option(value: str) -> SmtpSSLSettings:
"""
construct value from configuration
Args:
value(str): configuration value
Returns:
SmtpSSLSettings: parsed value
"""
match value.lower():
case "ssl" | "ssl/tls":
return SmtpSSLSettings.SSL
case "starttls":
return SmtpSSLSettings.STARTTLS
case _:
return SmtpSSLSettings.Disabled