fixed request count statement
This commit is contained in:
parent
5f68ab0f85
commit
180bae3a1b
@ -12,10 +12,19 @@ def get_visitor_count_between(db: Database, timestamps: tuple[int, int], only_hu
|
|||||||
{'AND v.is_human = 1' if only_human else ''}""")[0][0]
|
{'AND v.is_human = 1' if only_human else ''}""")[0][0]
|
||||||
|
|
||||||
def get_request_count_between(db: Database, timestamps: tuple[int, int], only_human=False):
|
def get_request_count_between(db: Database, timestamps: tuple[int, int], only_human=False):
|
||||||
|
if only_human:
|
||||||
return db(f"""SELECT COUNT(r.request_id)
|
return db(f"""SELECT COUNT(r.request_id)
|
||||||
FROM request AS r, visitor AS v
|
FROM request AS r
|
||||||
WHERE r.time BETWEEN {timestamps[0]} AND {timestamps[1]}
|
JOIN (
|
||||||
{'AND v.is_human = 1' if only_human else ''}""")[0][0]
|
SELECT visitor_id
|
||||||
|
FROM visitor
|
||||||
|
{'WHERE is_human = 1' if only_human else ''}
|
||||||
|
) AS v ON v.visitor_id = r.visitor_id
|
||||||
|
WHERE r.time BETWEEN {timestamps[0]} AND {timestamps[1]}""")[0][0]
|
||||||
|
else:
|
||||||
|
return db(f"""SELECT COUNT(*)
|
||||||
|
FROM request
|
||||||
|
WHERE time BETWEEN {timestamps[0]} AND {timestamps[1]}""")[0][0]
|
||||||
|
|
||||||
|
|
||||||
def get_new_visitor_count_between(db: Database, timestamps: tuple[int, int]):
|
def get_new_visitor_count_between(db: Database, timestamps: tuple[int, int]):
|
||||||
|
Loading…
Reference in New Issue
Block a user