2013-12-06 06:39:27 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2015-01-14 02:05:26 +02:00
|
|
|
# Copyright (C) 2015 GNS3 Technologies Inc.
|
2013-12-06 06:39:27 +02:00
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2015-02-23 12:27:07 +02:00
|
|
|
from ...web.route import Route
|
2015-03-13 23:15:27 +02:00
|
|
|
from ...config import Config
|
2015-02-23 12:27:07 +02:00
|
|
|
from ...schemas.version import VERSION_SCHEMA
|
|
|
|
from ...version import __version__
|
2015-01-14 02:05:26 +02:00
|
|
|
from aiohttp.web import HTTPConflict
|
2013-12-06 06:39:27 +02:00
|
|
|
|
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
class VersionHandler:
|
2013-12-06 06:39:27 +02:00
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
@classmethod
|
|
|
|
@Route.get(
|
|
|
|
r"/version",
|
|
|
|
description="Retrieve the server version number",
|
|
|
|
output=VERSION_SCHEMA)
|
|
|
|
def version(request, response):
|
2015-03-13 23:15:27 +02:00
|
|
|
|
|
|
|
config = Config.instance()
|
|
|
|
local_server =config.get_section_config("Server").getboolean("local", False)
|
|
|
|
response.json({"version": __version__, "local": local_server})
|
2015-01-14 02:05:26 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@Route.post(
|
|
|
|
r"/version",
|
|
|
|
description="Check if version is the same as the server",
|
|
|
|
output=VERSION_SCHEMA,
|
|
|
|
input=VERSION_SCHEMA,
|
|
|
|
status_codes={
|
|
|
|
200: "Same version",
|
|
|
|
409: "Invalid version"
|
|
|
|
})
|
|
|
|
def check_version(request, response):
|
|
|
|
if request.json["version"] != __version__:
|
2015-02-24 18:40:01 +02:00
|
|
|
raise HTTPConflict(text="Client version {} differs with server version {}".format(request.json["version"], __version__))
|
2015-02-02 01:55:08 +02:00
|
|
|
response.json({"version": __version__})
|