summaryrefslogtreecommitdiffstats
path: root/girok/server/src/category/service.py
blob: e6f78f5a828d54858b0b7139589bde1b0f5d17de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
from collections import defaultdict
from sqlalchemy.orm import Session
from sqlalchemy import and_

import girok.server.src.category.exceptions as exceptions
import girok.server.src.category.models as models
import girok.server.src.utils as global_utils

def create_category(db: Session, cat_data):
    new_cat = models.TaskCategory(**cat_data)
    db.add(new_cat)
    db.commit()
    db.refresh(new_cat)
    return global_utils.sql_obj_to_dict(new_cat)


def delete_category(db: Session, cat_id: int):
    cat = db.query(models.TaskCategory).\
        filter(
            and_(
               models.TaskCategory.task_category_id == cat_id 
            )).first()
    db.delete(cat)
    db.commit()
    return cat


def rename_category(db: Session, cat_id: int, new_name: str):
    cat = db.query(models.TaskCategory).\
        filter(
            and_(
                models.TaskCategory.task_category_id == cat_id
            )
            ).first()
    setattr(cat, "name", new_name)
    db.commit()
    
    
def move_category(db: Session, cat_id: int, new_pid: int):
    cat = db.query(models.TaskCategory).\
        filter(
            and_(
                models.TaskCategory.task_category_id == cat_id
            )
            ).first()
    setattr(cat, "super_task_category_id", new_pid)
    db.commit()


def get_category_id_by_name_and_parent_id(db: Session, name: str, parent_id: int):
    category = db.query(models.TaskCategory.task_category_id).\
        filter(
            and_(
                models.TaskCategory.name == name,
                models.TaskCategory.super_task_category_id == parent_id
            )
        ).first()
    if not category:
        return None
    return category[0]


def get_category_name_by_id(db: Session, cat_id: int):
    if cat_id is None:
        return "No Category"
    
    cat = db.query(models.TaskCategory.name).\
        filter(models.TaskCategory.task_category_id == cat_id).\
        first()
    return cat[0] if cat else None


def get_subcategories_by_parent_id(db: Session, pid: int):
    subcats = db.query(models.TaskCategory).\
        filter(
            and_(
                models.TaskCategory.super_task_category_id == pid)    
            ).all()
    return subcats


def get_subcategory_ids_by_parent_id(db: Session, pid: int):
    sub_cats = get_subcategories_by_parent_id(db, pid)
    sub_cats_id = [sub.task_category_id for sub in sub_cats]
    return sub_cats_id


def build_category_tree(db: Session, cat_id):
    subs = get_subcategories_by_parent_id(db, cat_id)
    if subs is None: # Base case
        return {}
    res = defaultdict(dict)
    for sub in subs:
        res[sub.name]['subcategories'] = build_category_tree(db, sub.task_category_id)
        res[sub.name]['color'] = sub.color
    return res


def is_super_category(db: Session, super: str, sub: str):
    sub_cat = db.query(models.TaskCategory).\
        filter(
            and_(
                models.TaskCategory.name == sub,
                models.TaskCategory.super_category_name == super
            )
        ).first()
    return sub_cat


def get_last_cat_id(db: Session, cats: list):
    '''
    ex) ['HKU', 'COMP3230', 'Assignment'] -> return id of Assignment
    cats: list[str]
    Return
        parent_id (int): closest parent id
        cumul_path (str): cumulative path from first and second to last category, connected by /
    '''
    parent_id = None
    cumul_path = ""
    if not cats:
        return parent_id, cumul_path

    for cat_name in cats:
        cat_id = get_category_id_by_name_and_parent_id(db, cat_name, parent_id)
        if not cat_id:
            raise exceptions.SubcategoryNotExistException(cumul_path, cat_name)
        parent_id = cat_id
        cumul_path += cat_name + "/"
    return parent_id, cumul_path


def check_exist_category(db: Session, cats: list):
    parent_id = None
    for cat_name in cats:
        cat_id = get_category_id_by_name_and_parent_id(db, cat_name, parent_id)
        if not cat_id:
            return False
        parent_id = cat_id
    return True
    

def get_category_color_by_id(db: Session, cat_id: int):
    cat = db.query(models.TaskCategory).\
        filter(
                and_(
                    models.TaskCategory.task_category_id == cat_id   
                )
            ).first()
    if not cat:
        return None
    return cat.color


def get_category_full_path_by_id(db: Session, category_id: int):
    if category_id is None:
        return ""
    cat_path = ""
    cat = db.query(models.TaskCategory).\
        filter(
            and_(
                models.TaskCategory.task_category_id == category_id
            )
        ).first()
    cat_name = cat.name
    super_cat_id = cat.super_task_category_id
    if super_cat_id is None: # base case
        return cat_name + "/"
    super_cat_full_path = get_category_full_path_by_id(db, super_cat_id)
    cat_path = super_cat_full_path + cat_name + "/"
    return cat_path


def get_all_category_colors(db: Session):
    colors = db.query(models.TaskCategory.name, models.TaskCategory.color).all()
    colors = {c[0]: c[1] for c in colors}
    return colors

    
def get_root_category_id(db: Session, cat_id: int):
    cat = db.query(models.TaskCategory).\
        filter(
                and_(
                    models.TaskCategory.task_category_id == cat_id   
                )
            ).first()
        
    if not cat:
        raise exceptions.CategoryNotExistException(str(cat_id))
    
    pid = cat.super_task_category_id
    if pid is None:
        return cat_id
    
    return get_root_category_id(db,  pid)