diff --git a/server/src/uds/REST/__init__.py b/server/src/uds/REST/__init__.py index cd5396a5..5cb2e006 100644 --- a/server/src/uds/REST/__init__.py +++ b/server/src/uds/REST/__init__.py @@ -32,7 +32,6 @@ import os.path import pkgutil import sys -import time import importlib import logging import typing @@ -41,8 +40,8 @@ from django import http from django.views.generic.base import View from django.views.decorators.csrf import csrf_exempt from django.utils.decorators import method_decorator -from django.utils.translation import ugettext as _, activate -from django.conf import settings +from django.utils.translation import ugettext as _ +from uds.core import VERSION, VERSION_STAMP from .handlers import ( Handler, @@ -155,6 +154,7 @@ class Dispatcher(View): if not handler.raw: # Raw handlers will return an HttpResponse Object response = processor.getResponse(response) # Set response headers + response['UDS-Version'] = f'{VERSION};{VERSION_STAMP}' for k, val in handler.headers().items(): response[k] = val return response diff --git a/server/src/uds/REST/methods/version.py b/server/src/uds/REST/methods/version.py new file mode 100644 index 00000000..091df3b8 --- /dev/null +++ b/server/src/uds/REST/methods/version.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +# +# Copyright (c) 2022 Virtual Cable S.L.U. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without modification, +# are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# * Neither the name of Virtual Cable S.L.U. nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" +@author: Adolfo Gómez, dkmaster at dkmon dot com +""" +import logging +import typing + +from uds.core import VERSION, VERSION_STAMP + +from ..handlers import Handler + +logger = logging.getLogger(__name__) + +class UDSVersion(Handler): + authenticated = False # Version requests are public + name = 'version' + + def get(self) -> typing.MutableMapping[str, typing.Any]: + return { + 'version': VERSION, + 'build': VERSION_STAMP + }