mirror of
https://github.com/michivonah/themepark-assistant.git
synced 2025-12-22 22:16:29 +01:00
Compare commits
2 commits
0a3636fda8
...
c1336fbc88
| Author | SHA1 | Date | |
|---|---|---|---|
| c1336fbc88 | |||
| d377c68975 |
8 changed files with 88 additions and 53 deletions
|
|
@ -1,5 +1,7 @@
|
|||
import { integer, text, sqliteTable } from "drizzle-orm/sqlite-core";
|
||||
import { integer, text, sqliteTable, sqliteView } from "drizzle-orm/sqlite-core";
|
||||
import { eq, sql } from "drizzle-orm";
|
||||
|
||||
// Tables
|
||||
export const attraction = sqliteTable('attraction', {
|
||||
id: integer().primaryKey({ autoIncrement: true }),
|
||||
name: text().notNull(),
|
||||
|
|
@ -23,7 +25,7 @@ export const logbook = sqliteTable('logbook', {
|
|||
realWaittime: integer()
|
||||
})
|
||||
|
||||
export const notificationMethod = sqliteTable('notification', {
|
||||
export const notificationMethod = sqliteTable('notification_method', {
|
||||
id: integer().primaryKey({ autoIncrement: true }),
|
||||
webhookUrl: text().notNull(),
|
||||
shownName: text().notNull(),
|
||||
|
|
@ -43,3 +45,23 @@ export const user = sqliteTable('user', {
|
|||
username: text().notNull(),
|
||||
isActive: integer({ mode: 'boolean' }).default(false)
|
||||
})
|
||||
|
||||
// Views
|
||||
export const subscribedThemeparks = sqliteView('subscribed_themeparks').as((qb) =>
|
||||
qb.selectDistinct({
|
||||
apiName: sql<string>`themepark.api_name`.as('api_name')
|
||||
}).from(attractionNotification)
|
||||
.innerJoin(attraction, eq(attractionNotification.attractionId, attraction.id))
|
||||
.innerJoin(themepark, eq(attraction.themeparkId, themepark.id))
|
||||
);
|
||||
|
||||
export const attractionSubscriptions = sqliteView('attraction_subscriptions').as((qb) =>
|
||||
qb.selectDistinct({
|
||||
attractionApiCode: sql<string>`attraction.api_code`.as('attraction_api_code'),
|
||||
themeparkApiName: sql<string>`themepark.api_name`.as('themepark_api_name'),
|
||||
webhookUrl: sql<string>`notification_method.webhook_url`.as('webhook_url')
|
||||
}).from(attractionNotification)
|
||||
.innerJoin(attraction, eq(attractionNotification.attractionId, attraction.id))
|
||||
.innerJoin(themepark, eq(attraction.themeparkId, themepark.id))
|
||||
.innerJoin(notificationMethod, eq(attractionNotification.notificationMethodId, notificationMethod.id))
|
||||
);
|
||||
|
|
@ -1,62 +1,22 @@
|
|||
import { getDbEnv } from '../db/client'
|
||||
import { attraction, themepark } from '../db/schema'
|
||||
import { inArray } from 'drizzle-orm'
|
||||
import httpRequest from '../lib/http-request'
|
||||
import { Attraction } from '../types/attraction'
|
||||
import { ThemeparkSelect } from '../types/themepark'
|
||||
import asyncBatchJob from '../lib/async-batch-job'
|
||||
import fetchAttractions from '../lib/fetch-attractions'
|
||||
|
||||
interface AttractionImport {
|
||||
code: string,
|
||||
name: string,
|
||||
}
|
||||
|
||||
interface AttractionType {
|
||||
name: string,
|
||||
apiCode: string,
|
||||
themeparkId: number
|
||||
}
|
||||
|
||||
interface Themepark {
|
||||
apiName: string,
|
||||
id: number
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetching the attractions from a specified park
|
||||
* @param park API Code for request themepark
|
||||
* @param endpoint Endpoint where to fetch data from (default: https://api.wartezeiten.app/v1/parks)
|
||||
* @param lang Language used for API request
|
||||
* @returns Interface with attraction code & name
|
||||
*/
|
||||
async function fetchAttractions(
|
||||
park: string,
|
||||
endpoint: string = "https://api.wartezeiten.app/v1/parks",
|
||||
lang: string = 'de'
|
||||
): Promise<AttractionImport[]>{
|
||||
try{
|
||||
const headers = {
|
||||
'language':lang,
|
||||
'park':park
|
||||
};
|
||||
|
||||
const result = await httpRequest<AttractionImport[]>(endpoint, {
|
||||
headers: headers
|
||||
});
|
||||
return result;
|
||||
}
|
||||
catch(e){
|
||||
throw new Error(`Failed to fetch attractions: ${e}`);
|
||||
}
|
||||
}
|
||||
type ThemeparkAPI = Pick<ThemeparkSelect, "apiName" | "id">;
|
||||
|
||||
/**
|
||||
* Return an object of all themeparks saved in the database
|
||||
* @param env DB Connection
|
||||
* @returns Object of themeparks with api name & id from internal DB
|
||||
*/
|
||||
async function getThemeparks(env: Env): Promise<Themepark[]>{
|
||||
async function getThemeparks(env: Env): Promise<ThemeparkAPI[]>{
|
||||
try{
|
||||
const db = getDbEnv(env);
|
||||
const themeparks: Themepark[] = await db.select({
|
||||
const themeparks: ThemeparkAPI[] = await db.select({
|
||||
apiName: themepark.apiName,
|
||||
id: themepark.id
|
||||
}).from(themepark);
|
||||
|
|
@ -74,13 +34,13 @@ async function getThemeparks(env: Env): Promise<Themepark[]>{
|
|||
* @param parks Object of themeparks to get attractions from
|
||||
* @returns Object of attractions
|
||||
*/
|
||||
async function getAttractionsByParks(env: Env, parks: Themepark[]): Promise<AttractionType[]>{
|
||||
async function getAttractionsByParks(env: Env, parks: ThemeparkAPI[]): Promise<Attraction[]>{
|
||||
try{
|
||||
const db = getDbEnv(env);
|
||||
|
||||
const parkIds: number[] = parks.map(p => p.id);
|
||||
|
||||
const attractions: AttractionType[] = await db.select({
|
||||
const attractions: Attraction[] = await db.select({
|
||||
name: attraction.name,
|
||||
apiCode: attraction.apiCode,
|
||||
themeparkId: attraction.themeparkId
|
||||
|
|
@ -100,7 +60,7 @@ async function getAttractionsByParks(env: Env, parks: Themepark[]): Promise<Attr
|
|||
* @param env DB Connection
|
||||
* @param parks Object of the themeparks from which the attractions have to be imported
|
||||
*/
|
||||
async function importAttractionsByParks(env: Env, parks: Themepark[]): Promise<void>{
|
||||
async function importAttractionsByParks(env: Env, parks: ThemeparkAPI[]): Promise<void>{
|
||||
try{
|
||||
const db = getDbEnv(env);
|
||||
|
||||
|
|
|
|||
30
api/src/lib/fetch-attractions.ts
Normal file
30
api/src/lib/fetch-attractions.ts
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
import { AttractionImport } from '../types/attraction'
|
||||
import httpRequest from '../lib/http-request'
|
||||
|
||||
/**
|
||||
* Fetching the attractions from a specified park
|
||||
* @param park API Code for request themepark
|
||||
* @param endpoint Endpoint where to fetch data from (default: https://api.wartezeiten.app/v1/parks)
|
||||
* @param lang Language used for API request
|
||||
* @returns Interface with attraction code & name
|
||||
*/
|
||||
export default async function fetchAttractions(
|
||||
park: string,
|
||||
endpoint: string = "https://api.wartezeiten.app/v1/waitingtimes",
|
||||
lang: string = 'de'
|
||||
): Promise<AttractionImport[]>{
|
||||
try{
|
||||
const headers = {
|
||||
'language':lang,
|
||||
'park':park
|
||||
};
|
||||
|
||||
const result = await httpRequest<AttractionImport[]>(endpoint, {
|
||||
headers: headers
|
||||
});
|
||||
return result;
|
||||
}
|
||||
catch(e){
|
||||
throw new Error(`Failed to fetch attractions: ${e}`);
|
||||
}
|
||||
}
|
||||
3
api/src/types/attraction-subscriptions.ts
Normal file
3
api/src/types/attraction-subscriptions.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { attractionSubscriptions } from '../db/schema';
|
||||
|
||||
export type AttractionSubscription = typeof attractionSubscriptions.$inferSelect;
|
||||
|
|
@ -3,3 +3,20 @@ import { attraction } from '../db/schema';
|
|||
|
||||
export type Attraction = InferInsertModel<typeof attraction>
|
||||
export type AttractionSelect = InferSelectModel<typeof attraction>
|
||||
|
||||
// API Response format
|
||||
export interface AttractionImport {
|
||||
code: string,
|
||||
name: string,
|
||||
waitingtime: number,
|
||||
status: "opened" | "virtualqueue" | "maintenance" | "closedice" | "closedweather" | "closed"
|
||||
}
|
||||
|
||||
// Waittime comparison
|
||||
export interface AttractionChanges {
|
||||
apiCode: string,
|
||||
name: string,
|
||||
waittime: number,
|
||||
hasChanged: boolean,
|
||||
increased: boolean
|
||||
}
|
||||
3
api/src/types/subscribed-themeparks.ts
Normal file
3
api/src/types/subscribed-themeparks.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { subscribedThemeparks } from '../db/schema';
|
||||
|
||||
export type SubscribedThemeparks = typeof subscribedThemeparks.$inferSelect;
|
||||
Loading…
Add table
Add a link
Reference in a new issue