commit 436a79d99f7bdb252eecf75657dbcc0185983d33 Author: Jesse Wierzbinski Date: Sun Sep 10 17:31:08 2023 -1000 Initial commit diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 00000000..2eae3cbc --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,7 @@ +module.exports = { + extends: [ + "eslint:strict", + "plugin:@typescript-eslint/strict-type-checked", + "plugin:@typescript-eslint/stylistic", + ], +}; diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..3cf3b5b5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,170 @@ +# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore + +# Logs + +logs +_.log +npm-debug.log_ +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) + +report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json + +# Runtime data + +pids +_.pid +_.seed +\*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover + +lib-cov + +# Coverage directory used by tools like istanbul + +coverage +\*.lcov + +# nyc test coverage + +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) + +.grunt + +# Bower dependency directory (https://bower.io/) + +bower_components + +# node-waf configuration + +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) + +build/Release + +# Dependency directories + +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) + +web_modules/ + +# TypeScript cache + +\*.tsbuildinfo + +# Optional npm cache directory + +.npm + +# Optional eslint cache + +.eslintcache + +# Optional stylelint cache + +.stylelintcache + +# Microbundle cache + +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history + +.node_repl_history + +# Output of 'npm pack' + +\*.tgz + +# Yarn Integrity file + +.yarn-integrity + +# dotenv environment variable files + +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) + +.cache +.parcel-cache + +# Next.js build output + +.next +out + +# Nuxt.js build / generate output + +.nuxt +dist + +# Gatsby files + +.cache/ + +# Comment in the public line in if your project uses Gatsby and not Next.js + +# https://nextjs.org/blog/next-9-1#public-directory-support + +# public + +# vuepress build output + +.vuepress/dist + +# vuepress v2.x temp and cache directory + +.temp +.cache + +# Docusaurus cache and generated files + +.docusaurus + +# Serverless directories + +.serverless/ + +# FuseBox cache + +.fusebox/ + +# DynamoDB Local files + +.dynamodb/ + +# TernJS port file + +.tern-port + +# Stores VSCode versions used for testing VSCode extensions + +.vscode-test + +# yarn v2 + +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.\* +config/config.toml \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 00000000..e8ecc79b --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# fedi-project + +To install dependencies: + +```bash +bun install +``` + +To run: + +```bash +bun run index.ts +``` + +This project was created using `bun init` in bun v0.8.1. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime. diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 00000000..80d18dfd Binary files /dev/null and b/bun.lockb differ diff --git a/database/datasource.ts b/database/datasource.ts new file mode 100644 index 00000000..3d075861 --- /dev/null +++ b/database/datasource.ts @@ -0,0 +1,17 @@ +import { DataSource } from "typeorm"; +import { getConfig } from "../utils/config"; + +const config = getConfig(); + +const AppDataSource = new DataSource({ + type: "postgres", + host: config.database.host, + port: config.database.port, + username: config.database.username, + password: config.database.password, + database: config.database.database, + synchronize: true, + entities: ["./entities/*.ts"], +}); + +export { AppDataSource }; diff --git a/database/entities/User.ts b/database/entities/User.ts new file mode 100644 index 00000000..9e013411 --- /dev/null +++ b/database/entities/User.ts @@ -0,0 +1,21 @@ +import { BaseEntity, Column, CreateDateColumn, Entity, PrimaryGeneratedColumn, UpdateDateColumn } from "typeorm"; + +@Entity({ + name: "users", +}) +export class User extends BaseEntity { + @PrimaryGeneratedColumn("uuid") + id!: string; + + @Column("varchar") + username!: string; + + @Column("varchar") + password!: string; + + @CreateDateColumn() + created_at!: Date; + + @UpdateDateColumn() + updated_at!: Date; +} \ No newline at end of file diff --git a/index.ts b/index.ts new file mode 100644 index 00000000..c073b0e5 --- /dev/null +++ b/index.ts @@ -0,0 +1,23 @@ +const router = new Bun.FileSystemRouter({ + style: "nextjs", + dir: process.cwd() + "/server/api", +}) + +Bun.serve({ + port: 8080, + hostname: "0.0.0.0", // defaults to "0.0.0.0" + async fetch(req) { + const url = new URL(req.url); + + const matchedRoute = router.match(req); + + if (matchedRoute) { + return (await import(matchedRoute.filePath)).default(req, matchedRoute); + } else { + const response = new Response(undefined, { + status: 404, + statusText: "Route not found", + }); + } + }, +}); diff --git a/package.json b/package.json new file mode 100644 index 00000000..27596bb7 --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "name": "fedi-project", + "module": "index.ts", + "type": "module", + "devDependencies": { + "@typescript-eslint/eslint-plugin": "^6.6.0", + "bun-types": "latest", + "eslint": "^8.49.0" + }, + "peerDependencies": { + "typescript": "^5.0.0" + }, + "dependencies": { + "pg": "^8.11.3", + "typeorm": "^0.3.17" + } +} \ No newline at end of file diff --git a/server/api/v1/accounts/[id]/index.ts b/server/api/v1/accounts/[id]/index.ts new file mode 100644 index 00000000..630da01c --- /dev/null +++ b/server/api/v1/accounts/[id]/index.ts @@ -0,0 +1,26 @@ +import { jsonResponse } from "@response"; +import { MatchedRoute } from "bun"; +import { User } from "~database/entities/User"; + +export default async ( + req: Request, + matchedRoute: MatchedRoute +): Promise => { + const id = matchedRoute.params.id; + + const user = await User.findOneBy({ + id, + }); + + if (!user) + return jsonResponse( + { + statusText: "User not found", + }, + 404 + ); + + return jsonResponse({ + id, + }); +}; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..efa87a01 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,30 @@ +{ + "compilerOptions": { + "lib": ["ESNext"], + "module": "esnext", + "target": "esnext", + "moduleResolution": "bundler", + "moduleDetection": "force", + "allowImportingTsExtensions": true, + "noEmit": true, + "composite": true, + "strict": true, + "downlevelIteration": true, + "skipLibCheck": true, + "noImplicitAny": true, + "jsx": "preserve", + "allowSyntheticDefaultImports": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "experimentalDecorators": true, + "types": [ + "bun-types" // add Bun global + ], + "paths": { + "@*": ["./utils/*"], + "~*": ["./*"] + } + } +} diff --git a/types/entities/account.ts b/types/entities/account.ts new file mode 100644 index 00000000..cf663eda --- /dev/null +++ b/types/entities/account.ts @@ -0,0 +1,34 @@ +import { Emoji } from "./emoji"; +import { Field } from "./field"; +import { Role } from "./role"; +import { Source } from "./source"; + +export type Account = { + id: string; + username: string; + acct: string; + display_name: string; + locked: boolean; + discoverable?: boolean; + group: boolean | null; + noindex: boolean | null; + suspended: boolean | null; + limited: boolean | null; + created_at: string; + followers_count: number; + following_count: number; + statuses_count: number; + note: string; + url: string; + avatar: string; + avatar_static: string; + header: string; + header_static: string; + emojis: Array; + moved: Account | null; + fields: Array; + bot: boolean; + source?: Source; + role?: Role; + mute_expires_at?: string; +}; diff --git a/types/entities/activity.ts b/types/entities/activity.ts new file mode 100644 index 00000000..47647ffd --- /dev/null +++ b/types/entities/activity.ts @@ -0,0 +1,6 @@ +export type Activity = { + week: string; + statuses: string; + logins: string; + registrations: string; +}; diff --git a/types/entities/announcement.ts b/types/entities/announcement.ts new file mode 100644 index 00000000..d954ff82 --- /dev/null +++ b/types/entities/announcement.ts @@ -0,0 +1,39 @@ +import { Emoji } from "./emoji"; +import { StatusTag } from "./status"; + +export type Announcement = { + id: string; + content: string; + starts_at: string | null; + ends_at: string | null; + published: boolean; + all_day: boolean; + published_at: string; + updated_at: string; + read: boolean | null; + mentions: Array; + statuses: Array; + tags: Array; + emojis: Array; + reactions: Array; +}; + +export type AnnouncementAccount = { + id: string; + username: string; + url: string; + acct: string; +}; + +export type AnnouncementStatus = { + id: string; + url: string; +}; + +export type AnnouncementReaction = { + name: string; + count: number; + me: boolean | null; + url: string | null; + static_url: string | null; +}; diff --git a/types/entities/application.ts b/types/entities/application.ts new file mode 100644 index 00000000..0d17d205 --- /dev/null +++ b/types/entities/application.ts @@ -0,0 +1,5 @@ +export type Application = { + name: string; + website?: string | null; + vapid_key?: string | null; +}; diff --git a/types/entities/async_attachment.ts b/types/entities/async_attachment.ts new file mode 100644 index 00000000..f822ab08 --- /dev/null +++ b/types/entities/async_attachment.ts @@ -0,0 +1,13 @@ +import { Meta } from "./attachment"; + +export type AsyncAttachment = { + id: string; + type: "unknown" | "image" | "gifv" | "video" | "audio"; + url: string | null; + remote_url: string | null; + preview_url: string; + text_url: string | null; + meta: Meta | null; + description: string | null; + blurhash: string | null; +}; diff --git a/types/entities/attachment.ts b/types/entities/attachment.ts new file mode 100644 index 00000000..e7c40115 --- /dev/null +++ b/types/entities/attachment.ts @@ -0,0 +1,47 @@ +export type Sub = { + // For Image, Gifv, and Video + width?: number; + height?: number; + size?: string; + aspect?: number; + + // For Gifv and Video + frame_rate?: string; + + // For Audio, Gifv, and Video + duration?: number; + bitrate?: number; +}; + +export type Focus = { + x: number; + y: number; +}; + +export type Meta = { + original?: Sub; + small?: Sub; + focus?: Focus; + length?: string; + duration?: number; + fps?: number; + size?: string; + width?: number; + height?: number; + aspect?: number; + audio_encode?: string; + audio_bitrate?: string; + audio_channel?: string; +}; + +export type Attachment = { + id: string; + type: "unknown" | "image" | "gifv" | "video" | "audio"; + url: string; + remote_url: string | null; + preview_url: string | null; + text_url: string | null; + meta: Meta | null; + description: string | null; + blurhash: string | null; +}; diff --git a/types/entities/card.ts b/types/entities/card.ts new file mode 100644 index 00000000..f6513a71 --- /dev/null +++ b/types/entities/card.ts @@ -0,0 +1,16 @@ +export type Card = { + url: string; + title: string; + description: string; + type: "link" | "photo" | "video" | "rich"; + image: string | null; + author_name: string; + author_url: string; + provider_name: string; + provider_url: string; + html: string; + width: number; + height: number; + embed_url: string; + blurhash: string | null; +}; diff --git a/types/entities/context.ts b/types/entities/context.ts new file mode 100644 index 00000000..623a11e0 --- /dev/null +++ b/types/entities/context.ts @@ -0,0 +1,6 @@ +import { Status } from "./status"; + +export type Context = { + ancestors: Array; + descendants: Array; +}; diff --git a/types/entities/conversation.ts b/types/entities/conversation.ts new file mode 100644 index 00000000..fd372f43 --- /dev/null +++ b/types/entities/conversation.ts @@ -0,0 +1,9 @@ +import { Account } from "./account"; +import { Status } from "./status"; + +export type Conversation = { + id: string; + accounts: Array; + last_status: Status | null; + unread: boolean; +}; diff --git a/types/entities/emoji.ts b/types/entities/emoji.ts new file mode 100644 index 00000000..d41b2ab5 --- /dev/null +++ b/types/entities/emoji.ts @@ -0,0 +1,7 @@ +export type Emoji = { + shortcode: string; + static_url: string; + url: string; + visible_in_picker: boolean; + category?: string; +}; diff --git a/types/entities/featured_tag.ts b/types/entities/featured_tag.ts new file mode 100644 index 00000000..b3479069 --- /dev/null +++ b/types/entities/featured_tag.ts @@ -0,0 +1,6 @@ +export type FeaturedTag = { + id: string; + name: string; + statuses_count: number; + last_status_at: string; +}; diff --git a/types/entities/field.ts b/types/entities/field.ts new file mode 100644 index 00000000..44664c08 --- /dev/null +++ b/types/entities/field.ts @@ -0,0 +1,5 @@ +export type Field = { + name: string; + value: string; + verified_at: string | null; +}; diff --git a/types/entities/filter.ts b/types/entities/filter.ts new file mode 100644 index 00000000..8e68343c --- /dev/null +++ b/types/entities/filter.ts @@ -0,0 +1,10 @@ +export type Filter = { + id: string; + phrase: string; + context: Array; + expires_at: string | null; + irreversible: boolean; + whole_word: boolean; +}; + +export type FilterContext = string; diff --git a/types/entities/history.ts b/types/entities/history.ts new file mode 100644 index 00000000..442e6dc7 --- /dev/null +++ b/types/entities/history.ts @@ -0,0 +1,5 @@ +export type History = { + day: string; + uses: number; + accounts: number; +}; diff --git a/types/entities/identity_proof.ts b/types/entities/identity_proof.ts new file mode 100644 index 00000000..bdf601af --- /dev/null +++ b/types/entities/identity_proof.ts @@ -0,0 +1,7 @@ +export type IdentityProof = { + provider: string; + provider_username: string; + updated_at: string; + proof_url: string; + profile_url: string; +}; diff --git a/types/entities/instance.ts b/types/entities/instance.ts new file mode 100644 index 00000000..e3e91ef3 --- /dev/null +++ b/types/entities/instance.ts @@ -0,0 +1,47 @@ +import { Account } from "./account"; +import { Stats } from "./stats"; +import { URLs } from "./urls"; + +export type Instance = { + uri: string; + title: string; + description: string; + email: string; + version: string; + thumbnail: string | null; + urls: URLs; + stats: Stats; + languages: Array; + registrations: boolean; + approval_required: boolean; + invites_enabled: boolean; + max_toot_chars?: number; + configuration: { + statuses: { + max_characters: number; + max_media_attachments: number; + characters_reserved_per_url: number; + }; + media_attachments: { + supported_mime_types: Array; + image_size_limit: number; + image_matrix_limit: number; + video_size_limit: number; + video_frame_limit: number; + video_matrix_limit: number; + }; + polls: { + max_options: number; + max_characters_per_option: number; + min_expiration: number; + max_expiration: number; + }; + }; + contact_account: Account; + rules: Array; +}; + +export type InstanceRule = { + id: string; + text: string; +}; diff --git a/types/entities/list.ts b/types/entities/list.ts new file mode 100644 index 00000000..b3119da1 --- /dev/null +++ b/types/entities/list.ts @@ -0,0 +1,7 @@ +export type List = { + id: string; + title: string; + replies_policy: RepliesPolicy; +}; + +export type RepliesPolicy = "followed" | "list" | "none"; diff --git a/types/entities/marker.ts b/types/entities/marker.ts new file mode 100644 index 00000000..01c4118f --- /dev/null +++ b/types/entities/marker.ts @@ -0,0 +1,12 @@ +export type Marker = { + home: { + last_read_id: string; + version: number; + updated_at: string; + }; + notifications: { + last_read_id: string; + version: number; + updated_at: string; + }; +}; diff --git a/types/entities/mention.ts b/types/entities/mention.ts new file mode 100644 index 00000000..496e6d0d --- /dev/null +++ b/types/entities/mention.ts @@ -0,0 +1,6 @@ +export type Mention = { + id: string; + username: string; + url: string; + acct: string; +}; diff --git a/types/entities/notification.ts b/types/entities/notification.ts new file mode 100644 index 00000000..860acd24 --- /dev/null +++ b/types/entities/notification.ts @@ -0,0 +1,14 @@ +import { Account } from "./account" +import { Status } from "./status" + +namespace MastodonEntity { + export type Notification = { + account: Account + created_at: string + id: string + status?: Status + type: NotificationType + } + + export type NotificationType = string +} diff --git a/types/entities/poll.ts b/types/entities/poll.ts new file mode 100644 index 00000000..29e5f6e0 --- /dev/null +++ b/types/entities/poll.ts @@ -0,0 +1,11 @@ +import { PollOption } from "./poll_option"; + +export type Poll = { + id: string; + expires_at: string | null; + expired: boolean; + multiple: boolean; + votes_count: number; + options: Array; + voted: boolean; +}; diff --git a/types/entities/poll_option.ts b/types/entities/poll_option.ts new file mode 100644 index 00000000..36230998 --- /dev/null +++ b/types/entities/poll_option.ts @@ -0,0 +1,4 @@ +export type PollOption = { + title: string; + votes_count: number | null; +}; diff --git a/types/entities/preferences.ts b/types/entities/preferences.ts new file mode 100644 index 00000000..44b1f0a1 --- /dev/null +++ b/types/entities/preferences.ts @@ -0,0 +1,7 @@ +export type Preferences = { + "posting:default:visibility": "public" | "unlisted" | "private" | "direct"; + "posting:default:sensitive": boolean; + "posting:default:language": string | null; + "reading:expand:media": "default" | "show_all" | "hide_all"; + "reading:expand:spoilers": boolean; +}; diff --git a/types/entities/push_subscription.ts b/types/entities/push_subscription.ts new file mode 100644 index 00000000..e5df43c3 --- /dev/null +++ b/types/entities/push_subscription.ts @@ -0,0 +1,14 @@ +export type Alerts = { + follow: boolean; + favourite: boolean; + mention: boolean; + reblog: boolean; + poll: boolean; +}; + +export type PushSubscription = { + id: string; + endpoint: string; + server_key: string; + alerts: Alerts; +}; diff --git a/types/entities/relationship.ts b/types/entities/relationship.ts new file mode 100644 index 00000000..bcc6cf99 --- /dev/null +++ b/types/entities/relationship.ts @@ -0,0 +1,16 @@ +export type Relationship = { + id: string; + following: boolean; + followed_by: boolean; + blocking: boolean; + blocked_by: boolean; + muting: boolean; + muting_notifications: boolean; + requested: boolean; + domain_blocking: boolean; + showing_reblogs: boolean; + endorsed: boolean; + notifying: boolean; + note: string; + languages: Array; +}; diff --git a/types/entities/report.ts b/types/entities/report.ts new file mode 100644 index 00000000..e1ef7641 --- /dev/null +++ b/types/entities/report.ts @@ -0,0 +1,15 @@ +import { Account } from "./account"; + +export type Report = { + id: string; + action_taken: boolean; + action_taken_at: string | null; + category: Category; + comment: string; + forwarded: boolean; + status_ids: Array | null; + rule_ids: Array | null; + target_account: Account; +}; + +export type Category = "spam" | "violation" | "other"; diff --git a/types/entities/results.ts b/types/entities/results.ts new file mode 100644 index 00000000..42cd4c09 --- /dev/null +++ b/types/entities/results.ts @@ -0,0 +1,9 @@ +import { Account } from "./account"; +import { Status } from "./status"; +import { Tag } from "./tag"; + +export type Results = { + accounts: Array; + statuses: Array; + hashtags: Array; +}; diff --git a/types/entities/role.ts b/types/entities/role.ts new file mode 100644 index 00000000..85251115 --- /dev/null +++ b/types/entities/role.ts @@ -0,0 +1,3 @@ +export type Role = { + name: string; +}; diff --git a/types/entities/scheduled_status.ts b/types/entities/scheduled_status.ts new file mode 100644 index 00000000..1e4d9b7b --- /dev/null +++ b/types/entities/scheduled_status.ts @@ -0,0 +1,9 @@ +import { Attachment } from "./attachment"; +import { StatusParams } from "./status_params"; + +export type ScheduledStatus = { + id: string; + scheduled_at: string; + params: StatusParams; + media_attachments: Array; +}; diff --git a/types/entities/source.ts b/types/entities/source.ts new file mode 100644 index 00000000..e8352d65 --- /dev/null +++ b/types/entities/source.ts @@ -0,0 +1,9 @@ +import { Field } from "./field"; + +export type Source = { + privacy: string | null; + sensitive: boolean | null; + language: string | null; + note: string; + fields: Array; +}; diff --git a/types/entities/stats.ts b/types/entities/stats.ts new file mode 100644 index 00000000..3baf0639 --- /dev/null +++ b/types/entities/stats.ts @@ -0,0 +1,5 @@ +export type Stats = { + user_count: number; + status_count: number; + domain_count: number; +}; diff --git a/types/entities/status.ts b/types/entities/status.ts new file mode 100644 index 00000000..6c1e60d8 --- /dev/null +++ b/types/entities/status.ts @@ -0,0 +1,46 @@ +import { Account } from "./account"; +import { Application } from "./application"; +import { Attachment } from "./attachment"; +import { Card } from "./card"; +import { Emoji } from "./emoji"; +import { Mention } from "./mention"; +import { Poll } from "./poll"; + +export type Status = { + id: string; + uri: string; + url: string; + account: Account; + in_reply_to_id: string | null; + in_reply_to_account_id: string | null; + reblog: Status | null; + content: string; + created_at: string; + emojis: Emoji[]; + replies_count: number; + reblogs_count: number; + favourites_count: number; + reblogged: boolean | null; + favourited: boolean | null; + muted: boolean | null; + sensitive: boolean; + spoiler_text: string; + visibility: "public" | "unlisted" | "private" | "direct"; + media_attachments: Array; + mentions: Array; + tags: Array; + card: Card | null; + poll: Poll | null; + application: Application | null; + language: string | null; + pinned: boolean | null; + bookmarked?: boolean; + // These parameters are unique parameters in fedibird.com for quote. + quote_id?: string; + quote?: Status | null; +}; + +export type StatusTag = { + name: string; + url: string; +}; diff --git a/types/entities/status_params.ts b/types/entities/status_params.ts new file mode 100644 index 00000000..5b638efe --- /dev/null +++ b/types/entities/status_params.ts @@ -0,0 +1,10 @@ +export type StatusParams = { + text: string; + in_reply_to_id: string | null; + media_ids: Array | null; + sensitive: boolean | null; + spoiler_text: string | null; + visibility: "public" | "unlisted" | "private" | "direct" | null; + scheduled_at: string | null; + application_id: number; +}; diff --git a/types/entities/status_source.ts b/types/entities/status_source.ts new file mode 100644 index 00000000..82fea66d --- /dev/null +++ b/types/entities/status_source.ts @@ -0,0 +1,5 @@ +export type StatusSource = { + id: string; + text: string; + spoiler_text: string; +}; diff --git a/types/entities/tag.ts b/types/entities/tag.ts new file mode 100644 index 00000000..59db622f --- /dev/null +++ b/types/entities/tag.ts @@ -0,0 +1,8 @@ +import { History } from "./history"; + +export type Tag = { + name: string; + url: string; + history: Array; + following?: boolean; +}; diff --git a/types/entities/token.ts b/types/entities/token.ts new file mode 100644 index 00000000..cbe9e0a0 --- /dev/null +++ b/types/entities/token.ts @@ -0,0 +1,6 @@ +export type Token = { + access_token: string; + token_type: string; + scope: string; + created_at: number; +}; diff --git a/types/entities/urls.ts b/types/entities/urls.ts new file mode 100644 index 00000000..3c28faea --- /dev/null +++ b/types/entities/urls.ts @@ -0,0 +1,3 @@ +export type URLs = { + streaming_api: string; +}; diff --git a/types/entity.ts b/types/entity.ts new file mode 100644 index 00000000..dcafdfe7 --- /dev/null +++ b/types/entity.ts @@ -0,0 +1,39 @@ +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// + +export default MastodonEntity diff --git a/utils/config.ts b/utils/config.ts new file mode 100644 index 00000000..f8f13eac --- /dev/null +++ b/utils/config.ts @@ -0,0 +1,16 @@ +import data from "../config/config.toml"; + +export type ConfigType = { + database: { + host: string; + port: number; + username: string; + password: string; + database: string; + } + [ key: string ]: any; +} + +export const getConfig = () => { + return data as ConfigType; +} \ No newline at end of file diff --git a/utils/response.ts b/utils/response.ts new file mode 100644 index 00000000..1a961acf --- /dev/null +++ b/utils/response.ts @@ -0,0 +1,8 @@ +export const jsonResponse = (data: object, status: number = 200) => { + return new Response(JSON.stringify(data), { + headers: { + "Content-Type": "application/json" + }, + status, + }); +} \ No newline at end of file