mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-05-01 15:47:48 +02:00
5316246c0e
* contact form on frontend * note about reporting cameras via email * cleanup
104 lines
2.7 KiB
TypeScript
104 lines
2.7 KiB
TypeScript
import axios from "axios";
|
|
|
|
export interface Cluster {
|
|
id: string;
|
|
lat: number;
|
|
lon: number;
|
|
}
|
|
|
|
export interface BoundingBoxLiteral {
|
|
minLat: number;
|
|
maxLat: number;
|
|
minLng: number;
|
|
maxLng: number;
|
|
}
|
|
|
|
export class BoundingBox implements BoundingBoxLiteral {
|
|
minLat: number;
|
|
maxLat: number;
|
|
minLng: number;
|
|
maxLng: number;
|
|
|
|
constructor({minLat, maxLat, minLng, maxLng}: BoundingBoxLiteral) {
|
|
this.minLat = minLat;
|
|
this.maxLat = maxLat;
|
|
this.minLng = minLng;
|
|
this.maxLng = maxLng;
|
|
}
|
|
|
|
containsPoint(lat: number, lng: number) {
|
|
return lat >= this.minLat && lat <= this.maxLat && lng >= this.minLng && lng <= this.maxLng;
|
|
}
|
|
|
|
updateFromOther(boundingBoxLiteral: BoundingBoxLiteral) {
|
|
this.minLat = boundingBoxLiteral.minLat;
|
|
this.maxLat = boundingBoxLiteral.maxLat;
|
|
this.minLng = boundingBoxLiteral.minLng;
|
|
this.maxLng = boundingBoxLiteral.maxLng;
|
|
}
|
|
|
|
isSubsetOf(other: BoundingBoxLiteral) {
|
|
return (
|
|
this.minLat >= other.minLat &&
|
|
this.maxLat <= other.maxLat &&
|
|
this.minLng >= other.minLng &&
|
|
this.maxLng <= other.maxLng
|
|
);
|
|
}
|
|
}
|
|
|
|
const apiService = axios.create({
|
|
baseURL: window.location.hostname === "localhost" ? "http://localhost:3000" : "https://api.deflock.org",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
});
|
|
|
|
export const getALPRs = async (boundingBox: BoundingBox) => {
|
|
const queryParams = new URLSearchParams({
|
|
minLat: boundingBox.minLat.toString(),
|
|
maxLat: boundingBox.maxLat.toString(),
|
|
minLng: boundingBox.minLng.toString(),
|
|
maxLng: boundingBox.maxLng.toString(),
|
|
});
|
|
const response = await apiService.get(`/alpr?${queryParams.toString()}`);
|
|
return response.data;
|
|
}
|
|
|
|
export const getSponsors = async () => {
|
|
const response = await apiService.get("/sponsors/github");
|
|
return response.data;
|
|
}
|
|
|
|
export const getALPRCounts = async () => {
|
|
const s3Url = "https://cdn.deflock.me/alpr-counts.json";
|
|
const response = await apiService.get(s3Url);
|
|
return response.data;
|
|
}
|
|
|
|
export const getCities = async () => {
|
|
const s3Url = "https://cdn.deflock.me/flock_cameras_null.json";
|
|
const response = await apiService.get(s3Url);
|
|
return response.data;
|
|
}
|
|
|
|
export const geocodeQuery = async (query: string) => {
|
|
const encodedQuery = encodeURIComponent(query);
|
|
const result = (await apiService.get(`/geocode?query=${encodedQuery}`)).data;
|
|
return result;
|
|
}
|
|
|
|
export interface ContactMessagePayload {
|
|
name: string;
|
|
email: string;
|
|
topic: string;
|
|
subject: string;
|
|
message: string;
|
|
turnstileToken: string;
|
|
}
|
|
|
|
export const postContactMessage = async (payload: ContactMessagePayload) => {
|
|
const response = await apiService.post("/contact/message", payload);
|
|
return response.data;
|
|
}
|