Server IP : 85.214.239.14 / Your IP : 3.129.195.82 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/task/3/cwd/srv/modoboa/env/lib/python3.5/site-packages/modoboa_pdfcredentials/ |
Upload File : |
"""PDF credentials handlers.""" import os from django.urls import reverse from django.db.models import signals from django.dispatch import receiver from django.utils.translation import ugettext as _ from modoboa.core import models as core_models from modoboa.core import signals as core_signals from modoboa.parameters import tools as param_tools from .documents import credentials from .lib import init_storage_dir, delete_credentials, get_creds_filename @receiver(core_signals.account_password_updated) def password_updated(sender, account, password, created, **kwargs): """Create or update document.""" generate_at_creation = param_tools.get_global_parameter( "generate_at_creation") if (generate_at_creation and not created) or account.is_superuser: return init_storage_dir() credentials(account, password) @receiver(signals.pre_delete, sender=core_models.User) def account_deleted(sender, instance, **kwargs): """Remove document.""" delete_credentials(instance) @receiver(core_signals.extra_account_actions) def extra_account_actions(sender, account, **kwargs): """Add link to download document.""" fname = get_creds_filename(account) if not os.path.exists(fname): return [] return [{ "name": "get_credentials", "url": reverse("modoboa_pdfcredentials:account_credentials", args=[account.id]), "img": "fa fa-download", "title": _("Retrieve user's credentials as a PDF document") }]