2016-12-06 23:10:34 +00:00
|
|
|
# Copyright 2016 Mycroft AI, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of Mycroft Core.
|
|
|
|
#
|
|
|
|
# Mycroft Core 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.
|
|
|
|
#
|
|
|
|
# Mycroft Core 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 Mycroft Core. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import json
|
|
|
|
from genericpath import exists, isfile
|
|
|
|
|
|
|
|
from mycroft.util.log import getLogger
|
|
|
|
|
|
|
|
__author__ = 'augustnmonteiro'
|
|
|
|
|
|
|
|
LOG = getLogger(__name__)
|
|
|
|
|
|
|
|
|
2016-12-09 02:07:36 +00:00
|
|
|
class VersionManager(object):
|
|
|
|
__location = "/opt/mycroft/version.json"
|
2016-12-06 23:10:34 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2016-12-09 02:04:16 +00:00
|
|
|
def get():
|
2016-12-20 20:41:38 +00:00
|
|
|
if (exists(VersionManager.__location) and
|
|
|
|
isfile(VersionManager.__location)):
|
2016-12-06 23:10:34 +00:00
|
|
|
try:
|
2016-12-09 02:07:36 +00:00
|
|
|
with open(VersionManager.__location) as f:
|
2016-12-06 23:10:34 +00:00
|
|
|
return json.load(f)
|
2016-12-09 02:04:16 +00:00
|
|
|
except:
|
2016-12-20 20:41:38 +00:00
|
|
|
LOG.error("Failed to load version from '%s'"
|
|
|
|
% VersionManager.__location)
|
2016-12-09 02:04:16 +00:00
|
|
|
return {"coreVersion": None, "enclosureVersion": None}
|