53 lines
1.8 KiB
Python
53 lines
1.8 KiB
Python
# ===============================================================================
|
|
# Copyright (C) 2010 Diego Duclos
|
|
#
|
|
# This file is part of eos.
|
|
#
|
|
# eos is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation, either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# eos 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 Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with eos. If not, see <http://www.gnu.org/licenses/>.
|
|
# ===============================================================================
|
|
|
|
from sqlalchemy.orm import reconstructor
|
|
import datetime
|
|
import time
|
|
|
|
# from tomorrow import threads
|
|
|
|
|
|
class SsoCharacter:
|
|
def __init__(self, charID, name, client, server, accessToken=None, refreshToken=None):
|
|
self.characterID = charID
|
|
self.characterName = name
|
|
self.client = client
|
|
self.server = server
|
|
self.accessToken = accessToken
|
|
self.refreshToken = refreshToken
|
|
self.accessTokenExpires = None
|
|
|
|
@reconstructor
|
|
def init(self):
|
|
pass
|
|
|
|
@property
|
|
def characterDisplay(self):
|
|
return "{} [{}]".format(self.characterName, self.server)
|
|
def is_token_expired(self):
|
|
if self.accessTokenExpires is None:
|
|
return True
|
|
return datetime.datetime.now() >= self.accessTokenExpires
|
|
|
|
def __repr__(self):
|
|
return "SsoCharacter(ID={}, name={}, client={}) at {}".format(
|
|
self.ID, self.characterName, self.client, hex(id(self))
|
|
)
|