mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-25 19:55:26 +03:00
36 lines
927 B
JavaScript
36 lines
927 B
JavaScript
import { runQuery } from "~/node_common/data/utilities";
|
|
|
|
//NOTE(martina): can be single activity item (an object) or multiple activity items (an array of objects)
|
|
export default async ({ id }) => {
|
|
return await runQuery({
|
|
label: "CREATE_USAGE_STAT",
|
|
queryFn: async (DB) => {
|
|
//TODO(martina): only one usage activity per person every 24 hours (by UTC time)
|
|
let existing = await DB.select("*")
|
|
.from("usage")
|
|
.where({ userId: id })
|
|
.whereRaw("?? >= now()::date", "createdAt")
|
|
.first();
|
|
if (existing) {
|
|
return;
|
|
}
|
|
|
|
let query = await DB.insert({ userId: id }).into("usage").returning("*");
|
|
|
|
if (!query) {
|
|
return null;
|
|
}
|
|
|
|
query = query.pop();
|
|
|
|
return JSON.parse(JSON.stringify(query));
|
|
},
|
|
errorFn: async (e) => {
|
|
return {
|
|
error: true,
|
|
decorator: "CREATE_ACTIVITY",
|
|
};
|
|
},
|
|
});
|
|
};
|