2020-07-05 23:40:12 +08:00
|
|
|
# The core application of the Mia project.
|
|
|
|
# by imacat <imacat@mail.imacat.idv.tw>, 2020/6/29
|
|
|
|
|
|
|
|
# Copyright (c) 2020 imacat.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2020-07-08 07:24:36 +08:00
|
|
|
"""The data models of the Mia core application.
|
2020-07-05 23:40:12 +08:00
|
|
|
|
|
|
|
"""
|
2020-08-02 09:53:26 +08:00
|
|
|
from dirtyfields import DirtyFieldsMixin
|
2020-07-04 08:17:08 +08:00
|
|
|
from django.db import models
|
|
|
|
|
2020-07-21 21:23:54 +08:00
|
|
|
from mia_core.utils import get_multi_lingual_attr, set_multi_lingual_attr
|
2020-07-14 22:01:32 +08:00
|
|
|
|
2020-07-05 23:40:12 +08:00
|
|
|
|
2020-08-02 09:53:26 +08:00
|
|
|
class Country(DirtyFieldsMixin, models.Model):
|
2020-07-05 23:40:12 +08:00
|
|
|
"""A country."""
|
|
|
|
sn = models.PositiveIntegerField(primary_key=True)
|
|
|
|
code = models.CharField(max_length=2, unique=True)
|
|
|
|
name_en = models.CharField(max_length=64)
|
2020-07-16 23:13:15 +08:00
|
|
|
name_zh_hant = models.CharField(
|
|
|
|
max_length=32, null=True, db_column="name_zhtw")
|
|
|
|
name_zh_hans = models.CharField(
|
|
|
|
max_length=32, null=True, db_column="name_zhcn")
|
2020-07-05 23:40:12 +08:00
|
|
|
is_special = models.BooleanField(
|
|
|
|
default=False, db_column="special")
|
|
|
|
created_at = models.DateTimeField(
|
|
|
|
auto_now_add=True, db_column="created")
|
|
|
|
created_by = models.ForeignKey(
|
|
|
|
"User", on_delete=models.PROTECT,
|
|
|
|
db_column="createdby", related_name="created_countries")
|
|
|
|
updated_at = models.DateTimeField(
|
|
|
|
auto_now_add=True, db_column="updated")
|
|
|
|
updated_by = models.ForeignKey(
|
|
|
|
"User", on_delete=models.PROTECT,
|
|
|
|
db_column="updatedby", related_name="updated_countries")
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
"""Returns the string representation of this country."""
|
2020-07-16 23:13:15 +08:00
|
|
|
return self.code.__str__() + " " + self.name.__str__()
|
2020-07-05 23:40:12 +08:00
|
|
|
|
2020-07-14 22:01:32 +08:00
|
|
|
@property
|
2020-07-16 23:13:15 +08:00
|
|
|
def name(self):
|
2020-07-21 21:23:54 +08:00
|
|
|
return get_multi_lingual_attr(self, "name", "en")
|
2020-07-14 22:01:32 +08:00
|
|
|
|
2020-07-16 23:13:15 +08:00
|
|
|
@name.setter
|
|
|
|
def name(self, value):
|
2020-07-21 21:23:54 +08:00
|
|
|
set_multi_lingual_attr(self, "name", value)
|
2020-07-14 22:01:32 +08:00
|
|
|
|
2020-07-05 23:40:12 +08:00
|
|
|
class Meta:
|
|
|
|
db_table = "countries"
|
|
|
|
|
|
|
|
|
2020-08-02 09:53:26 +08:00
|
|
|
class User(DirtyFieldsMixin, models.Model):
|
2020-07-05 23:40:12 +08:00
|
|
|
"""A user."""
|
|
|
|
sn = models.PositiveIntegerField(primary_key=True)
|
|
|
|
login_id = models.CharField(max_length=32, unique=True, db_column="id")
|
|
|
|
password = models.CharField(max_length=32, db_column="passwd")
|
|
|
|
name = models.CharField(max_length=32)
|
|
|
|
is_disabled = models.BooleanField(
|
|
|
|
default=False, db_column="disabled")
|
|
|
|
is_deleted = models.BooleanField(
|
|
|
|
default=False, db_column="deleted")
|
|
|
|
language = models.CharField(max_length=6, null=True, db_column="lang")
|
|
|
|
visits = models.PositiveSmallIntegerField(null=True)
|
|
|
|
visited_at = models.DateTimeField(null=True, db_column="visited")
|
|
|
|
visited_ip = models.GenericIPAddressField(null=True, db_column="ip")
|
2020-07-16 22:25:33 +08:00
|
|
|
visited_host = models.CharField(
|
|
|
|
max_length=128, null=True, db_column="host")
|
2020-07-05 23:40:12 +08:00
|
|
|
visited_country = models.ForeignKey(
|
|
|
|
Country, on_delete=models.PROTECT, null=True,
|
|
|
|
db_column="ct", to_field="code", related_name="users")
|
|
|
|
created_at = models.DateTimeField(
|
|
|
|
auto_now_add=True, db_column="created")
|
|
|
|
created_by = models.ForeignKey(
|
|
|
|
"self", on_delete=models.PROTECT,
|
|
|
|
db_column="createdby", related_name="created_users")
|
|
|
|
updated_at = models.DateTimeField(
|
|
|
|
auto_now_add=True, db_column="updated")
|
|
|
|
updated_by = models.ForeignKey(
|
|
|
|
"self", on_delete=models.PROTECT,
|
|
|
|
db_column="updatedby", related_name="updated_users")
|
|
|
|
REQUIRED_FIELDS = ["sn", "name"]
|
|
|
|
USERNAME_FIELD = "login_id"
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_anonymous(self):
|
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_authenticated(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def set_password(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def check_password(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
"""Returns the string representation of this user."""
|
|
|
|
return "%s(%s)" % (
|
|
|
|
self.name.__str__(), self.login_id.__str__())
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
db_table = "users"
|
|
|
|
app_label = "mia_core"
|