1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-01 21:17:58 +03:00

Refactor variable names in user_service_status function and ProxmoxClient

This commit is contained in:
Adolfo Gómez García 2024-10-03 17:49:25 +02:00
parent 1a7a4865af
commit fa24a5e4f4
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23
2 changed files with 6 additions and 6 deletions
server/src/uds
REST/methods
core/util

View File

@ -145,7 +145,7 @@ class Client(Handler):
'Res: %s',
info
)
password = CryptoManager().symmetric_decrypt(data['password'], scrambler)
password = CryptoManager.manager().symmetric_decrypt(data['password'], scrambler)
# userService.setConnectionSource(srcIp, hostname) # Store where we are accessing from so we can notify Service
if not info.ip:
@ -193,10 +193,10 @@ class Client(Handler):
"""
logger.debug('Client args for GET: %s', self._args)
def error() -> None:
def _error() -> None:
raise exceptions.rest.RequestError('Invalid request')
def noargs() -> dict[str, typing.Any]:
def _noargs() -> dict[str, typing.Any]:
return Client.result(
{
'availableVersion': CLIENT_VERSION, # Compat with old clients, TB removed soon...
@ -210,8 +210,8 @@ class Client(Handler):
return match(
self._args,
error, # In case of error, raises RequestError
((), noargs), # No args, return version
_error, # In case of error, raises RequestError
((), _noargs), # No args, return version
(('test',), self.test), # Test request, returns "Correct"
(
(

View File

@ -70,7 +70,7 @@ class PropertyAccessor:
try:
p = self._filter().get(key=key)
p.value = value
p.save()
p.save(update_fields=['value'])
except Properties.DoesNotExist:
Properties.objects.create(owner_id=self.owner_id, owner_type=self.owner_type, key=key, value=value)