2016-05-20 02:52:50 +08:00
|
|
|
#!/usr/bin/env python3
|
2016-05-20 05:15:46 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-05-20 02:52:50 +08:00
|
|
|
#
|
|
|
|
# Telegram bot to play UNO in group chats
|
|
|
|
# Copyright (c) 2016 Jannes Höke <uno@jhoeke.de>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2016-05-22 20:45:51 +08:00
|
|
|
from database import db, Optional, Required, PrimaryKey, db_session
|
2016-05-20 02:52:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
class UserSetting(db.Entity):
|
|
|
|
|
2016-05-22 20:45:51 +08:00
|
|
|
id = PrimaryKey(int, auto=False, size=64) # Telegram User ID
|
2016-05-25 11:35:30 +08:00
|
|
|
lang = Optional(str, default='en_US') # The language setting for this user
|
2016-05-20 02:52:50 +08:00
|
|
|
stats = Optional(bool, default=False) # Opt-in to keep game statistics
|
|
|
|
first_places = Optional(int, default=0) # Nr. of games won in first place
|
|
|
|
games_played = Optional(int, default=0) # Nr. of games completed
|
2016-05-22 20:45:51 +08:00
|
|
|
cards_played = Optional(int, default=0) # Nr. of cards played total
|
|
|
|
use_keyboards = Optional(bool, default=False) # Use keyboards (unused)
|