Compare commits
99 Commits
89184fd4b3
...
dev
Author | SHA1 | Date | |
---|---|---|---|
897d445cdc
|
|||
ee4b8a1d50
|
|||
53a0fc3927
|
|||
84763e7ef9
|
|||
8b0cf20bf2
|
|||
e3692f90b1
|
|||
bf95c575eb | |||
60087fc306 | |||
f20883cb26 | |||
924461b9a2 | |||
0b065172f5 | |||
c2c9893ab3 | |||
704430b91a | |||
9f443c66b2 | |||
065df723a9 | |||
557cea36d8 | |||
c287ffa086
|
|||
26d656896e | |||
734bbdb998 | |||
7e8a927bb3 | |||
f08b04e710 | |||
fa6c1d8b2c | |||
0c1e07b779 | |||
c615409a42 | |||
da50365380 | |||
68f5480ff1 | |||
12216ca0f7 | |||
7e407b181d | |||
4f0e911407 | |||
b447c8cf13 | |||
e212d43bf2 | |||
2bf94c0f3c | |||
3f49d8294a | |||
323b76fe98 | |||
f714bc6eaa | |||
8ad2778dd0 | |||
0d99a7da69 | |||
c049f6c44a | |||
9acbe212ad | |||
aa29cca4f4 | |||
afc0a30660 | |||
647634addc | |||
dba65911a6 | |||
1067d0a3fd | |||
1ffd51b641 | |||
cd97df5f21 | |||
12dedf3700 | |||
ade745cdc5 | |||
ab5977eaae | |||
39813d246f | |||
975626fc5c | |||
1f47d59760 | |||
38abe411a8 | |||
e7216d51e3 | |||
2b244645c6 | |||
43589f7ddc | |||
b43a219fb3 | |||
7bf92f9049 | |||
577195cb7f | |||
fc64b742bb | |||
922eaeb124 | |||
65ec5a51aa | |||
8036b0c1e1 | |||
c505698b0b
|
|||
4e08375748
|
|||
912bf616b6
|
|||
d1ddbf2605 | |||
66b01bd58d | |||
01468670e3 | |||
1f09aae11e | |||
ce1ac7b09e | |||
f9faddf660 | |||
945f1b84f2 | |||
a9d2633107
|
|||
506d16e0c9
|
|||
30c3b0c37b | |||
2da4f81a6b | |||
cc482fc0ad | |||
51ea22fbc5 | |||
58595d5eb3 | |||
671d44017f | |||
95d24b734b | |||
c2e31fb440 | |||
2d3dab5646 | |||
4b2e12b374 | |||
c6323cae38 | |||
e05d42a956 | |||
426c474016 | |||
91ca908980 | |||
5a61508359 | |||
86c0e3cc97 | |||
1afa33f28b | |||
a22b1e67c8 | |||
f477b4525b | |||
462d35ea0d | |||
693c94274a | |||
af2e5b49ae | |||
33a31dac32 | |||
00b7227d4d |
141
README.md
@@ -4,85 +4,112 @@
|
|||||||

|

|
||||||

|

|
||||||
|
|
||||||
This repo contains all the source code for my personal website, [ngn.tf](https://ngn.tf)
|
This repo contains all the source code for my personal website,
|
||||||
All code is licensed under AGPL version 3 (see [LICENSE.txt](LICENSE.txt))
|
[ngn.tf](https://ngn.tf) All code is licensed under AGPL version 3 (see
|
||||||
|
[LICENSE.txt](LICENSE.txt))
|
||||||
|
|
||||||
## Directory structure
|
## Directory structure
|
||||||
|
|
||||||
### `app`
|
### `app`
|
||||||
|
|
||||||
Contains frontend application, written with SvelteKit. It supports full SSR.
|
Contains frontend application, written with SvelteKit. It supports full SSR.
|
||||||
Contains modified CSS from [github-markdown-css](https://github.com/sindresorhus/github-markdown-css)
|
Contains modified CSS from
|
||||||
and fonts from [NerdFonts](https://www.nerdfonts.com/)
|
[github-markdown-css](https://github.com/sindresorhus/github-markdown-css) and
|
||||||
|
fonts from [NerdFonts](https://www.nerdfonts.com/)
|
||||||
|
|
||||||
### `api`
|
### `api`
|
||||||
Contains the API server, written in Go. It uses the [Fiber](https://github.com/gofiber/fiber) web
|
|
||||||
framework which offers an [Express](https://expressjs.com/) like experience. I choose Fiber since I've used
|
|
||||||
worked with express a lot in the past. However previously the I was using [Gin](https://github.com/gin-gonic/gin)
|
|
||||||
(see history section).
|
|
||||||
|
|
||||||
API stores all the data in a local SQLite(3) database. Go doesn't support SQLite3 out of the box so
|
Contains the API server, written in Go. It uses the
|
||||||
I'm using [mattn's sqlite3 driver](https://github.com/mattn/go-sqlite3).
|
[Fiber](https://github.com/gofiber/fiber) web framework which offers an
|
||||||
|
[Express](https://expressjs.com/) like experience. I choose Fiber since I've
|
||||||
|
used worked with express a lot in the past. However previously the I was using
|
||||||
|
[Gin](https://github.com/gin-gonic/gin) (see history section).
|
||||||
|
|
||||||
|
API stores all the data in a local SQLite(3) database. Go doesn't support
|
||||||
|
SQLite3 out of the box so I'm using
|
||||||
|
[mattn's sqlite3 driver](https://github.com/mattn/go-sqlite3).
|
||||||
|
|
||||||
### `doc`
|
### `doc`
|
||||||
Contains the documentation server, written in C. It uses the [ctorm](https://github.com/ngn13/ctorm) web
|
|
||||||
framework, which is a framework that I myself wrote. Unlike the frontend application or the API server, it's not
|
Contains the documentation server, written in C. It uses the
|
||||||
accessable by public, the frontend application gets the documentation content from this server and renders it using
|
[ctorm](https://github.com/ngn13/ctorm) web framework, which is a framework that
|
||||||
SSR. The reason I don't use the API for hosting the documentation content is that I want a separate server for hosting
|
I myself wrote. Unlike the frontend application or the API server, it's not
|
||||||
|
accessable by public, the frontend application gets the documentation content
|
||||||
|
from this server and renders it using SSR. The reason I don't use the API for
|
||||||
|
hosting the documentation content is that I want a separate server for hosting
|
||||||
static content, API is only for hosting dynamic stuff.
|
static content, API is only for hosting dynamic stuff.
|
||||||
|
|
||||||
### `admin`
|
### `admin`
|
||||||
The frontend application does not contain an admin interface, I do the administration stuff (such as adding news posts,
|
|
||||||
adding services etc.) using the python script in this directory. This script can be installed on to the PATH by running
|
The frontend application does not contain an admin interface, I do the
|
||||||
the Makefile install script. After installation it can be used by running `admin_script`.
|
administration stuff (such as adding news posts, adding services etc.) using the
|
||||||
|
python script in this directory. This script can be installed on to the PATH by
|
||||||
|
running the Makefile install script. After installation it can be used by
|
||||||
|
running `admin_script`.
|
||||||
|
|
||||||
## Deployment
|
## Deployment
|
||||||
Easiest way to deploy is to use docker. There is `compose.yml` and a `run.sh` script in the [deploy](deploy/) directory
|
|
||||||
that can be used to startup all the docker containers. Configuration options are passed during build time for the frontend
|
Easiest way to deploy is to use docker. There is `compose.yml` and a `run.sh`
|
||||||
application, and for others it's passed with environment variables.
|
script in the [deploy](deploy/) directory that can be used to startup all the
|
||||||
|
docker containers. Configuration options are passed during build time for the
|
||||||
|
frontend application, and for others it's passed with environment variables.
|
||||||
|
|
||||||
## History
|
## History
|
||||||
|
|
||||||
Some nostalgic history/changelog stuff (just for the major version numbers):
|
Some nostalgic history/changelog stuff (just for the major version numbers):
|
||||||
|
|
||||||
- **v0.1 (late 2020 - early 2021)**: First ever version of my website, it was just a simple HTML/CSS page,
|
- **v0.1 (late 2020 - early 2021)**: First ever version of my website, it was
|
||||||
I never published any of the source code and I wiped the local copy on my USB drive in early 2022, I still
|
just a simple HTML/CSS page, I never published any of the source code and I
|
||||||
remember what it looked like though, it looked like I made entire website in microsoft paint... while blindfoled,
|
wiped the local copy on my USB drive in early 2022, I still remember what it
|
||||||
so yeah it was shit.
|
looked like though, it looked like I made entire website in microsoft paint...
|
||||||
|
while blindfoled, so yeah it was shit.
|
||||||
|
|
||||||
- **v1.0 (early 2021 - late 2022)**: This version was actualy hosted on my github.io page, and all the source code
|
- **v1.0 (early 2021 - late 2022)**: This version was actualy hosted on my
|
||||||
was (and still is) avaliable, it was just a simple static site, [here is a screenshot](assets/githubio.png).
|
github.io page, and all the source code was (and still is) avaliable, it was
|
||||||
|
just a simple static site, [here is a screenshot](assets/githubio.png).
|
||||||
|
|
||||||
- **vLOST (late 2022 - early 2023)**: As I learned more JS, I decided to rewrite (and rework) my website with one
|
- **vLOST (late 2022 - early 2023)**: As I learned more JS, I decided to rewrite
|
||||||
of the fancy JS frameworks. I decided to go with Svelte. Not the kit version, at the time svelte did not support SSR.
|
(and rework) my website with one of the fancy JS frameworks. I decided to go
|
||||||
I do not remember writting an API for it so I guess I just updated it everytime I wanted to add content? It was pretty
|
with Svelte. Not the kit version, at the time svelte did not support SSR. I do
|
||||||
much like a static website and was hosted on `ngn13.fun` as at this point I had my own hosting. The source code for
|
not remember writting an API for it so I guess I just updated it everytime I
|
||||||
this website was in a deleted github repository of mine, I looked for a local copy on my old hard drive but I wasn't able
|
wanted to add content? It was pretty much like a static website and was hosted
|
||||||
to find it. I also do not remember how it looked like, sooo this version is pretty much lost :(
|
on `ngn13.fun` as at this point I had my own hosting. The source code for this
|
||||||
|
website was in a deleted github repository of mine, I looked for a local copy
|
||||||
|
on my old hard drive but I wasn't able to find it. I also do not remember how
|
||||||
|
it looked like, sooo this version is pretty much lost :(
|
||||||
|
|
||||||
- **v2.0 (early 2023 - late 2023)**: After I discovered what SSR is, I decided to rewrite and rework my website one more
|
- **v2.0 (early 2023 - late 2023)**: After I discovered what SSR is, I decided
|
||||||
time in NuxtJS. I had really "fun" time using vue stuff. As NuxtJS supported server-side code, this website had its own
|
to rewrite and rework my website one more time in NuxtJS. I had really "fun"
|
||||||
built in API. This website was also hosted on `ngn13.fun`. This also the first version that lives on this git repository.
|
time using vue stuff. As NuxtJS supported server-side code, this website had
|
||||||
|
its own built in API. This website was also hosted on `ngn13.fun`. This also
|
||||||
|
the first version that lives on this git repository.
|
||||||
|
|
||||||
- **v3.0 (2023 august - 2023 november)**: In agust of 2023, I decided to rewrite and rework my website again, this time
|
- **v3.0 (2023 august - 2023 november)**: In agust of 2023, I decided to rewrite
|
||||||
I was going with SvelteKit as I haven't had the greatest experience with NuxtJS. SvelteKit was really fun to work with
|
and rework my website again, this time I was going with SvelteKit as I haven't
|
||||||
and I got my new website done pretty quickly. (I don't wanna brag or something but I really imporeved the CSS/styling
|
had the greatest experience with NuxtJS. SvelteKit was really fun to work with
|
||||||
stuff ya know). I also wrote a new API with Go and Gin. I did not publish the source code for the API, the code lived
|
and I got my new website done pretty quickly. (I don't wanna brag or something
|
||||||
on my local git server until I deleted it when I was done with 6.0. This website was hosted on `ngn13.fun` as well.
|
but I really imporeved the CSS/styling stuff ya know). I also wrote a new API
|
||||||
|
with Go and Gin. I did not publish the source code for the API, the code lived
|
||||||
|
on my local git server until I deleted it when I was done with 6.0. This
|
||||||
|
website was hosted on `ngn13.fun` as well.
|
||||||
|
|
||||||
- **v4.0 (2023 november - 2024 october)**: In this version the frontend was still similar to 3.0, the big changes are in
|
- **v4.0 (2023 november - 2024 october)**: In this version the frontend was
|
||||||
the API. I rewrote the API with Fiber. This version was the first version hosted on `ngn.tf` which is my new domain name.
|
still similar to 3.0, the big changes are in the API. I rewrote the API with
|
||||||
Here is a [picture of the index](assets/4.0_index.png) and the [blog page](assets/4.0_blog.png).
|
Fiber. This version was the first version hosted on `ngn.tf` which is my new
|
||||||
|
domain name. Here is a [picture of the index](assets/4.0_index.png) and the
|
||||||
|
[blog page](assets/4.0_blog.png).
|
||||||
|
|
||||||
- **v5.0 (2024 october - 2025 january)**: This version just had simple frontend UI changes compared to 4.0, at this
|
- **v5.0 (2024 october - 2025 january)**: This version just had simple frontend
|
||||||
point I was thinking about doing a massive rework (which I did with 6.0), however I was working on some other shit at
|
UI changes compared to 4.0, at this point I was thinking about doing a massive
|
||||||
the time, so I just did some small changes with the limited time I had for this project.
|
rework (which I did with 6.0), however I was working on some other shit at the
|
||||||
|
time, so I just did some small changes with the limited time I had for this
|
||||||
|
project.
|
||||||
|
|
||||||
- **v6.0 (2025 january - ...)**: The current major version of my website, frontend had a massive rework, API has been
|
- **v6.0 (2025 january - ...)**: The current major version of my website,
|
||||||
cleaned up and extended to do status checking for the services I host. The `doc` server has been added to the mix
|
frontend had a massive rework, API has been cleaned up and extended to do
|
||||||
so I can host static documentation. The most important thing about this version is that it adds multi-language support,
|
status checking for the services I host. The `doc` server has been added to
|
||||||
so literally everything on the website (including the API and documentation content) is localized for both English
|
the mix so I can host static documentation. The most important thing about
|
||||||
and Turkish, which was something I wanted to do for the longest time ever.
|
this version is that it adds multi-language support, so literally everything
|
||||||
|
on the website (including the API and documentation content) is localized for
|
||||||
Damn it has been 4 years since I wrote that shit HTML page huh? Time flies...
|
both English and Turkish, which was something I wanted to do for the longest
|
||||||
|
time ever.
|
||||||
## Screenshots (from v6.0)
|
|
||||||

|
|
||||||

|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
FROM golang:1.24.2
|
FROM golang:1.24.5
|
||||||
|
|
||||||
WORKDIR /api
|
WORKDIR /api
|
||||||
|
|
||||||
|
@@ -11,4 +11,7 @@ run:
|
|||||||
format:
|
format:
|
||||||
gofmt -s -w .
|
gofmt -s -w .
|
||||||
|
|
||||||
.PHONY: test format
|
clean:
|
||||||
|
rm -f *.elf
|
||||||
|
|
||||||
|
.PHONY: test format clean
|
||||||
|
@@ -1,10 +1,11 @@
|
|||||||
module github.com/ngn13/website/api
|
module github.com/ngn13/website/api
|
||||||
|
|
||||||
go 1.24.0
|
go 1.24.5
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/gofiber/fiber/v2 v2.52.6
|
github.com/gofiber/fiber/v2 v2.52.8
|
||||||
github.com/mattn/go-sqlite3 v1.14.27
|
github.com/mattn/go-sqlite3 v1.14.28
|
||||||
|
github.com/ngn13/ortam v0.0.0-20250421004351-8dea81680817
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
@@ -14,7 +15,6 @@ require (
|
|||||||
github.com/mattn/go-colorable v0.1.13 // indirect
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
||||||
github.com/mattn/go-isatty v0.0.20 // indirect
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
||||||
github.com/mattn/go-runewidth v0.0.16 // indirect
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
||||||
github.com/ngn13/ortam v0.0.0-20250412195317-e76e62a7a305 // indirect
|
|
||||||
github.com/rivo/uniseg v0.2.0 // indirect
|
github.com/rivo/uniseg v0.2.0 // indirect
|
||||||
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
||||||
github.com/valyala/fasthttp v1.51.0 // indirect
|
github.com/valyala/fasthttp v1.51.0 // indirect
|
||||||
|
12
api/go.sum
@@ -1,7 +1,7 @@
|
|||||||
github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M=
|
github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M=
|
||||||
github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY=
|
github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY=
|
||||||
github.com/gofiber/fiber/v2 v2.52.6 h1:Rfp+ILPiYSvvVuIPvxrBns+HJp8qGLDnLJawAu27XVI=
|
github.com/gofiber/fiber/v2 v2.52.8 h1:xl4jJQ0BV5EJTA2aWiKw/VddRpHrKeZLF0QPUxqn0x4=
|
||||||
github.com/gofiber/fiber/v2 v2.52.6/go.mod h1:YEcBbO/FB+5M1IZNBP9FO3J9281zgPAreiI1oqg8nDw=
|
github.com/gofiber/fiber/v2 v2.52.8/go.mod h1:YEcBbO/FB+5M1IZNBP9FO3J9281zgPAreiI1oqg8nDw=
|
||||||
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
||||||
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA=
|
github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA=
|
||||||
@@ -13,10 +13,10 @@ github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWE
|
|||||||
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
||||||
github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc=
|
github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc=
|
||||||
github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
|
github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
|
||||||
github.com/mattn/go-sqlite3 v1.14.27 h1:drZCnuvf37yPfs95E5jd9s3XhdVWLal+6BOK6qrv6IU=
|
github.com/mattn/go-sqlite3 v1.14.28 h1:ThEiQrnbtumT+QMknw63Befp/ce/nUPgBPMlRFEum7A=
|
||||||
github.com/mattn/go-sqlite3 v1.14.27/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
|
github.com/mattn/go-sqlite3 v1.14.28/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y=
|
||||||
github.com/ngn13/ortam v0.0.0-20250412195317-e76e62a7a305 h1:1YxtSMwR14PklXNlZxIqcmfpiq2+G98YNmhSuz7GKCQ=
|
github.com/ngn13/ortam v0.0.0-20250421004351-8dea81680817 h1:WkHM4w51N5jCsWcDVcPsXz3zhi/kCfNp/VGh2uPjwsk=
|
||||||
github.com/ngn13/ortam v0.0.0-20250412195317-e76e62a7a305/go.mod h1:MSJZ4ZstrLvVEvivbp9hhup+iL8rvtpgKcYaF3DSOKk=
|
github.com/ngn13/ortam v0.0.0-20250421004351-8dea81680817/go.mod h1:MSJZ4ZstrLvVEvivbp9hhup+iL8rvtpgKcYaF3DSOKk=
|
||||||
github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
|
github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
|
||||||
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
||||||
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
|
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
|
||||||
|
12
app/.gitignore
vendored
@@ -1,11 +1,9 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
|
.svelte-kit
|
||||||
|
|
||||||
node_modules
|
node_modules
|
||||||
/build
|
package
|
||||||
/.svelte-kit
|
build
|
||||||
/package
|
|
||||||
.env
|
|
||||||
.env.*
|
|
||||||
!.env.example
|
|
||||||
vite.config.js.timestamp-*
|
vite.config.js.timestamp-*
|
||||||
vite.config.ts.timestamp-*
|
vite.config.ts.timestamp-*
|
||||||
nerdfonts.*
|
|
||||||
|
@@ -1,2 +0,0 @@
|
|||||||
engine-strict=true
|
|
||||||
resolution-mode=highest
|
|
@@ -3,7 +3,8 @@
|
|||||||
"tabWidth": 2,
|
"tabWidth": 2,
|
||||||
"singleQuote": false,
|
"singleQuote": false,
|
||||||
"trailingComma": "es5",
|
"trailingComma": "es5",
|
||||||
"printWidth": 100,
|
"printWidth": 80,
|
||||||
|
"arrowParens": "avoid",
|
||||||
"plugins": ["prettier-plugin-svelte"],
|
"plugins": ["prettier-plugin-svelte"],
|
||||||
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
|
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
# build the application with node
|
# build the application with node
|
||||||
FROM node:23.11.0 AS build
|
FROM node:23.11.1 AS build
|
||||||
|
|
||||||
ARG WEBSITE_REPORT_URL
|
ARG WEBSITE_REPORT_URL
|
||||||
ARG WEBSITE_SOURCE_URL
|
ARG WEBSITE_SOURCE_URL
|
||||||
|
16
app/Makefile
@@ -1,17 +1,7 @@
|
|||||||
NF_CSS = static/css/nerdfonts.css
|
all:
|
||||||
NF_WOFF = static/assets/nerdfonts.woff2
|
|
||||||
|
|
||||||
all: $(NF_CSS)
|
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
$(NF_CSS): $(NF_WOFF)
|
run:
|
||||||
wget "https://www.nerdfonts.com/assets/css/webfont.css" -O $@
|
|
||||||
sed 's/\.\.\/fonts\/Symbols-2048-em Nerd Font Complete\.woff2/\/assets\/nerdfonts\.woff2/g' -i $@
|
|
||||||
|
|
||||||
$(NF_WOFF):
|
|
||||||
wget "https://www.nerdfonts.com/assets/fonts/Symbols-2048-em%20Nerd%20Font%20Complete.woff2" -O $@
|
|
||||||
|
|
||||||
run: $(NF_CSS)
|
|
||||||
npm run dev
|
npm run dev
|
||||||
|
|
||||||
format:
|
format:
|
||||||
@@ -19,7 +9,5 @@ format:
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf build
|
rm -rf build
|
||||||
rm $(NF_CSS)
|
|
||||||
rm $(NF_WOFF)
|
|
||||||
|
|
||||||
.PHONY: format run clean
|
.PHONY: format run clean
|
||||||
|
2230
app/package-lock.json
generated
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "website",
|
"name": "website",
|
||||||
"version": "6.3",
|
"version": "6.5",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite dev",
|
"dev": "vite dev",
|
||||||
@@ -10,19 +10,18 @@
|
|||||||
"format": "prettier --write ."
|
"format": "prettier --write ."
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@sveltejs/adapter-auto": "^6.0.0",
|
"@sveltejs/adapter-node": "^5.2.13",
|
||||||
"@sveltejs/adapter-node": "^5.2.11",
|
"@sveltejs/kit": "^2.25.1",
|
||||||
"@sveltejs/kit": "^2.15.1",
|
"@sveltejs/vite-plugin-svelte": "^6.1.0",
|
||||||
"@sveltejs/vite-plugin-svelte": "^4.0.3",
|
|
||||||
"prettier": "^3.4.2",
|
"prettier": "^3.4.2",
|
||||||
"prettier-plugin-svelte": "^3.3.2",
|
"prettier-plugin-svelte": "^3.4.0",
|
||||||
"svelte": "^5.16.0",
|
"svelte": "^5.36.10",
|
||||||
"vite": "^5.4.11"
|
"vite": "^7.0.0"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dompurify": "^3.2.3",
|
"dompurify": "^3.2.3",
|
||||||
"marked": "^15.0.6",
|
"js-yaml": "^4.1.0",
|
||||||
"svelte-i18n": "^4.0.1"
|
"marked": "^16.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
57
app/src/components/card.svelte
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
<script>
|
||||||
|
let { title = "", id = "", children } = $props();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<main {id}>
|
||||||
|
{#if title === ""}
|
||||||
|
<div>{@render children()}</div>
|
||||||
|
{:else}
|
||||||
|
<h1>{title}</h1>
|
||||||
|
<div class="padded">{@render children()}</div>
|
||||||
|
{/if}
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
main {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: min-content;
|
||||||
|
}
|
||||||
|
|
||||||
|
main h1 {
|
||||||
|
font-family: var(--monospace);
|
||||||
|
font-size: var(--size-6);
|
||||||
|
|
||||||
|
color: var(--white-1);
|
||||||
|
background: var(--black-1);
|
||||||
|
|
||||||
|
position: relative;
|
||||||
|
top: 20px;
|
||||||
|
right: 7px;
|
||||||
|
|
||||||
|
width: min-content;
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
main h1::before {
|
||||||
|
color: var(--white-3);
|
||||||
|
content: "#";
|
||||||
|
margin: 0 10px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
main div {
|
||||||
|
color: var(--white-2);
|
||||||
|
|
||||||
|
font-size: var(--size-3);
|
||||||
|
line-height: 1.5em;
|
||||||
|
word-wrap: break-word;
|
||||||
|
|
||||||
|
flex: 1;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .padded {
|
||||||
|
padding: 25px 20px 18px 20px;
|
||||||
|
border: solid 1px var(--black-3);
|
||||||
|
}
|
||||||
|
</style>
|
94
app/src/components/footer.svelte
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
<script>
|
||||||
|
import { _ } from "$lib/locale.js";
|
||||||
|
import { date, date_from_ts } from "$lib/util.js";
|
||||||
|
import api from "$lib/api.js";
|
||||||
|
|
||||||
|
import { onMount } from "svelte";
|
||||||
|
|
||||||
|
let data = $state(null);
|
||||||
|
|
||||||
|
onMount(async () => {
|
||||||
|
data = await api.metrics(fetch);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href={import.meta.env.WEBSITE_SOURCE_URL}>{$_("footer.source")}</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="/doc/license">{$_("footer.license")}</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="/doc/privacy">{$_("footer.privacy")}</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
{#if data === null}
|
||||||
|
<span>
|
||||||
|
{$_("footer.render", {
|
||||||
|
time: date(new Date()),
|
||||||
|
})}
|
||||||
|
</span>
|
||||||
|
{:else}
|
||||||
|
<span>
|
||||||
|
{$_("footer.number", {
|
||||||
|
total: data.total,
|
||||||
|
since: date_from_ts(data.since),
|
||||||
|
})}
|
||||||
|
{#if data.total % 1000 === 0}
|
||||||
|
<span class="wow">({$_("footer.wow")})</span>
|
||||||
|
{/if}
|
||||||
|
</span>
|
||||||
|
{/if}
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
footer {
|
||||||
|
background: var(--glass);
|
||||||
|
border-top: solid 2px var(--color);
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 15px 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer ul {
|
||||||
|
list-style: none;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
gap: 5px;
|
||||||
|
|
||||||
|
font-size: var(--size-2);
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer ul li a {
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: 200;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer ul li a:hover {
|
||||||
|
color: var(--color);
|
||||||
|
}
|
||||||
|
|
||||||
|
footer ul li:not(:last-of-type)::after {
|
||||||
|
content: " / ";
|
||||||
|
color: var(--white-3);
|
||||||
|
font-weight: 900;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer span {
|
||||||
|
color: var(--white-2);
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer .wow {
|
||||||
|
color: var(--color);
|
||||||
|
}
|
||||||
|
</style>
|
32
app/src/components/head.svelte
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
<script>
|
||||||
|
import { locale } from "$lib/locale.js";
|
||||||
|
import api from "$lib/api.js";
|
||||||
|
|
||||||
|
let { desc, title } = $props();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<svelte:head>
|
||||||
|
<title>ngn.tf | {title}</title>
|
||||||
|
|
||||||
|
<!-- standart metadata tags -->
|
||||||
|
|
||||||
|
<meta name="description" content={desc} />
|
||||||
|
<meta name="author" content="ngn" />
|
||||||
|
<meta name="keywords" content="ngn,ngn13,ngn.tf" />
|
||||||
|
<meta name="color-scheme" content="only dark" />
|
||||||
|
<meta name="theme-color" content="#000000" />
|
||||||
|
|
||||||
|
<!-- open graph meta tags -->
|
||||||
|
|
||||||
|
<meta property="og:title" content="ngn.tf | {title}" />
|
||||||
|
<meta property="og:description" content={desc} />
|
||||||
|
|
||||||
|
<!-- atom feed for the service updates -->
|
||||||
|
|
||||||
|
<link
|
||||||
|
rel="alternate"
|
||||||
|
type="application/atom+xml"
|
||||||
|
href={api.join("/news/" + $locale.code)}
|
||||||
|
title="Service news and updates"
|
||||||
|
/>
|
||||||
|
</svelte:head>
|
61
app/src/components/header.svelte
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
<script>
|
||||||
|
import { _ } from "$lib/locale.js";
|
||||||
|
let { picture, title } = $props();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<div style="--length: {title.length + 1}">
|
||||||
|
<h1>{title}<span>_</span></h1>
|
||||||
|
</div>
|
||||||
|
<img src="/assets/{picture}.png" alt="" />
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
header {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: end;
|
||||||
|
background: var(--transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
header div {
|
||||||
|
padding: 100px 40px 10px 40px;
|
||||||
|
color: var(--color);
|
||||||
|
font-size: var(--size-6);
|
||||||
|
font-family:
|
||||||
|
Consolas,
|
||||||
|
Monaco,
|
||||||
|
Lucida Console,
|
||||||
|
Liberation Mono,
|
||||||
|
DejaVu Sans Mono,
|
||||||
|
Bitstream Vera Sans Mono,
|
||||||
|
Courier New,
|
||||||
|
monospace;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
header div h1 {
|
||||||
|
text-shadow: var(--text-shadow);
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
animation: typing 0.8s steps(var(--length), end);
|
||||||
|
}
|
||||||
|
|
||||||
|
header div span {
|
||||||
|
content: "_";
|
||||||
|
display: inline-block;
|
||||||
|
animation: blink 1.5s steps(2) infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
header img {
|
||||||
|
width: 220px;
|
||||||
|
padding: 50px 50px 0 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 900px) {
|
||||||
|
header img {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
31
app/src/components/language.svelte
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<script>
|
||||||
|
import { localizer, next } from "$lib/locale.js";
|
||||||
|
|
||||||
|
/* if we have javascript, no need to send the GET request to the server to
|
||||||
|
* change the language, we can just switch it on the browser */
|
||||||
|
function onsubmit(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
localizer.switch();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<form action="/" method="get" {onsubmit}>
|
||||||
|
<input type="hidden" name="l" value={$next.code} />
|
||||||
|
<button type="submit">{$next.icon}</button>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
button {
|
||||||
|
cursor: pointer;
|
||||||
|
background: none;
|
||||||
|
color: var(--white-1);
|
||||||
|
font-size: var(--size-4);
|
||||||
|
outline: none;
|
||||||
|
border: none;
|
||||||
|
transition: 0.4s;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hover {
|
||||||
|
background: var(--black-1);
|
||||||
|
}
|
||||||
|
</style>
|
46
app/src/components/navbar.svelte
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<script>
|
||||||
|
import Page from "$components/page.svelte";
|
||||||
|
import Language from "$components/language.svelte";
|
||||||
|
|
||||||
|
import { _ } from "$lib/locale.js";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<nav>
|
||||||
|
<h3>ngn.tf</h3>
|
||||||
|
<div>
|
||||||
|
<Page link="/">{$_("navbar.home")}</Page>
|
||||||
|
<Page link="/services">{$_("navbar.services")}</Page>
|
||||||
|
<Page link="/donate">{$_("navbar.donate")}</Page>
|
||||||
|
<Language />
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
nav {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
background: var(--glass);
|
||||||
|
box-shadow: var(--box-shadow);
|
||||||
|
border-bottom: solid 2px var(--color);
|
||||||
|
|
||||||
|
padding: 15px 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav div {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: right;
|
||||||
|
gap: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav h3 {
|
||||||
|
color: var(--color);
|
||||||
|
font-family: var(--monospace);
|
||||||
|
font-size: var(--size-4);
|
||||||
|
font-weight: 900;
|
||||||
|
}
|
||||||
|
</style>
|
35
app/src/components/page.svelte
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<script>
|
||||||
|
import { click } from "$lib/util.js";
|
||||||
|
import { page } from "$app/stores";
|
||||||
|
|
||||||
|
let { link, children } = $props();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<a
|
||||||
|
class={$page.url.pathname === link ? "active" : "inactive"}
|
||||||
|
data-sveltekit-preload-data
|
||||||
|
onclick={click}
|
||||||
|
href={link}
|
||||||
|
>
|
||||||
|
{@render children()}
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
a {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: var(--size-3);
|
||||||
|
|
||||||
|
color: var(--white-1);
|
||||||
|
text-decoration: none;
|
||||||
|
text-decoration-color: var(--color);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: var(--color);
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.active {
|
||||||
|
color: var(--color);
|
||||||
|
}
|
||||||
|
</style>
|
138
app/src/components/service.svelte
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
<script>
|
||||||
|
import { time_from_ts } from "$lib/util.js";
|
||||||
|
import { _, locale } from "$lib/locale.js";
|
||||||
|
|
||||||
|
let { service } = $props();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<div class="info">
|
||||||
|
<div>
|
||||||
|
<h1>{service.name}</h1>
|
||||||
|
<p>{service.desc[$locale.code]}</p>
|
||||||
|
</div>
|
||||||
|
<ul>
|
||||||
|
<li><a href={service.clear}> Clear</a></li>
|
||||||
|
<li><a href={service.onion}>TOR</a></li>
|
||||||
|
<li><a href={service.i2p}> I2P</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="check">
|
||||||
|
<h1>
|
||||||
|
{$_("services.last", {
|
||||||
|
time: time_from_ts(service.check_time),
|
||||||
|
})}
|
||||||
|
</h1>
|
||||||
|
{#if service.check_res == 0}
|
||||||
|
<span style="background: var(--white-2)">
|
||||||
|
{$_("services.status.down")}
|
||||||
|
</span>
|
||||||
|
{:else if service.check_res == 1}
|
||||||
|
<span style="background: var(--color)">
|
||||||
|
{$_("services.status.up")}
|
||||||
|
</span>
|
||||||
|
{:else if service.check_res == 2}
|
||||||
|
<span style="background: var(--color); filter: brightness(50%);">
|
||||||
|
{$_("services.status.slow")}
|
||||||
|
</span>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
main {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
background: var(--black-2);
|
||||||
|
border: solid 1px var(--black-3);
|
||||||
|
text-align: left;
|
||||||
|
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .info {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: start;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
|
color: var(--white-1);
|
||||||
|
padding: 15px 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .info div h1 {
|
||||||
|
font-size: var(--size-4);
|
||||||
|
font-weight: 900;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .info div p {
|
||||||
|
font-size: var(--size-2);
|
||||||
|
color: var(--white-2);
|
||||||
|
font-weight: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .info ul {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
gap: 5px;
|
||||||
|
|
||||||
|
text-align: right;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .info ul li:not(:last-of-type)::after {
|
||||||
|
content: " / ";
|
||||||
|
color: var(--white-3);
|
||||||
|
font-weight: 900;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .info li a {
|
||||||
|
color: var(--color);
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
font-size: var(--size-2);
|
||||||
|
font-weight: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .info li a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .info li a[href=""] {
|
||||||
|
color: var(--white-3);
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .info li a[href=""]:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .check {
|
||||||
|
border-top: solid 1px var(--black-3);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
color: var(--white-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
main .check h1 {
|
||||||
|
font-size: var(--size-2);
|
||||||
|
font-weight: 100;
|
||||||
|
|
||||||
|
color: var(--white-2);
|
||||||
|
padding: 5px 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
main .check span {
|
||||||
|
font-size: var(--size-4);
|
||||||
|
font-weight: 1000;
|
||||||
|
|
||||||
|
color: var(--black-1);
|
||||||
|
padding: 5px 18px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
</style>
|
14
app/src/hooks.server.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import { redirect } from "@sveltejs/kit";
|
||||||
|
|
||||||
|
/** @type {import('@sveltejs/kit').HandleServerError} */
|
||||||
|
export async function handleError({ error, status }) {
|
||||||
|
// for unknown routes, just redirect to /
|
||||||
|
if (status === 404) {
|
||||||
|
return redirect(303, "/");
|
||||||
|
}
|
||||||
|
|
||||||
|
// for other errors, pass the message which will be used by the error page
|
||||||
|
return {
|
||||||
|
message: `${error}`,
|
||||||
|
};
|
||||||
|
}
|
@@ -1,42 +1,59 @@
|
|||||||
import { browser } from "$app/environment";
|
import { browser } from "$app/environment";
|
||||||
import { urljoin } from "$lib/util.js";
|
import { urljoin } from "$lib/util.js";
|
||||||
|
|
||||||
const api_version = "v1";
|
class API {
|
||||||
|
constructor() {
|
||||||
|
this.version = "v1";
|
||||||
|
}
|
||||||
|
|
||||||
function api_urljoin(path = null, query = {}) {
|
// join given path and queries into an API URL
|
||||||
let api_url = "";
|
join(path = null, query = {}) {
|
||||||
|
let base = "";
|
||||||
|
|
||||||
if (browser) api_url = urljoin(import.meta.env.WEBSITE_API_PATH, api_version);
|
if (browser) {
|
||||||
else api_url = urljoin(import.meta.env.WEBSITE_API_URL, api_version);
|
base = urljoin(import.meta.env.WEBSITE_API_PATH, this.version);
|
||||||
|
} else {
|
||||||
|
base = urljoin(import.meta.env.WEBSITE_API_URL, this.version);
|
||||||
|
}
|
||||||
|
|
||||||
return urljoin(api_url, path, query);
|
return urljoin(base, path, query);
|
||||||
|
}
|
||||||
|
|
||||||
|
// check given JSON body for errors
|
||||||
|
check_err(json) {
|
||||||
|
if (!("error" in json))
|
||||||
|
throw new Error('API response is missing the "error" key');
|
||||||
|
|
||||||
|
if (json["error"] != "")
|
||||||
|
throw new Error(`API returned an error: ${json["error"]}`);
|
||||||
|
|
||||||
|
if (!("result" in json))
|
||||||
|
throw new Error('API response is missing the "result" key');
|
||||||
|
}
|
||||||
|
|
||||||
|
// make a HTTP GET request to the given URL
|
||||||
|
async GET(fetch, url) {
|
||||||
|
const res = await fetch(url);
|
||||||
|
const json = await res.json();
|
||||||
|
this.check_err(json);
|
||||||
|
return json["result"];
|
||||||
|
}
|
||||||
|
|
||||||
|
// get visitor metrics
|
||||||
|
async metrics(fetch) {
|
||||||
|
return await this.GET(fetch, this.join("/metrics"));
|
||||||
|
}
|
||||||
|
|
||||||
|
// get service list
|
||||||
|
async services(fetch) {
|
||||||
|
return await this.GET(fetch, this.join("/services"));
|
||||||
|
}
|
||||||
|
|
||||||
|
// get projects list
|
||||||
|
async projects(fetch) {
|
||||||
|
return await this.GET(fetch, this.join("/projects"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function api_check_err(json) {
|
const api = new API();
|
||||||
if (!("error" in json)) throw new Error('API response is missing the "error" key');
|
export default api;
|
||||||
|
|
||||||
if (json["error"] != "") throw new Error(`API returned an error: ${json["error"]}`);
|
|
||||||
|
|
||||||
if (!("result" in json)) throw new Error('API response is missing the "result" key');
|
|
||||||
}
|
|
||||||
|
|
||||||
async function api_http_get(fetch, url) {
|
|
||||||
const res = await fetch(url);
|
|
||||||
const json = await res.json();
|
|
||||||
api_check_err(json);
|
|
||||||
return json["result"];
|
|
||||||
}
|
|
||||||
|
|
||||||
async function api_get_metrics(fetch) {
|
|
||||||
return await api_http_get(fetch, api_urljoin("/metrics"));
|
|
||||||
}
|
|
||||||
|
|
||||||
async function api_get_services(fetch) {
|
|
||||||
return await api_http_get(fetch, api_urljoin("/services"));
|
|
||||||
}
|
|
||||||
|
|
||||||
async function api_get_projects(fetch) {
|
|
||||||
return await api_http_get(fetch, api_urljoin("/projects"));
|
|
||||||
}
|
|
||||||
|
|
||||||
export { api_version, api_urljoin, api_get_metrics, api_get_services, api_get_projects };
|
|
||||||
|
@@ -1,50 +0,0 @@
|
|||||||
<script>
|
|
||||||
export let title;
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<h1 class="title">{title}</h1>
|
|
||||||
<div>
|
|
||||||
<slot></slot>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
main {
|
|
||||||
flex: 1;
|
|
||||||
flex-basis: 30%;
|
|
||||||
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
main .title {
|
|
||||||
font-family:
|
|
||||||
Consolas,
|
|
||||||
Monaco,
|
|
||||||
Lucida Console,
|
|
||||||
Liberation Mono,
|
|
||||||
DejaVu Sans Mono,
|
|
||||||
Bitstream Vera Sans Mono,
|
|
||||||
Courier New,
|
|
||||||
monospace;
|
|
||||||
color: var(--white-1);
|
|
||||||
}
|
|
||||||
|
|
||||||
main .title::before {
|
|
||||||
content: "#";
|
|
||||||
margin: 0 10px 0 0;
|
|
||||||
color: var(--white-3);
|
|
||||||
}
|
|
||||||
|
|
||||||
main div {
|
|
||||||
border-left: solid 1px var(--black-4);
|
|
||||||
padding: 25px 25px 10px 25px;
|
|
||||||
font-size: var(--size-4);
|
|
||||||
color: var(--white-1);
|
|
||||||
word-wrap: break-word;
|
|
||||||
align-items: center;
|
|
||||||
margin-left: 7px;
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
</style>
|
|
@@ -1,28 +1,36 @@
|
|||||||
import { urljoin } from "$lib/util.js";
|
import { urljoin } from "$lib/util.js";
|
||||||
|
|
||||||
function doc_urljoin(path = null, query = {}) {
|
class Doc {
|
||||||
return urljoin(import.meta.env.WEBSITE_DOC_URL, path, query);
|
// join given path and queries with a document server URL
|
||||||
|
join(path = null, query = {}) {
|
||||||
|
return urljoin(import.meta.env.WEBSITE_DOC_URL, path, query);
|
||||||
|
}
|
||||||
|
|
||||||
|
// check JSON response and throw an error if it contains one
|
||||||
|
check_err(json) {
|
||||||
|
if ("error" in json)
|
||||||
|
throw new Error(`Doc server returned an error: ${json["error"]}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// send a HTTP request to the documentation server
|
||||||
|
async GET(fetch, url) {
|
||||||
|
const res = await fetch(url);
|
||||||
|
const json = await res.json();
|
||||||
|
this.check_err(json);
|
||||||
|
return json;
|
||||||
|
}
|
||||||
|
|
||||||
|
// get a list of all the documentations
|
||||||
|
async list(fetch) {
|
||||||
|
return await this.GET(fetch, this.join("/list"));
|
||||||
|
}
|
||||||
|
|
||||||
|
// get a documentation
|
||||||
|
async get(fetch, name) {
|
||||||
|
let url = this.join(`/get/${name}`);
|
||||||
|
return await this.GET(fetch, url);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function doc_check_err(json) {
|
const doc = new Doc();
|
||||||
if ("error" in json) throw new Error(`Documentation server returned an error: ${json["error"]}`);
|
export default doc;
|
||||||
}
|
|
||||||
|
|
||||||
async function doc_http_get(fetch, url) {
|
|
||||||
const res = await fetch(url);
|
|
||||||
const json = await res.json();
|
|
||||||
doc_check_err(json);
|
|
||||||
return json;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function doc_get_list(fetch) {
|
|
||||||
return await doc_http_get(fetch, doc_urljoin("/list"));
|
|
||||||
}
|
|
||||||
|
|
||||||
async function doc_get(fetch, name) {
|
|
||||||
let url = doc_urljoin("/get");
|
|
||||||
url = urljoin(url, name);
|
|
||||||
return await doc_http_get(fetch, url);
|
|
||||||
}
|
|
||||||
|
|
||||||
export { doc_urljoin, doc_get, doc_get_list };
|
|
||||||
|
@@ -1,62 +0,0 @@
|
|||||||
<script>
|
|
||||||
import Link from "$lib/link.svelte";
|
|
||||||
import { color } from "$lib/util.js";
|
|
||||||
import { _ } from "svelte-i18n";
|
|
||||||
|
|
||||||
export let error = "";
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<h1 style="color: var(--{color()})">{$_("error.title")}</h1>
|
|
||||||
<code>
|
|
||||||
{#if error === ""}
|
|
||||||
Unknown error
|
|
||||||
{:else}
|
|
||||||
{error}
|
|
||||||
{/if}
|
|
||||||
</code>
|
|
||||||
<Link link={import.meta.env.WEBSITE_REPORT_URL}>
|
|
||||||
{$_("error.report")}
|
|
||||||
</Link>
|
|
||||||
<img src="/profile/sad.png" alt="" />
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
main {
|
|
||||||
position: fixed;
|
|
||||||
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
z-index: 1;
|
|
||||||
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: end;
|
|
||||||
align-items: flex-start;
|
|
||||||
gap: 10px;
|
|
||||||
|
|
||||||
padding: 50px;
|
|
||||||
font-size: var(--size-4);
|
|
||||||
|
|
||||||
background: var(--background);
|
|
||||||
background-size: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
main h1 {
|
|
||||||
font-size: var(--size-6);
|
|
||||||
}
|
|
||||||
|
|
||||||
main code {
|
|
||||||
font-size: var(--size-4);
|
|
||||||
color: var(--white-2);
|
|
||||||
}
|
|
||||||
|
|
||||||
main img {
|
|
||||||
width: var(--profile-size);
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
</style>
|
|
@@ -1,83 +0,0 @@
|
|||||||
<script>
|
|
||||||
import { color, date_from_ts } from "$lib/util.js";
|
|
||||||
import { api_get_metrics } from "$lib/api.js";
|
|
||||||
import Link from "$lib/link.svelte";
|
|
||||||
|
|
||||||
import { onMount } from "svelte";
|
|
||||||
import { _ } from "svelte-i18n";
|
|
||||||
|
|
||||||
let show_counter = false,
|
|
||||||
data = {};
|
|
||||||
|
|
||||||
onMount(async () => {
|
|
||||||
show_counter = true;
|
|
||||||
data = await api_get_metrics(fetch);
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<footer style="border-top: solid 2px var(--{color()});">
|
|
||||||
<div class="links">
|
|
||||||
<span>
|
|
||||||
<Link link={import.meta.env.WEBSITE_SOURCE_URL} bold={true}>{$_("footer.source")}</Link>
|
|
||||||
</span>
|
|
||||||
<span>/</span>
|
|
||||||
<span>
|
|
||||||
<Link link="/doc/license" bold={true}>{$_("footer.license")}</Link>
|
|
||||||
</span>
|
|
||||||
<span>/</span>
|
|
||||||
<span>
|
|
||||||
<Link link="/doc/privacy" bold={true}>{$_("footer.privacy")}</Link>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
{#if show_counter}
|
|
||||||
<span class="counter">
|
|
||||||
{$_("footer.number", {
|
|
||||||
values: {
|
|
||||||
total: data.total,
|
|
||||||
since: date_from_ts(data.since),
|
|
||||||
},
|
|
||||||
})}
|
|
||||||
{#if data.number % 1000 == 0}
|
|
||||||
<span style="color: var(--{color()})">({$_("footer.wow")})</span>
|
|
||||||
{/if}
|
|
||||||
</span>
|
|
||||||
{:else}
|
|
||||||
<span class="counter">{$_("footer.js")}</span>
|
|
||||||
{/if}
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
footer {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
background: var(--black-1);
|
|
||||||
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding: 20px 50px 20px 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div {
|
|
||||||
display: flex;
|
|
||||||
font-size: var(--size-2);
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
span {
|
|
||||||
color: var(--white-2);
|
|
||||||
font-size: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.counter {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.links {
|
|
||||||
text-align: left;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
gap: 5px;
|
|
||||||
}
|
|
||||||
</style>
|
|
@@ -1,24 +0,0 @@
|
|||||||
<script>
|
|
||||||
import { api_urljoin } from "$lib/api.js";
|
|
||||||
export let desc, title;
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<svelte:head>
|
|
||||||
<title>[ngn.tf] | {title}</title>
|
|
||||||
|
|
||||||
<meta name="description" content={desc} />
|
|
||||||
<meta name="author" content="ngn" />
|
|
||||||
<meta name="keywords" content="ngn,ngn13,ngn1,ngn.tf" />
|
|
||||||
<meta name="color-scheme" content="only dark" />
|
|
||||||
<meta name="theme-color" content="#000000" />
|
|
||||||
|
|
||||||
<meta property="og:title" content="[ngn.tf] | {title}" />
|
|
||||||
<meta property="og:description" content={desc} />
|
|
||||||
|
|
||||||
<link
|
|
||||||
rel="alternate"
|
|
||||||
type="application/atom+xml"
|
|
||||||
href={api_urljoin("/news/en")}
|
|
||||||
title="Service news and updates"
|
|
||||||
/>
|
|
||||||
</svelte:head>
|
|
@@ -1,108 +0,0 @@
|
|||||||
<script>
|
|
||||||
import { browser } from "$app/environment";
|
|
||||||
import { color } from "$lib/util.js";
|
|
||||||
import { onMount } from "svelte";
|
|
||||||
import { _ } from "svelte-i18n";
|
|
||||||
|
|
||||||
export let picture = "";
|
|
||||||
export let title = "";
|
|
||||||
|
|
||||||
let title_cur = title;
|
|
||||||
let show_animation = false;
|
|
||||||
|
|
||||||
function animate(title) {
|
|
||||||
if (!browser) return;
|
|
||||||
|
|
||||||
let id = window.setTimeout(function () {}, 0);
|
|
||||||
|
|
||||||
while (id--) clearTimeout(id);
|
|
||||||
|
|
||||||
title_cur = "";
|
|
||||||
|
|
||||||
for (let i = 0; i < title.length; i++) {
|
|
||||||
setTimeout(() => {
|
|
||||||
title_cur += title[i];
|
|
||||||
}, i * 70);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
onMount(() => {
|
|
||||||
show_animation = true;
|
|
||||||
});
|
|
||||||
|
|
||||||
$: animate(title);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<header>
|
|
||||||
<div>
|
|
||||||
{#if show_animation}
|
|
||||||
<h1 class="title" style="color: var(--{color()})">{title_cur}</h1>
|
|
||||||
<h1 class="cursor" style="color: var(--{color()})">_</h1>
|
|
||||||
{:else}
|
|
||||||
<h1 class="title" style="color: var(--{color()})">{title}</h1>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
<img src="/profile/{picture}.png" alt="" />
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
header {
|
|
||||||
background: var(--background);
|
|
||||||
background-size: 50%;
|
|
||||||
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: end;
|
|
||||||
}
|
|
||||||
|
|
||||||
header div {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: end;
|
|
||||||
padding: 50px 50px 30px 50px;
|
|
||||||
font-size: var(--size-6);
|
|
||||||
font-family:
|
|
||||||
Consolas,
|
|
||||||
Monaco,
|
|
||||||
Lucida Console,
|
|
||||||
Liberation Mono,
|
|
||||||
DejaVu Sans Mono,
|
|
||||||
Bitstream Vera Sans Mono,
|
|
||||||
Courier New,
|
|
||||||
monospace;
|
|
||||||
white-space: nowrap;
|
|
||||||
justify-content: start;
|
|
||||||
width: min-content;
|
|
||||||
}
|
|
||||||
|
|
||||||
header div .title {
|
|
||||||
text-shadow: var(--text-shadow);
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
header div .cursor {
|
|
||||||
content: "_";
|
|
||||||
display: inline-block;
|
|
||||||
animation: blink 1.5s steps(2) infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
header img {
|
|
||||||
padding: 50px 50px 0 50px;
|
|
||||||
width: var(--profile-size);
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 900px) {
|
|
||||||
header {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
header img {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
@@ -1,6 +0,0 @@
|
|||||||
<script>
|
|
||||||
import { color } from "$lib/util.js";
|
|
||||||
export let icon = "";
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<i style="color: var(--{color()});" class="nf {icon}"></i>
|
|
@@ -1,37 +0,0 @@
|
|||||||
<script>
|
|
||||||
import Icon from "$lib/icon.svelte";
|
|
||||||
import { color } from "$lib/util.js";
|
|
||||||
|
|
||||||
const default_color = "white-1";
|
|
||||||
|
|
||||||
export let active = false;
|
|
||||||
export let highlight = true;
|
|
||||||
export let link = "";
|
|
||||||
export let icon = "";
|
|
||||||
|
|
||||||
let style = "";
|
|
||||||
|
|
||||||
if (highlight) style = `text-decoration-color: var(--${color()});`;
|
|
||||||
|
|
||||||
if (active) style += `color: var(--${color()});`;
|
|
||||||
else style += `color: var(--${default_color});`;
|
|
||||||
</script>
|
|
||||||
|
|
||||||
{#if icon != ""}
|
|
||||||
<Icon {icon} />
|
|
||||||
{/if}
|
|
||||||
{#if highlight}
|
|
||||||
<a data-sveltekit-preload-data {style} href={link}>
|
|
||||||
<slot></slot>
|
|
||||||
</a>
|
|
||||||
{:else}
|
|
||||||
<a data-sveltekit-preload-data {style} class="no-highlight" href={link}>
|
|
||||||
<slot></slot>
|
|
||||||
</a>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.no-highlight:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
</style>
|
|
@@ -1,66 +1,225 @@
|
|||||||
import { init, locale, register, waitLocale } from "svelte-i18n";
|
import { derived, get, writable } from "svelte/store";
|
||||||
import { browser } from "$app/environment";
|
import { browser } from "$app/environment";
|
||||||
import { get, writable } from "svelte/store";
|
import yaml from "js-yaml";
|
||||||
|
|
||||||
const locale_default = "en";
|
// defines a single locale
|
||||||
let locale_index = writable(0);
|
class Locale {
|
||||||
let locale_list = [];
|
constructor(code, icon) {
|
||||||
|
// regex for "render"ing the locale
|
||||||
|
this.ref_regex = /\[[0-9]*:.*?\]/gm;
|
||||||
|
this.link_regex = /\[[^\]]*]\([^ ]*\)/gm;
|
||||||
|
this.bold_regex = /\*\*.*?\*\*/gm;
|
||||||
|
|
||||||
function locale_setup() {
|
this.code = code; // BCP 47 language tag
|
||||||
// english
|
this.icon = icon; // icon for the locale
|
||||||
register("en", () => import("../locales/en.json"));
|
this.all = {}; // all the locales
|
||||||
locale_list.push({ code: "en", name: "English", icon: "🇬🇧" });
|
|
||||||
|
|
||||||
// turkish
|
|
||||||
register("tr", () => import("../locales/tr.json"));
|
|
||||||
locale_list.push({ code: "tr", name: "Turkish", icon: "🇹🇷" });
|
|
||||||
|
|
||||||
init({
|
|
||||||
fallbackLocale: locale_default,
|
|
||||||
initialLocale: get(locale),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function locale_from_browser() {
|
|
||||||
if (browser) return window.navigator.language.slice(0, 2).toLowerCase();
|
|
||||||
else return locale_default;
|
|
||||||
}
|
|
||||||
|
|
||||||
function locale_select(l = null) {
|
|
||||||
if (l === null) {
|
|
||||||
if (browser && null !== (l = localStorage.getItem("locale"))) locale_select(l);
|
|
||||||
else locale_select(locale_from_browser());
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
l = l.slice(0, 2);
|
// load the locale
|
||||||
|
async load() {
|
||||||
for (let i = 0; i < locale_list.length; i++) {
|
const text = await import(`../locales/${this.code}.yaml?raw`);
|
||||||
if (l !== locale_list[i].code) continue;
|
this.all = yaml.load(text.default);
|
||||||
|
|
||||||
if (browser) localStorage.setItem("locale", l);
|
|
||||||
|
|
||||||
locale.set(l);
|
|
||||||
locale_index.set(i);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
locale.set(locale_default);
|
// renders a given locale using given values and links
|
||||||
locale_index.set(0);
|
render(locale, values, links) {
|
||||||
|
// get rid of newlines and remove trailing/repeating spaces and stuff
|
||||||
|
locale = locale.replaceAll("\r", "").replaceAll("\n", " ");
|
||||||
|
locale = locale.trim();
|
||||||
|
|
||||||
|
// find and replace all the values
|
||||||
|
for (let name in values) {
|
||||||
|
// values cannot be objects
|
||||||
|
if (typeof values[name] === "object") {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// "{name}" will be replaced by the values
|
||||||
|
locale = locale.replaceAll(`{${name}}`, values[name]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// find all the references
|
||||||
|
const refs = [...locale.matchAll(this.ref_regex)];
|
||||||
|
|
||||||
|
// and repalce them
|
||||||
|
for (let i = 0; i < refs.length; i++) {
|
||||||
|
let ref = refs[i][0];
|
||||||
|
let name = ref.replaceAll(/(^\[|\]$)/g, "");
|
||||||
|
let indx = parseInt(name.charAt(0)) - 1;
|
||||||
|
name = name.substring(2);
|
||||||
|
|
||||||
|
// check the index
|
||||||
|
if (indx >= links.length) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// replace the reference with a link
|
||||||
|
locale = locale.replaceAll(ref, `<a href="${links[indx]}">${name}</a>`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// look for []() patterns, which are used adding links, kinda like markdown
|
||||||
|
// but this is shittier
|
||||||
|
links = [...locale.matchAll(this.link_regex)];
|
||||||
|
|
||||||
|
// replace the found links
|
||||||
|
for (let i = 0; i < links.length; i++) {
|
||||||
|
let link = links[i][0];
|
||||||
|
let name = link.match(/(?<=\[).*?(?=])/g);
|
||||||
|
let url = link.match(/(?<=\()[^ ]*(?=\))/g);
|
||||||
|
|
||||||
|
// if we fail to extract the link name and/or URL, skip this match
|
||||||
|
if (null === name || null === url) continue;
|
||||||
|
|
||||||
|
locale = locale.replaceAll(link, `<a href="${url[0]}">${name[0]}</a>`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// look for double stars which is used for bold text
|
||||||
|
const bolds = [...locale.matchAll(this.bold_regex)];
|
||||||
|
|
||||||
|
// replace bold text with actual bold text
|
||||||
|
for (let i = 0; i < bolds.length; i++) {
|
||||||
|
let bold = bolds[i][0];
|
||||||
|
let text = bold.match(/(?<=\*\*).*?(?=\*\*)/g);
|
||||||
|
|
||||||
|
// if we fail to extract the text content, skip this match
|
||||||
|
if (null === text) continue;
|
||||||
|
|
||||||
|
locale = locale.replaceAll(bold, `<b>${text}</b>`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return locale;
|
||||||
|
}
|
||||||
|
|
||||||
|
// resolve the given locale
|
||||||
|
resolve(key, vars = {}) {
|
||||||
|
let cur = this.all;
|
||||||
|
let keys = key.split(".");
|
||||||
|
|
||||||
|
for (let i = 0; i < keys.length; i++) {
|
||||||
|
cur = cur[keys[i]];
|
||||||
|
|
||||||
|
if (cur === undefined) {
|
||||||
|
return cur;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// locale needs to be a string
|
||||||
|
if (typeof cur !== "string") {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
// extract links from the vars
|
||||||
|
let links = vars.links;
|
||||||
|
delete vars.links;
|
||||||
|
|
||||||
|
return this.render(cur, vars, links);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function locale_wait() {
|
// localizer stores and defines all the locales
|
||||||
await waitLocale();
|
class Localizer {
|
||||||
|
constructor() {
|
||||||
|
// list of supported locales
|
||||||
|
this.list = [
|
||||||
|
new Locale("en", "🇬🇧"), // English
|
||||||
|
new Locale("tr", "🇹🇷"), // Turkish
|
||||||
|
];
|
||||||
|
|
||||||
|
this.current = writable(this.list[0]); // current locale
|
||||||
|
this.next = writable(this.list[1]); // next locale
|
||||||
|
this.fallback = this.list[0]; // fallback locale
|
||||||
|
}
|
||||||
|
|
||||||
|
// get the name of a language using the current locale
|
||||||
|
name(code) {
|
||||||
|
return get(this.current).name(code);
|
||||||
|
}
|
||||||
|
|
||||||
|
// get the current browser locale tag
|
||||||
|
browser() {
|
||||||
|
if (browser) {
|
||||||
|
window.navigator.language.slice(0, 2).toLowerCase();
|
||||||
|
} else {
|
||||||
|
return this.fallback.code;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* load all the locales, attempt to set the provided locale as the current
|
||||||
|
* locale, if the provided locale is not available just use the default */
|
||||||
|
async setup(code) {
|
||||||
|
for (let i = 0; i < this.list.length; i++) {
|
||||||
|
await this.list[i].load();
|
||||||
|
}
|
||||||
|
|
||||||
|
// find the locale index by it's code
|
||||||
|
let indx = this.list.findIndex(locale => {
|
||||||
|
return locale.code === code;
|
||||||
|
});
|
||||||
|
|
||||||
|
// check the index to see if we found the locale
|
||||||
|
if (indx < 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// if we actually found it, set it as the current locale
|
||||||
|
this.current.set(this.list[indx]);
|
||||||
|
|
||||||
|
// set the next locale
|
||||||
|
if (++indx >= this.list.length) {
|
||||||
|
this.next.set(this.list[0]);
|
||||||
|
} else {
|
||||||
|
this.next.set(this.list[indx]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// switch to the next locale
|
||||||
|
switch() {
|
||||||
|
// find the next locale's index
|
||||||
|
let indx = this.list.findIndex(locale => {
|
||||||
|
return locale === get(this.next);
|
||||||
|
});
|
||||||
|
|
||||||
|
// set next locale as the new current locale
|
||||||
|
this.current.set(get(this.next));
|
||||||
|
document.cookie = `locale=${get(this.next).code};`;
|
||||||
|
|
||||||
|
// get the next locale based on the index
|
||||||
|
if (indx === this.list.length - 1) {
|
||||||
|
this.next.set(this.list[(indx = 0)]);
|
||||||
|
} else {
|
||||||
|
this.next.set(this.list[++indx]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
resolve(key, vars = {}) {
|
||||||
|
// attempt to resolve the given key
|
||||||
|
let res = get(this.current).resolve(key, vars);
|
||||||
|
|
||||||
|
if (res !== undefined) {
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
// if we fail to resolve the key, try to resolve it using the fallback
|
||||||
|
// locale, if that fails too then we are kinda fucked so yeah we just throw
|
||||||
|
// an error
|
||||||
|
if (get(this.current) === this.fallback) {
|
||||||
|
throw new Error(`missing key: ${key}`);
|
||||||
|
} else {
|
||||||
|
return this.fallback.resolve(key, vars);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export {
|
export const localizer = new Localizer(); // global localizer
|
||||||
|
export const locale = localizer.current; // current locale
|
||||||
|
export const next = localizer.next; // next locale
|
||||||
|
|
||||||
|
// resolve a given locale by it's key
|
||||||
|
export const _ = derived(
|
||||||
locale,
|
locale,
|
||||||
locale_list,
|
() =>
|
||||||
locale_index,
|
(key, vars = {}) =>
|
||||||
locale_default,
|
localizer.resolve(key, vars)
|
||||||
locale_setup,
|
);
|
||||||
locale_wait,
|
|
||||||
locale_select,
|
export default localizer;
|
||||||
locale_from_browser,
|
|
||||||
};
|
|
||||||
|
@@ -1,42 +0,0 @@
|
|||||||
<script>
|
|
||||||
import NavbarLink from "./navbar_link.svelte";
|
|
||||||
import NavbarSwitch from "./navbar_switch.svelte";
|
|
||||||
|
|
||||||
import { color } from "$lib/util.js";
|
|
||||||
import { _ } from "svelte-i18n";
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<nav style="border-bottom: solid 2px var(--{color()});">
|
|
||||||
<h3 style="color: var(--{color()})">[ngn.tf]</h3>
|
|
||||||
<div>
|
|
||||||
<NavbarLink link="/">{$_("navbar.home")}</NavbarLink>
|
|
||||||
<NavbarLink link="/services">{$_("navbar.services")}</NavbarLink>
|
|
||||||
<NavbarLink link="/donate">{$_("navbar.donate")}</NavbarLink>
|
|
||||||
<NavbarSwitch />
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
nav {
|
|
||||||
box-shadow: var(--box-shadow-1);
|
|
||||||
background: var(--black-1);
|
|
||||||
padding: 20px 30px 20px 20px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
|
|
||||||
div {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: right;
|
|
||||||
gap: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
font-weight: 900;
|
|
||||||
font-size: var(--size-4);
|
|
||||||
}
|
|
||||||
</style>
|
|
@@ -1,27 +0,0 @@
|
|||||||
<script>
|
|
||||||
import { color, click } from "$lib/util.js";
|
|
||||||
import { page } from "$app/stores";
|
|
||||||
|
|
||||||
export let link;
|
|
||||||
|
|
||||||
function is_active() {
|
|
||||||
return $page.url.pathname == link;
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<a
|
|
||||||
style="text-decoration-color: var(--{color()}); {is_active() ? `color: var(--${color()})` : ''}"
|
|
||||||
data-sveltekit-preload-data
|
|
||||||
on:click={click}
|
|
||||||
href={link}
|
|
||||||
>
|
|
||||||
<slot></slot>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
a {
|
|
||||||
font-weight: 900;
|
|
||||||
font-size: var(--size-4);
|
|
||||||
color: var(--white-1);
|
|
||||||
}
|
|
||||||
</style>
|
|
@@ -1,45 +0,0 @@
|
|||||||
<script>
|
|
||||||
import { locale_list, locale_select, locale_index } from "$lib/locale.js";
|
|
||||||
import { onMount } from "svelte";
|
|
||||||
|
|
||||||
let len = locale_list.length;
|
|
||||||
let show = false;
|
|
||||||
|
|
||||||
function get_next(indx) {
|
|
||||||
let new_indx = 0;
|
|
||||||
|
|
||||||
if (indx + 1 >= len) indx = 0;
|
|
||||||
else new_indx = indx + 1;
|
|
||||||
|
|
||||||
return locale_list[new_indx];
|
|
||||||
}
|
|
||||||
|
|
||||||
function next() {
|
|
||||||
locale_select(get_next($locale_index).code);
|
|
||||||
}
|
|
||||||
|
|
||||||
onMount(() => {
|
|
||||||
show = true;
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
{#if show}
|
|
||||||
<button on:click={next}>
|
|
||||||
{get_next($locale_index).icon}
|
|
||||||
</button>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
<style>
|
|
||||||
button {
|
|
||||||
background: var(--black-2);
|
|
||||||
color: var(--white-1);
|
|
||||||
font-size: var(--size-4);
|
|
||||||
outline: none;
|
|
||||||
border: none;
|
|
||||||
transition: 0.4s;
|
|
||||||
}
|
|
||||||
|
|
||||||
button:hover {
|
|
||||||
background: var(--black-1);
|
|
||||||
}
|
|
||||||
</style>
|
|
@@ -1,114 +0,0 @@
|
|||||||
<script>
|
|
||||||
import Icon from "$lib/icon.svelte";
|
|
||||||
import Link from "$lib/link.svelte";
|
|
||||||
|
|
||||||
import { color, time_from_ts } from "$lib/util.js";
|
|
||||||
import { locale, _ } from "svelte-i18n";
|
|
||||||
|
|
||||||
export let service = {};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<div class="info">
|
|
||||||
<div class="title">
|
|
||||||
<h1>{service.name}</h1>
|
|
||||||
<p>{service.desc[$locale]}</p>
|
|
||||||
</div>
|
|
||||||
<div class="links">
|
|
||||||
<Link highlight={false} link={service.clear}><Icon icon="nf-oct-link" /></Link>
|
|
||||||
{#if service.onion != ""}
|
|
||||||
<Link highlight={false} link={service.onion}><Icon icon="nf-linux-tor" /></Link>
|
|
||||||
{/if}
|
|
||||||
{#if service.i2p != ""}
|
|
||||||
<Link highlight={false} link={service.i2p}
|
|
||||||
><span style="color: var(--{color()})">I2P</span></Link
|
|
||||||
>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="check">
|
|
||||||
<h1>
|
|
||||||
{$_("services.last", {
|
|
||||||
values: { time: time_from_ts(service.check_time) },
|
|
||||||
})}
|
|
||||||
</h1>
|
|
||||||
{#if service.check_res == 0}
|
|
||||||
<span style="background: var(--white-2)">
|
|
||||||
{$_("services.status.down")}
|
|
||||||
</span>
|
|
||||||
{:else if service.check_res == 1}
|
|
||||||
<span style="background: var(--{color()})">
|
|
||||||
{$_("services.status.up")}
|
|
||||||
</span>
|
|
||||||
{:else if service.check_res == 2}
|
|
||||||
<span style="background: var(--{color()}); filter: brightness(50%);">
|
|
||||||
{$_("services.status.slow")}
|
|
||||||
</span>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
main {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
background: var(--black-3);
|
|
||||||
border: solid 1px var(--black-4);
|
|
||||||
text-align: left;
|
|
||||||
|
|
||||||
flex: 1;
|
|
||||||
flex-basis: 40%;
|
|
||||||
}
|
|
||||||
|
|
||||||
main .info {
|
|
||||||
padding: 25px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
color: var(--white-1);
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
main .info .title h1 {
|
|
||||||
font-size: var(--size-5);
|
|
||||||
margin-bottom: 8px;
|
|
||||||
font-weight: 900;
|
|
||||||
}
|
|
||||||
|
|
||||||
main .info .title p {
|
|
||||||
font-size: var(--size-4);
|
|
||||||
color: var(--white-2);
|
|
||||||
font-weight: 100;
|
|
||||||
}
|
|
||||||
|
|
||||||
main .info .links {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
gap: 10px;
|
|
||||||
font-size: var(--size-6);
|
|
||||||
}
|
|
||||||
|
|
||||||
main .check {
|
|
||||||
border-top: solid 1px var(--black-4);
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
color: var(--white-1);
|
|
||||||
}
|
|
||||||
|
|
||||||
main .check h1 {
|
|
||||||
padding: 15px 25px 15px 25px;
|
|
||||||
font-size: var(--size-4);
|
|
||||||
font-weight: 100;
|
|
||||||
}
|
|
||||||
|
|
||||||
main .check span {
|
|
||||||
padding: 15px 25px 15px 25px;
|
|
||||||
font-size: var(--size-5);
|
|
||||||
text-transform: uppercase;
|
|
||||||
color: var(--black-1);
|
|
||||||
font-weight: 1000;
|
|
||||||
}
|
|
||||||
</style>
|
|
@@ -1,61 +1,60 @@
|
|||||||
import { locale_from_browser } from "$lib/locale.js";
|
import { localizer } from "$lib/locale.js";
|
||||||
|
|
||||||
const colors = [
|
// colors defined in static/css/global.css
|
||||||
"yellow",
|
const colors = ["yellow", "cyan", "green", "pinkish", "red", "blue"];
|
||||||
"cyan",
|
|
||||||
"green",
|
|
||||||
"pinkish",
|
|
||||||
"red",
|
|
||||||
// "blue" (looks kinda ass)
|
|
||||||
];
|
|
||||||
|
|
||||||
let colors_pos = -1;
|
// randomly select a color
|
||||||
|
export function color() {
|
||||||
function color() {
|
return colors[Math.floor(Math.random() * colors.length)];
|
||||||
if (colors_pos < 0) colors_pos = Math.floor(Math.random() * colors.length);
|
|
||||||
else if (colors_pos >= colors.length) colors_pos = 0;
|
|
||||||
|
|
||||||
return colors[colors_pos];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function click() {
|
// play a click sound
|
||||||
|
export function click() {
|
||||||
let audio = new Audio("/assets/click.wav");
|
let audio = new Audio("/assets/click.wav");
|
||||||
audio.play();
|
audio.play();
|
||||||
}
|
}
|
||||||
|
|
||||||
function urljoin(url, path = null) {
|
// join a given path to the URL
|
||||||
if (undefined === url || null === url) return;
|
export function urljoin(url, path = null) {
|
||||||
|
if (null === path || path.length === 0) {
|
||||||
|
return url;
|
||||||
|
}
|
||||||
|
|
||||||
if (url[url.length - 1] != "/") url += "/";
|
if (url[url.length - 1] != "/") {
|
||||||
|
url += "/";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (path[0] === "/") {
|
||||||
|
path = path.slice(1);
|
||||||
|
}
|
||||||
|
|
||||||
if (null === path || "" === path) return url;
|
|
||||||
if (path[0] === "/") return url + path.slice(1);
|
|
||||||
return url + path;
|
return url + path;
|
||||||
}
|
}
|
||||||
|
|
||||||
function time_from_ts(ts) {
|
// convert Date() to readable date
|
||||||
if (ts === 0 || ts === undefined) return;
|
export function date(date) {
|
||||||
|
return new Intl.DateTimeFormat(localizer.browser(), {
|
||||||
let ts_date = new Date(ts * 1000);
|
|
||||||
let ts_zone = ts_date.toString().match(/([A-Z]+[\+-][0-9]+)/)[1];
|
|
||||||
|
|
||||||
return (
|
|
||||||
new Intl.DateTimeFormat(locale_from_browser(), {
|
|
||||||
hour: "2-digit",
|
|
||||||
minute: "2-digit",
|
|
||||||
second: "2-digit",
|
|
||||||
}).format(ts_date) + ` (${ts_zone})`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function date_from_ts(ts) {
|
|
||||||
if (ts === 0 || ts === undefined) return;
|
|
||||||
|
|
||||||
return new Intl.DateTimeFormat(locale_from_browser(), {
|
|
||||||
month: "2-digit",
|
month: "2-digit",
|
||||||
year: "2-digit",
|
year: "2-digit",
|
||||||
day: "2-digit",
|
day: "2-digit",
|
||||||
}).format(new Date(ts * 1000));
|
}).format(date);
|
||||||
}
|
}
|
||||||
|
|
||||||
export { color, click, urljoin, time_from_ts, date_from_ts };
|
// convert timestamp to readable time
|
||||||
|
export function time_from_ts(ts) {
|
||||||
|
const date = new Date(ts * 1000);
|
||||||
|
const zone = date.toString().match(/([A-Z]+[\+-][0-9]+)/)[1];
|
||||||
|
|
||||||
|
return (
|
||||||
|
new Intl.DateTimeFormat(localizer.browser(), {
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
second: "2-digit",
|
||||||
|
}).format(date) + ` (${zone})`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// convert timestamp to readable date
|
||||||
|
export function date_from_ts(ts) {
|
||||||
|
return date(new Date(ts * 1000));
|
||||||
|
}
|
||||||
|
@@ -1,79 +0,0 @@
|
|||||||
{
|
|
||||||
"navbar": {
|
|
||||||
"home": "home",
|
|
||||||
"services": "services",
|
|
||||||
"donate": "donate"
|
|
||||||
},
|
|
||||||
"home": {
|
|
||||||
"title": "hello world!",
|
|
||||||
"welcome": {
|
|
||||||
"title": "about",
|
|
||||||
"desc": "Welcome to my website, I'm ngn",
|
|
||||||
"whoami": "I'm a security, privacy and freedom advocate high-schooler from Turkey",
|
|
||||||
"interest": "I'm interested in system security and software development",
|
|
||||||
"support": "I love and support Free/Libre and Open Source Software (FLOSS)"
|
|
||||||
},
|
|
||||||
"work": {
|
|
||||||
"title": "work",
|
|
||||||
"desc": "I don't currently have a job, so I spend most of my time...",
|
|
||||||
"build": "building stupid shit",
|
|
||||||
"fix": "fixing stupid shit",
|
|
||||||
"ctf": "solving CTF challenges",
|
|
||||||
"contribute": "contributing to random projects",
|
|
||||||
"wiki": "expanding my wiki"
|
|
||||||
},
|
|
||||||
"links": {
|
|
||||||
"title": "contact",
|
|
||||||
"desc": "Here are some useful links if you want to get in contact with me",
|
|
||||||
"prefer": "I highly prefer email, you can send encrypted emails using my PGP key"
|
|
||||||
},
|
|
||||||
"services": {
|
|
||||||
"title": "services",
|
|
||||||
"desc": "A part from working on stupid shit, I host free (as in freedom and price) services available for all",
|
|
||||||
"speed": "All of these services are available over an 1 Gbit interface",
|
|
||||||
"security": "All use SSL encrypted connection and they respect your privacy and freedom",
|
|
||||||
"privacy": "Accessible from clearnet, TOR and I2P, no region or network blocks",
|
|
||||||
"bullshit": "No CDNs, no cloudflare, no CAPTCHA, no analytics, no bullshit",
|
|
||||||
"link": "See all the services!"
|
|
||||||
},
|
|
||||||
"projects": {
|
|
||||||
"title": "projects",
|
|
||||||
"desc": "I mostly work on free software projects, here are some of projects that you might find interesting"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"services": {
|
|
||||||
"title": "service status",
|
|
||||||
"none": "No services found",
|
|
||||||
"search": "Search for a service",
|
|
||||||
"feed": "News and updates",
|
|
||||||
"last": "Last checked at {time}",
|
|
||||||
"status": {
|
|
||||||
"up": "Up",
|
|
||||||
"down": "Down",
|
|
||||||
"slow": "Slow"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"donate": {
|
|
||||||
"title": "donate!",
|
|
||||||
"info": "I spend a lot of time and money on different projects and maintaining different services.",
|
|
||||||
"price": "I mostly pay for hosting and electricity. Which when added up costs around 550₺ per month (~$15 at the time of writing).",
|
|
||||||
"details": "So even a small donation would be useful. And it would help me keep everything up and running.",
|
|
||||||
"thanks": "Also huge thanks to all of you who have donated so far!",
|
|
||||||
"table": {
|
|
||||||
"platform": "Platform",
|
|
||||||
"address": "Adress/Link"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"title": "something went wrong!",
|
|
||||||
"report": "Report this issue"
|
|
||||||
},
|
|
||||||
"footer": {
|
|
||||||
"source": "Source",
|
|
||||||
"license": "License",
|
|
||||||
"privacy": "Privacy",
|
|
||||||
"number": "Visited {total} times since {since}",
|
|
||||||
"wow": "wow!!",
|
|
||||||
"js": "Enable javascript to display all the elements"
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,79 +0,0 @@
|
|||||||
{
|
|
||||||
"navbar": {
|
|
||||||
"home": "anasayfa",
|
|
||||||
"services": "servisler",
|
|
||||||
"donate": "bağış"
|
|
||||||
},
|
|
||||||
"home": {
|
|
||||||
"title": "merhaba dünya!",
|
|
||||||
"welcome": {
|
|
||||||
"title": "hakkımda",
|
|
||||||
"desc": "Websiteme hoşgeldiniz, ben ngn",
|
|
||||||
"whoami": "Türkiye'den, güvenlik, gizlik ve özgürlük savunucusu bir liseliyim",
|
|
||||||
"interest": "Sistem güvenliği ve yazılım geliştirmek ile ilgileniyorum",
|
|
||||||
"support": "Özgür/Libre ve Açık Kaynaklı Yazılımı (FLOSS) seviyorum ve destekliyorum"
|
|
||||||
},
|
|
||||||
"work": {
|
|
||||||
"title": "iş",
|
|
||||||
"desc": "Şuan bir işim yok, o yüzden zamanımın çoğunu şunlarla geçiriyorum:",
|
|
||||||
"build": "salak şeyler inşa etmek",
|
|
||||||
"fix": "salak şeyleri düzeltmek",
|
|
||||||
"ctf": "CTF challenge'ları çözmek",
|
|
||||||
"contribute": "rastgele projelere katkıda bulunmak",
|
|
||||||
"wiki": "wikimi genişletmek"
|
|
||||||
},
|
|
||||||
"links": {
|
|
||||||
"title": "iletişim",
|
|
||||||
"desc": "Eğer benim ile iletişime geçmek istiyorsanız, işte bazı faydalı linkler",
|
|
||||||
"prefer": "Email'i fazlasıyla tercih ediyorum, PGP anahtarım ile şifreli email'ler gönderebilirsiniz"
|
|
||||||
},
|
|
||||||
"services": {
|
|
||||||
"title": "servisler",
|
|
||||||
"desc": "Salak şeyler inşa etmenin yanı sıra, herkes için kullanıma açık özgür ve ücretsiz servisler host ediyorum",
|
|
||||||
"speed": "Tüm servisler 1 Gbit ağ arayüzü üzerinden erişilebilir",
|
|
||||||
"security": "Hepsi SSL şifreli bağlantı kullanıyor ve hepsi gizliliğinize ve özgürlüğünüze saygı gösteriyor",
|
|
||||||
"privacy": "Açık ağdan, TOR ve I2P'den erişilebilirler, bölge ya da ağ blokları yok",
|
|
||||||
"bullshit": "CDN yok, cloudflare yok, CAPTCHA yok, analitikler ve diğer saçmalıklar yok",
|
|
||||||
"link": "Tüm servisleri incele!"
|
|
||||||
},
|
|
||||||
"projects": {
|
|
||||||
"title": "projeler",
|
|
||||||
"desc": "Çoğunlukla özgür yazılım projeleri üzerinde çalışıyorum, işte ilginç bulabileceğiniz bazı projelerim"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"services": {
|
|
||||||
"title": "servis durumu",
|
|
||||||
"none": "Servis bulunamadı",
|
|
||||||
"search": "Bir servisi ara",
|
|
||||||
"feed": "Yenilikler ve güncellemeler",
|
|
||||||
"last": "Son kontrol zamanı {time}",
|
|
||||||
"status": {
|
|
||||||
"up": "Çalışıyor",
|
|
||||||
"down": "Kapalı",
|
|
||||||
"slow": "Yavaş"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"donate": {
|
|
||||||
"title": "bağış yap!",
|
|
||||||
"info": "Farklı projeler ve farklı servisleri yönetmek için oldukça zaman ve para harcıyorum.",
|
|
||||||
"price": "Çoğunlukla hosting ve elektrik için ödeme yapıyorum. Bunlar eklendiği zaman aylık 550₺ civarı bir miktar oluyor (yazdığım sırada ~15$).",
|
|
||||||
"details": "Bu sebepten küçük bir bağış bile oldukça faydalı olacaktır. Ve herşeyi açık ve çalışmakta tutmama yardımcı olacaktır.",
|
|
||||||
"thanks": "Ayrıca şuana kadar bağışta bulunan herkese çok teşekkür ederim!",
|
|
||||||
"table": {
|
|
||||||
"platform": "Platform",
|
|
||||||
"address": "Adres/Bağlantı"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"error": {
|
|
||||||
"title": "birşeyler yanlış gitti!",
|
|
||||||
"report": "Bu sorunu raporlayın"
|
|
||||||
},
|
|
||||||
"footer": {
|
|
||||||
"source": "Kaynak",
|
|
||||||
"license": "Lisans",
|
|
||||||
"privacy": "Gizlilik",
|
|
||||||
"number": "{since} tarihinden beri {total} kez ziyaret edildi",
|
|
||||||
"wow": "vay be!!",
|
|
||||||
"js": "Tüm elementleri görüntelemek için javascript'i açın"
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,8 +1,51 @@
|
|||||||
<script>
|
<script>
|
||||||
import { onMount } from "svelte";
|
import { page } from "$app/state";
|
||||||
import { goto } from "$app/navigation";
|
import { _ } from "$lib/locale.js";
|
||||||
|
|
||||||
onMount(() => {
|
|
||||||
goto("/");
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<h1>{$_("error.title")}</h1>
|
||||||
|
<code>{page.error.message}</code>
|
||||||
|
<a href={import.meta.env.WEBSITE_REPORT_URL}>{$_("error.report")}</a>
|
||||||
|
<img src="/assets/sad.png" alt="" />
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
main {
|
||||||
|
background: var(--transparent);
|
||||||
|
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
z-index: 1;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: end;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: 10px;
|
||||||
|
|
||||||
|
padding: 50px;
|
||||||
|
font-size: var(--size-4);
|
||||||
|
}
|
||||||
|
|
||||||
|
main h1 {
|
||||||
|
font-size: var(--size-6);
|
||||||
|
text-shadow: var(--text-shadow);
|
||||||
|
color: var(--color);
|
||||||
|
}
|
||||||
|
|
||||||
|
main code {
|
||||||
|
font-size: var(--size-4);
|
||||||
|
color: var(--white-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
main img {
|
||||||
|
width: 250px;
|
||||||
|
position: absolute;
|
||||||
|
right: 50px;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
import { locale_setup, locale_wait } from "$lib/locale.js";
|
import localizer from "$lib/locale.js";
|
||||||
|
|
||||||
export async function load() {
|
export async function load({ data }) {
|
||||||
locale_setup();
|
await localizer.setup(data.locale);
|
||||||
await locale_wait();
|
return data;
|
||||||
}
|
}
|
||||||
|
36
app/src/routes/+layout.server.js
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
import { redirect } from "@sveltejs/kit";
|
||||||
|
import { color } from "../lib/util.js";
|
||||||
|
|
||||||
|
// set the locale cookie
|
||||||
|
function set_locale(cookies, locale) {
|
||||||
|
cookies.set("locale", locale, { path: "/", secure: false, httpOnly: false });
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function load({ cookies, request, url }) {
|
||||||
|
// if the locale param is specified, use the specified locale
|
||||||
|
let locale = url.searchParams.get("l");
|
||||||
|
|
||||||
|
if (locale) {
|
||||||
|
set_locale(cookies, locale);
|
||||||
|
return redirect(307, "/");
|
||||||
|
}
|
||||||
|
|
||||||
|
// attempt get the preferred locale from cookies
|
||||||
|
locale = cookies.get("locale");
|
||||||
|
|
||||||
|
/* if that doesn't work, try the accept-language header, and update the
|
||||||
|
* cookies respectively */
|
||||||
|
if (!locale) {
|
||||||
|
locale = request.headers.get("accept-language")?.split(",")[0];
|
||||||
|
set_locale(cookies, locale);
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
// the locale we detected
|
||||||
|
locale: locale,
|
||||||
|
|
||||||
|
/* color is randomly picked on the server and passed via data to the client
|
||||||
|
* so both the client and the server will have the same color */
|
||||||
|
color: color(),
|
||||||
|
};
|
||||||
|
}
|
@@ -1,23 +1,22 @@
|
|||||||
<script>
|
<script>
|
||||||
import Navbar from "$lib/navbar.svelte";
|
import { browser } from "$app/environment";
|
||||||
import Footer from "$lib/footer.svelte";
|
|
||||||
|
|
||||||
import { locale_select } from "$lib/locale.js";
|
import { color } from "$lib/util.js";
|
||||||
import { onMount } from "svelte";
|
import api from "$lib/api.js";
|
||||||
|
|
||||||
let { children } = $props();
|
let { data, children } = $props();
|
||||||
|
|
||||||
onMount(() => {
|
if (browser) {
|
||||||
locale_select();
|
// set the current app and the API version
|
||||||
});
|
window._version = {
|
||||||
|
app: pkg.version,
|
||||||
|
api: api.version,
|
||||||
|
};
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<main>
|
<main style="--color: var(--{data.color})">
|
||||||
<Navbar />
|
{@render children()}
|
||||||
<div class="content">
|
|
||||||
{@render children()}
|
|
||||||
</div>
|
|
||||||
<Footer />
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@@ -28,9 +27,4 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
|
||||||
background: var(--black-1);
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@@ -1,15 +1,9 @@
|
|||||||
import { api_get_projects } from "$lib/api.js";
|
import api from "$lib/api.js";
|
||||||
|
|
||||||
export async function load({ fetch }) {
|
export async function load({ fetch }) {
|
||||||
try {
|
let projects = await api.projects(fetch);
|
||||||
let projects = await api_get_projects(fetch);
|
|
||||||
return {
|
return {
|
||||||
projects: null === projects ? [] : projects,
|
projects: null === projects ? [] : projects,
|
||||||
error: "",
|
};
|
||||||
};
|
|
||||||
} catch (err) {
|
|
||||||
return {
|
|
||||||
error: err.toString(),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -1,129 +1,94 @@
|
|||||||
<script>
|
<script>
|
||||||
import { api_version } from "$lib/api.js";
|
import Navbar from "$components/navbar.svelte";
|
||||||
import Header from "$lib/header.svelte";
|
import Footer from "$components/footer.svelte";
|
||||||
import Error from "$lib/error.svelte";
|
import Header from "$components/header.svelte";
|
||||||
import Head from "$lib/head.svelte";
|
import Head from "$components/head.svelte";
|
||||||
import Card from "$lib/card.svelte";
|
import Card from "$components/card.svelte";
|
||||||
import Link from "$lib/link.svelte";
|
|
||||||
|
|
||||||
import { browser } from "$app/environment";
|
import { locale, _ } from "$lib/locale.js";
|
||||||
import { _, locale } from "svelte-i18n";
|
|
||||||
import { color } from "$lib/util.js";
|
|
||||||
|
|
||||||
let { data } = $props();
|
let { data } = $props();
|
||||||
|
|
||||||
if (browser) {
|
// return list of projects that have decriptions for the given locale
|
||||||
window._version = {};
|
function projects() {
|
||||||
window._version.app = pkg.version;
|
return data.projects.filter(p => {
|
||||||
window._version.api = api_version;
|
return (
|
||||||
|
p.desc[$locale.code] !== "" &&
|
||||||
|
p.desc[$locale.code] !== null &&
|
||||||
|
p.desc[$locale.code] !== undefined
|
||||||
|
);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Head title="home" desc="home page of my personal website" />
|
<Head title="home" desc="home page of my personal website" />
|
||||||
|
<Navbar />
|
||||||
<Header picture="tired" title={$_("home.title")} />
|
<Header picture="tired" title={$_("home.title")} />
|
||||||
|
<main>
|
||||||
|
<!-- welcome -->
|
||||||
|
<Card>
|
||||||
|
<p>{@html $_("home.welcome.desc")}</p>
|
||||||
|
<br />
|
||||||
|
<p>{$_("home.welcome.thanks")}</p>
|
||||||
|
</Card>
|
||||||
|
|
||||||
{#if data.error.length !== 0}
|
<!-- projects -->
|
||||||
<Error error={data.error} />
|
<Card title={$_("home.projects.title")} id="projects">
|
||||||
{:else}
|
<p>{$_("home.projects.desc")}:</p>
|
||||||
<main>
|
<br />
|
||||||
<Card title={$_("home.welcome.title")}>
|
<ul>
|
||||||
<span> 👋 {$_("home.welcome.desc")}</span>
|
{#each projects() as project}
|
||||||
<ul>
|
<li class="project">
|
||||||
<li>🇹🇷 {$_("home.welcome.whoami")}</li>
|
<a href={project.url}>{project.name}</a>: {project.desc[$locale.code]}
|
||||||
<li>🖥️ {$_("home.welcome.interest")}</li>
|
|
||||||
<li>❤️ {$_("home.welcome.support")}</li>
|
|
||||||
</ul>
|
|
||||||
</Card>
|
|
||||||
<Card title={$_("home.work.title")}>
|
|
||||||
<span>{$_("home.work.desc")}</span>
|
|
||||||
<ul>
|
|
||||||
<li>⌨️ {$_("home.work.build")}</li>
|
|
||||||
<li>🤦 {$_("home.work.fix")}</li>
|
|
||||||
<li>🚩 {$_("home.work.ctf")}</li>
|
|
||||||
<li>👥 {$_("home.work.contribute")}</li>
|
|
||||||
<li>📑 {$_("home.work.wiki")}</li>
|
|
||||||
</ul>
|
|
||||||
</Card>
|
|
||||||
<Card title={$_("home.links.title")}>
|
|
||||||
<span>{$_("home.links.desc")}:</span>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<Link
|
|
||||||
icon="nf-fa-key"
|
|
||||||
link="https://keyoxide.org/F9E70878C2FB389AEC2BA34CA3654DF5AD9F641D"
|
|
||||||
>
|
|
||||||
PGP
|
|
||||||
</Link>
|
|
||||||
</li>
|
</li>
|
||||||
<li>
|
{/each}
|
||||||
<Link icon="nf-md-email" link="mailto:ngn@ngn.tf">Email</Link>
|
</ul>
|
||||||
</li>
|
</Card>
|
||||||
<li>
|
|
||||||
<Link icon="nf-md-mastodon" link="https://defcon.social/@ngn">Mastodon</Link>
|
<!-- services -->
|
||||||
</li>
|
<Card title={$_("home.services.title")} id="services">
|
||||||
</ul>
|
<p>{$_("home.services.desc")}:</p>
|
||||||
<span>
|
<br />
|
||||||
{$_("home.links.prefer")}
|
<ul>
|
||||||
</span>
|
<li>{@html $_("home.services.speed")}</li>
|
||||||
</Card>
|
<li>{@html $_("home.services.security")}</li>
|
||||||
<Card title={$_("home.services.title")}>
|
<li>{@html $_("home.services.blocks")}</li>
|
||||||
<span>
|
<li>{@html $_("home.services.bullshit")}</li>
|
||||||
{$_("home.services.desc")}:
|
</ul>
|
||||||
</span>
|
<br />
|
||||||
<ul>
|
<a class="services" href="/services" data-sveltekit-preload-data>
|
||||||
<li>
|
{$_("home.services.link")}
|
||||||
<i style="color: var(--{color()});" class="nf nf-md-speedometer_slow"></i>
|
</a>
|
||||||
{$_("home.services.speed")}
|
</Card>
|
||||||
</li>
|
|
||||||
<li>
|
<!-- contact -->
|
||||||
<i style="color: var(--{color()});" class="nf nf-fa-lock"></i>
|
<Card title={$_("home.contact.title")} id="contact">
|
||||||
{$_("home.services.security")}
|
<p>{@html $_("home.contact.desc")}</p>
|
||||||
</li>
|
<br />
|
||||||
<li>
|
<p>{@html $_("home.contact.mastodon")}</p>
|
||||||
<i style="color: var(--{color()});" class="nf nf-fa-network_wired"></i>
|
</Card>
|
||||||
{$_("home.services.privacy")}
|
</main>
|
||||||
</li>
|
<Footer />
|
||||||
<li>
|
|
||||||
<i style="color: var(--{color()});" class="nf nf-md-eye_off"></i>
|
|
||||||
{$_("home.services.bullshit")}
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<Link link="/services">{$_("home.services.link")}</Link>
|
|
||||||
</Card>
|
|
||||||
<Card title={$_("home.projects.title")}>
|
|
||||||
<span>
|
|
||||||
{$_("home.projects.desc")}:
|
|
||||||
</span>
|
|
||||||
{#if data.error.length === 0}
|
|
||||||
<ul>
|
|
||||||
{#each data.projects.filter((p) => {
|
|
||||||
return p.desc[$locale] !== "" && p.desc[$locale] !== null && p.desc[$locale] !== undefined;
|
|
||||||
}) as project}
|
|
||||||
<li>
|
|
||||||
<Link active={true} link={project.url}>{project.name}</Link>:
|
|
||||||
{project.desc[$locale]}
|
|
||||||
</li>
|
|
||||||
{/each}
|
|
||||||
</ul>
|
|
||||||
{/if}
|
|
||||||
</Card>
|
|
||||||
</main>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
main {
|
main {
|
||||||
|
background: var(--black-1);
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-direction: column;
|
||||||
justify-content: center;
|
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
|
|
||||||
padding: 50px;
|
padding: 40px;
|
||||||
gap: 28px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 900px) {
|
.services {
|
||||||
main {
|
color: var(--color);
|
||||||
flex-direction: column;
|
text-decoration-color: var(--color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.project a {
|
||||||
|
color: var(--color);
|
||||||
|
text-decoration-color: var(--color);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@@ -1,12 +1,7 @@
|
|||||||
import { doc_get } from "$lib/doc";
|
import doc from "$lib/doc";
|
||||||
|
|
||||||
export async function load({ fetch, params }) {
|
export async function load({ fetch, params }) {
|
||||||
try {
|
return {
|
||||||
return {
|
doc: await doc.get(fetch, params.name),
|
||||||
doc: await doc_get(fetch, params.name),
|
};
|
||||||
error: "",
|
|
||||||
};
|
|
||||||
} catch (err) {
|
|
||||||
return { error: err.toString() };
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -1,50 +1,41 @@
|
|||||||
<script>
|
<script>
|
||||||
import Header from "$lib/header.svelte";
|
import Navbar from "$components/navbar.svelte";
|
||||||
import Error from "$lib/error.svelte";
|
import Footer from "$components/footer.svelte";
|
||||||
import Head from "$lib/head.svelte";
|
import Header from "$components/header.svelte";
|
||||||
|
import Head from "$components/head.svelte";
|
||||||
|
|
||||||
|
import { locale, _ } from "$lib/locale.js";
|
||||||
|
|
||||||
import { locale, _ } from "svelte-i18n";
|
|
||||||
import { goto } from "$app/navigation";
|
|
||||||
import { color } from "$lib/util.js";
|
|
||||||
import DOMPurify from "dompurify";
|
import DOMPurify from "dompurify";
|
||||||
import { onMount } from "svelte";
|
|
||||||
import { marked } from "marked";
|
import { marked } from "marked";
|
||||||
|
import { onMount } from "svelte";
|
||||||
|
|
||||||
let { data } = $props();
|
let { data } = $props();
|
||||||
marked.use({ breaks: true });
|
marked.use();
|
||||||
|
|
||||||
onMount(async () => {
|
onMount(() => {
|
||||||
for (let key in data.doc)
|
for (let key in data.doc) {
|
||||||
data.doc[key]["content"] = DOMPurify.sanitize(data.doc[key]["content"]);
|
data.doc[key]["content"] = DOMPurify.sanitize(data.doc[key]["content"]);
|
||||||
|
}
|
||||||
if (undefined !== data.error && data.error.includes("not found")) goto("/");
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Head title="documentation" desc="website and API documentation" />
|
<Head title="documentation" desc="website and API documentation" />
|
||||||
<Header picture="reader" title={data.doc[$locale].title} />
|
<Navbar />
|
||||||
|
<Header picture="reader" title={data.doc[$locale.code].title} />
|
||||||
{#if data.error.length !== 0}
|
<main>
|
||||||
{#if !data.error.includes("not found")}
|
<div class="markdown-body">
|
||||||
<Error error={data.error} />
|
{@html marked.parse(data.doc[$locale.code].content)}
|
||||||
{/if}
|
</div>
|
||||||
{:else}
|
</main>
|
||||||
<main>
|
<Footer />
|
||||||
<div class="markdown-body" style="--link-color: var(--{color()})">
|
|
||||||
{@html marked.parse(data.doc[$locale].content)}
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@import "/css/markdown.css";
|
@import "/css/markdown.css";
|
||||||
|
|
||||||
main {
|
main {
|
||||||
padding: 50px;
|
background: var(--black-1);
|
||||||
|
padding: 40px;
|
||||||
gap: 30px;
|
gap: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
main .markdown-body :global(a) {
|
|
||||||
color: var(--link-color);
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@@ -1,93 +1,43 @@
|
|||||||
<script>
|
<script>
|
||||||
import Header from "$lib/header.svelte";
|
import Navbar from "$components/navbar.svelte";
|
||||||
import Head from "$lib/head.svelte";
|
import Footer from "$components/footer.svelte";
|
||||||
import Icon from "$lib/icon.svelte";
|
import Header from "$components/header.svelte";
|
||||||
|
import Head from "$components/head.svelte";
|
||||||
|
import Card from "$components/card.svelte";
|
||||||
|
|
||||||
import { color } from "$lib/util.js";
|
import { _ } from "$lib/locale.js";
|
||||||
import { _ } from "svelte-i18n";
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Head title="donate" desc="give me all of your life savings" />
|
<Head title="donate" desc="give me all of your life savings" />
|
||||||
|
<Navbar />
|
||||||
<Header picture="money" title={$_("donate.title")} />
|
<Header picture="money" title={$_("donate.title")} />
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<span> </span>
|
<Card>
|
||||||
<span>
|
<p>{@html $_("donate.desc")}</p>
|
||||||
{$_("donate.info")}
|
<br />
|
||||||
{$_("donate.price")}
|
<p>{@html $_("donate.info")}:</p>
|
||||||
</span>
|
<div>
|
||||||
<br />
|
<code>
|
||||||
<br />
|
46q7G7u7cmASvJm7AmrhmNg6ctS77mYMmDAy1QxpDn5w57xV3GUY5za4ZPZHAjqaXdfS5YRWm4AVj5UArLDA1retRkJp47F
|
||||||
<span>
|
</code>
|
||||||
{$_("donate.details")}
|
</div>
|
||||||
</span>
|
<p>{$_("donate.thanks")}</p>
|
||||||
<table>
|
</Card>
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th style="color: var(--{color()})">{$_("donate.table.platform")}</th>
|
|
||||||
<th style="color: var(--{color()})">{$_("donate.table.address")}</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<Icon icon="nf-fa-monero" />
|
|
||||||
Monero (XMR)
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<code>
|
|
||||||
46q7G7u7cmASvJm7AmrhmNg6ctS77mYMmDAy1QxpDn5w57xV3GUY5za4ZPZHAjqaXdfS5YRWm4AVj5UArLDA1retRkJp47F
|
|
||||||
</code>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<span>
|
|
||||||
{$_("donate.thanks")}
|
|
||||||
</span>
|
|
||||||
</main>
|
</main>
|
||||||
|
<Footer />
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
main {
|
main {
|
||||||
padding: 50px;
|
background: var(--black-1);
|
||||||
|
flex: 1;
|
||||||
|
padding: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
main span {
|
main div {
|
||||||
font-size: var(--size-4);
|
background: var(--black-2);
|
||||||
color: var(--white-1);
|
border: solid 1px var(--black-3);
|
||||||
}
|
padding: 6px;
|
||||||
|
margin: 15px 0;
|
||||||
table {
|
|
||||||
box-shadow: var(--box-shadow);
|
|
||||||
background: var(--black-3);
|
|
||||||
border-collapse: collapse;
|
|
||||||
font-size: var(--size-3);
|
|
||||||
margin: 30px 0 30px 0;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
tr,
|
|
||||||
th,
|
|
||||||
td {
|
|
||||||
color: white;
|
|
||||||
background: var(--dark-two);
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
td,
|
|
||||||
th {
|
|
||||||
font-size: var(--size-4);
|
|
||||||
border: solid 1px var(--black-4);
|
|
||||||
padding: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
th {
|
|
||||||
font-weight: 1000;
|
|
||||||
}
|
|
||||||
|
|
||||||
td {
|
|
||||||
color: var(--white-2);
|
|
||||||
font-weight: 400;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
|
@@ -1,15 +1,9 @@
|
|||||||
import { api_get_services } from "$lib/api.js";
|
import api from "$lib/api.js";
|
||||||
|
|
||||||
export async function load({ fetch }) {
|
export async function load({ fetch }) {
|
||||||
try {
|
let services = await api.services(fetch);
|
||||||
let services = await api_get_services(fetch);
|
|
||||||
return {
|
return {
|
||||||
services: null === services ? [] : services,
|
services: null === services ? [] : services,
|
||||||
error: "",
|
};
|
||||||
};
|
|
||||||
} catch (err) {
|
|
||||||
return {
|
|
||||||
error: err.toString(),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -1,100 +1,65 @@
|
|||||||
<script>
|
<script>
|
||||||
import Service from "$lib/service.svelte";
|
import Navbar from "$components/navbar.svelte";
|
||||||
import Header from "$lib/header.svelte";
|
import Footer from "$components/footer.svelte";
|
||||||
import Error from "$lib/error.svelte";
|
import Header from "$components/header.svelte";
|
||||||
import Link from "$lib/link.svelte";
|
import Service from "$components/service.svelte";
|
||||||
import Head from "$lib/head.svelte";
|
import Head from "$components/head.svelte";
|
||||||
|
import Card from "$components/card.svelte";
|
||||||
import { api_urljoin } from "$lib/api.js";
|
|
||||||
import { locale, _ } from "svelte-i18n";
|
|
||||||
import { onMount } from "svelte";
|
|
||||||
|
|
||||||
|
import { locale, _ } from "$lib/locale.js";
|
||||||
|
import api from "$lib/api.js";
|
||||||
let { data } = $props();
|
let { data } = $props();
|
||||||
let services = $state(data.services);
|
|
||||||
let show_input = $state(false);
|
|
||||||
|
|
||||||
function change(input) {
|
// filtered list of services that have descriptions for the current locale
|
||||||
let value = input.target.value.toLowerCase();
|
let services = $derived(
|
||||||
services = [];
|
data.services.filter(
|
||||||
|
s =>
|
||||||
if (value === "") {
|
s.desc[$locale.code] !== "" &&
|
||||||
services = data.services;
|
s.desc[$locale.code] !== null &&
|
||||||
return;
|
s.desc[$locale.code] !== undefined
|
||||||
}
|
)
|
||||||
|
);
|
||||||
data.services.forEach((s) => {
|
|
||||||
if (s.name.toLowerCase().includes(value)) services.push(s);
|
|
||||||
else if (s.desc[$locale].toLowerCase().includes(value)) services.push(s);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function get_services() {
|
|
||||||
return services.filter((s) => {
|
|
||||||
return s.desc[$locale] !== "" && s.desc[$locale] !== null && s.desc[$locale] !== undefined;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
onMount(() => {
|
|
||||||
show_input = true;
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Head title="services" desc="my self-hosted services and projects" />
|
<Head title="services" desc="my self-hosted services and projects" />
|
||||||
|
<Navbar />
|
||||||
<Header picture="cool" title={$_("services.title")} />
|
<Header picture="cool" title={$_("services.title")} />
|
||||||
|
<main>
|
||||||
{#if data.error.length !== 0}
|
<Card>
|
||||||
<Error error={data.error} />
|
<p>{@html $_("services.desc")}</p>
|
||||||
{:else}
|
<br />
|
||||||
<main>
|
<p>
|
||||||
<div class="title">
|
{@html $_("services.feed", {
|
||||||
{#if show_input}
|
links: [api.join("/news/" + $locale.code)],
|
||||||
<input oninput={change} type="text" placeholder={$_("services.search")} />
|
})}
|
||||||
{/if}
|
</p>
|
||||||
<div>
|
</Card>
|
||||||
<Link icon="nf-fa-feed" link={api_urljoin("/news/" + $locale)}>{$_("services.feed")}</Link>
|
<div class="services">
|
||||||
</div>
|
{#if services.length === 0}
|
||||||
</div>
|
<h3>{$_("services.none")}</h3>
|
||||||
<div class="services">
|
{:else}
|
||||||
{#if get_services().length == 0}
|
{#each services as service}
|
||||||
<h3 class="none">{$_("services.none")}</h3>
|
<Service {service} />
|
||||||
{:else}
|
{/each}
|
||||||
{#each get_services() as service}
|
{/if}
|
||||||
<Service {service} />
|
</div>
|
||||||
{/each}
|
</main>
|
||||||
{/if}
|
<Footer />
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
main {
|
main {
|
||||||
padding: 50px;
|
background: var(--black-1);
|
||||||
text-align: right;
|
flex: 1;
|
||||||
}
|
padding: 40px;
|
||||||
|
|
||||||
main .title {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
main .none {
|
|
||||||
color: var(--white-3);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main .services {
|
main .services {
|
||||||
margin-top: 20px;
|
margin-top: 15px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
gap: 28px;
|
gap: 28px;
|
||||||
}
|
color: var(--white-3);
|
||||||
|
|
||||||
@media only screen and (max-width: 1200px) {
|
|
||||||
main .services {
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
@@ -1,11 +0,0 @@
|
|||||||
@keyframes blink {
|
|
||||||
0% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes cursor {
|
|
||||||
to {
|
|
||||||
border-color: transparent;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,7 +0,0 @@
|
|||||||
@font-face {
|
|
||||||
font-family: "Ubuntu";
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: 300;
|
|
||||||
font-display: swap;
|
|
||||||
src: url("/assets/ubuntu.woff2") format("woff2");
|
|
||||||
}
|
|
@@ -1,32 +1,26 @@
|
|||||||
/*
|
/* global CSS file, imported in every page, defines commonly used color, effects
|
||||||
|
* etc. also defines styles for commonly used elements */
|
||||||
* animations.css: stuff like the cursor animation
|
|
||||||
* webfont.css: webfont dumped from https://www.nerdfonts.com/assets/css/webfont.css
|
|
||||||
* font.css: the main font (Ubuntu)
|
|
||||||
|
|
||||||
*/
|
|
||||||
@import "./animations.css";
|
|
||||||
@import "./nerdfonts.css";
|
|
||||||
@import "./font.css";
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
|
/* randomly selected colors */
|
||||||
--yellow: #d3b910;
|
--yellow: #d3b910;
|
||||||
--cyan: #0dd2e8;
|
--cyan: #0dd2e8;
|
||||||
--green: #06e00a;
|
--green: #06e00a;
|
||||||
--pinkish: #d506e0;
|
--pinkish: #d506e0;
|
||||||
--red: #e8180d;
|
--red: #e8180d;
|
||||||
--blue: #2036f9;
|
--blue: #3768fc;
|
||||||
|
|
||||||
|
/* white tones */
|
||||||
--white-1: #ffffff;
|
--white-1: #ffffff;
|
||||||
--white-2: #bfbfbf;
|
--white-2: #bfbfbf;
|
||||||
--white-3: #5f5f5f;
|
--white-3: #5f5f5f;
|
||||||
--white-4: #0f0f0f;
|
|
||||||
|
|
||||||
|
/* black tones */
|
||||||
--black-1: #000000;
|
--black-1: #000000;
|
||||||
--black-2: #050505;
|
--black-2: #111;
|
||||||
--black-3: #111111;
|
--black-3: #3a3b3c;
|
||||||
--black-4: #3a3b3c;
|
|
||||||
|
|
||||||
|
/* different sizes */
|
||||||
--size-1: 8px;
|
--size-1: 8px;
|
||||||
--size-2: 16px;
|
--size-2: 16px;
|
||||||
--size-3: 18px;
|
--size-3: 18px;
|
||||||
@@ -34,14 +28,39 @@
|
|||||||
--size-5: 24px;
|
--size-5: 24px;
|
||||||
--size-6: 30px;
|
--size-6: 30px;
|
||||||
|
|
||||||
--box-shadow-1: rgba(20, 20, 20, 0.19) 0px 10px 20px, rgba(30, 30, 30, 0.23) 0px 6px 6px;
|
/* shadows */
|
||||||
--box-shadow-2: rgba(0, 0, 0, 0.35) 0px 30px 60px -12px inset,
|
--box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
|
||||||
rgba(20, 20, 20, 0.3) 0px 18px 36px -18px inset;
|
--text-shadow: 0 1px 5px rgba(255, 255, 255, 0.15);
|
||||||
|
|
||||||
--text-shadow: 3px 2px 8px rgba(50, 50, 50, 0.8);
|
/* backgrounds */
|
||||||
--background: linear-gradient(rgba(11, 11, 11, 0.808), rgba(1, 1, 1, 0.96)),
|
--transparent: linear-gradient(rgba(11, 11, 11, 0.808), rgba(1, 1, 1, 0.96));
|
||||||
url("/assets/banner.png");
|
--glass: rgba(1, 1, 1, 0.93);
|
||||||
--profile-size: 220px;
|
|
||||||
|
/* fonts */
|
||||||
|
--monospace:
|
||||||
|
ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono,
|
||||||
|
monospace;
|
||||||
|
--sans-serif:
|
||||||
|
-apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica,
|
||||||
|
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
||||||
|
--emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
|
}
|
||||||
|
|
||||||
|
/* cursor blink animation */
|
||||||
|
@keyframes blink {
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* typing animation */
|
||||||
|
@keyframes typing {
|
||||||
|
from {
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
@@ -54,11 +73,14 @@ html {
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: var(--black-1);
|
font-family: var(--sans-serif);
|
||||||
font-family: "Ubuntu", sans-serif;
|
background-image: url("/assets/banner.png");
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
|
|
||||||
|
line-height: 1.5;
|
||||||
|
font-size: var(--size-3);
|
||||||
}
|
}
|
||||||
|
|
||||||
::selection {
|
::selection {
|
||||||
@@ -81,36 +103,24 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
font-weight: 900;
|
color: var(--white-2);
|
||||||
color: var(--white-1);
|
font-weight: 600;
|
||||||
text-decoration: none;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
text-decoration: underline;
|
||||||
|
text-decoration-color: var(--white-2);
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: underline;
|
color: var(--white-1);
|
||||||
text-shadow: var(--text-shadow);
|
text-shadow: var(--text-shadow);
|
||||||
}
|
}
|
||||||
|
|
||||||
i .nf {
|
|
||||||
font-weight: 900;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
list-style: inside;
|
list-style: inside;
|
||||||
margin: 12px 0 12px 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
li + li {
|
br {
|
||||||
margin-top: 10px;
|
display: block;
|
||||||
}
|
margin: 5px 0;
|
||||||
|
|
||||||
input {
|
|
||||||
background: var(--black-3);
|
|
||||||
border: none;
|
|
||||||
outline: none;
|
|
||||||
font-size: var(--size-4);
|
|
||||||
padding: 10px;
|
|
||||||
border: solid 1px var(--black-4);
|
|
||||||
color: var(--white-1);
|
|
||||||
}
|
}
|
||||||
|
@@ -1,15 +1,21 @@
|
|||||||
|
/* modified version of github-markdown-css, the dark version
|
||||||
|
* licensed under MIT, see: https://github.com/sindresorhus/github-markdown-css
|
||||||
|
*/
|
||||||
|
|
||||||
.markdown-body {
|
.markdown-body {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
-ms-text-size-adjust: 100%;
|
-ms-text-size-adjust: 100%;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: #c9d1d9;
|
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial,
|
|
||||||
sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
color: var(--white-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-body br {
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdown-body .octicon {
|
.markdown-body .octicon {
|
||||||
@@ -60,10 +66,6 @@
|
|||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdown-body a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.markdown-body abbr[title] {
|
.markdown-body abbr[title] {
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
text-decoration: underline dotted;
|
text-decoration: underline dotted;
|
||||||
@@ -81,9 +83,9 @@
|
|||||||
.markdown-body h1 {
|
.markdown-body h1 {
|
||||||
margin: 0.67em 0;
|
margin: 0.67em 0;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
padding-bottom: 0.3em;
|
padding-bottom: 5px;
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
border-bottom: 1px solid #21262d;
|
border-bottom: 1px solid var(--black-3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdown-body mark {
|
.markdown-body mark {
|
||||||
@@ -286,17 +288,18 @@
|
|||||||
.markdown-body h4,
|
.markdown-body h4,
|
||||||
.markdown-body h5,
|
.markdown-body h5,
|
||||||
.markdown-body h6 {
|
.markdown-body h6 {
|
||||||
margin-top: 24px;
|
color: var(--white-1);
|
||||||
margin-bottom: 16px;
|
margin-top: 30px;
|
||||||
|
margin-bottom: 10px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
line-height: 1.25;
|
line-height: 1.25;
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdown-body h2 {
|
.markdown-body h2 {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
padding-bottom: 0.3em;
|
padding-bottom: 5px;
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
border-bottom: 1px solid #21262d;
|
border-bottom: 1px solid var(--black-3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdown-body h3 {
|
.markdown-body h3 {
|
||||||
@@ -358,28 +361,14 @@
|
|||||||
.markdown-body tt,
|
.markdown-body tt,
|
||||||
.markdown-body code,
|
.markdown-body code,
|
||||||
.markdown-body samp {
|
.markdown-body samp {
|
||||||
font-family:
|
font-family: var(--monospace);
|
||||||
ui-monospace,
|
|
||||||
SFMono-Regular,
|
|
||||||
SF Mono,
|
|
||||||
Menlo,
|
|
||||||
Consolas,
|
|
||||||
Liberation Mono,
|
|
||||||
monospace;
|
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdown-body pre {
|
.markdown-body pre {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
font-family:
|
font-family: var(--monospace);
|
||||||
ui-monospace,
|
|
||||||
SFMono-Regular,
|
|
||||||
SF Mono,
|
|
||||||
Menlo,
|
|
||||||
Consolas,
|
|
||||||
Liberation Mono,
|
|
||||||
monospace;
|
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
word-wrap: normal;
|
word-wrap: normal;
|
||||||
}
|
}
|
||||||
@@ -720,7 +709,7 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 85%;
|
font-size: 85%;
|
||||||
white-space: break-spaces;
|
white-space: break-spaces;
|
||||||
background: var(--black-3);
|
background: var(--black-2);
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -761,11 +750,13 @@
|
|||||||
|
|
||||||
.markdown-body .highlight pre,
|
.markdown-body .highlight pre,
|
||||||
.markdown-body pre {
|
.markdown-body pre {
|
||||||
padding: 16px;
|
padding: 10px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
font-size: 85%;
|
font-size: 85%;
|
||||||
line-height: 1.45;
|
line-height: 1.45;
|
||||||
background-color: var(--black-3);
|
|
||||||
|
background-color: var(--black-2);
|
||||||
|
border: solid 1px var(--black-3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdown-body pre code,
|
.markdown-body pre code,
|
||||||
@@ -979,7 +970,7 @@
|
|||||||
.markdown-body g-emoji {
|
.markdown-body g-emoji {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
min-width: 1ch;
|
min-width: 1ch;
|
||||||
font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
font-family: var(--emoji);
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
font-style: normal !important;
|
font-style: normal !important;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
@@ -1026,7 +1017,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.markdown-body .contains-task-list:hover .task-list-item-convert-container,
|
.markdown-body .contains-task-list:hover .task-list-item-convert-container,
|
||||||
.markdown-body .contains-task-list:focus-within .task-list-item-convert-container {
|
.markdown-body
|
||||||
|
.contains-task-list:focus-within
|
||||||
|
.task-list-item-convert-container {
|
||||||
display: block;
|
display: block;
|
||||||
width: auto;
|
width: auto;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
|
@@ -1,14 +1,13 @@
|
|||||||
//import adapter from '@sveltejs/adapter-auto';
|
|
||||||
import adapter from "@sveltejs/adapter-node";
|
import adapter from "@sveltejs/adapter-node";
|
||||||
|
|
||||||
/** @type {import('@sveltejs/kit').Config} */
|
/** @type {import('@sveltejs/kit').Config} */
|
||||||
const config = {
|
const config = {
|
||||||
kit: {
|
kit: {
|
||||||
adapter: adapter(),
|
adapter: adapter(),
|
||||||
|
alias: { $components: "src/components" },
|
||||||
},
|
},
|
||||||
onwarn: (warning, handler) => {
|
compilerOptions: {
|
||||||
if (warning.code === "a11y-click-events-have-key-events") return;
|
runes: true,
|
||||||
handler(warning);
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -22,7 +22,7 @@ function env_from(prefix, object) {
|
|||||||
|
|
||||||
const default_env = {
|
const default_env = {
|
||||||
source_url: "https://git.ngn.tf/ngn/website",
|
source_url: "https://git.ngn.tf/ngn/website",
|
||||||
report_url: "https://git.ngn.tf/ngn/website/issues",
|
report_url: "mailto:ngn@ngn.tf",
|
||||||
doc_url: "http://localhost:7003",
|
doc_url: "http://localhost:7003",
|
||||||
api: {
|
api: {
|
||||||
url: "http://localhost:7002",
|
url: "http://localhost:7002",
|
||||||
|
Before Width: | Height: | Size: 156 KiB |
Before Width: | Height: | Size: 111 KiB |
@@ -81,7 +81,7 @@ BreakBeforeTernaryOperators: true
|
|||||||
BreakConstructorInitializers: BeforeColon
|
BreakConstructorInitializers: BeforeColon
|
||||||
BreakInheritanceList: BeforeColon
|
BreakInheritanceList: BeforeColon
|
||||||
BreakStringLiterals: true
|
BreakStringLiterals: true
|
||||||
ColumnLimit: 120
|
ColumnLimit: 80
|
||||||
CommentPragmas: '^ IWYU pragma:'
|
CommentPragmas: '^ IWYU pragma:'
|
||||||
CompactNamespaces: false
|
CompactNamespaces: false
|
||||||
ConstructorInitializerIndentWidth: 4
|
ConstructorInitializerIndentWidth: 4
|
||||||
|
35
doc/.clang-tidy
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
# "gnu-zero-variadic-macro-arguments" ignored because we are using GNU99
|
||||||
|
# standart
|
||||||
|
|
||||||
|
# "clang-diagnostic-language-extension-token" is ignored because we need the
|
||||||
|
# asm() extension token
|
||||||
|
|
||||||
|
# "DeprecatedOrUnsafeBufferHandling" ignored because C11 "_s" functions are not
|
||||||
|
# secure either
|
||||||
|
Checks: >-
|
||||||
|
clang-diagnostic-*,
|
||||||
|
-clang-diagnostic-gnu-zero-variadic-macro-arguments,
|
||||||
|
-clang-diagnostic-language-extension-token,
|
||||||
|
clang-analyzer-*,
|
||||||
|
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
|
||||||
|
portability-*,
|
||||||
|
performance-*,
|
||||||
|
WarningsAsErrors: '*'
|
||||||
|
HeaderFileExtensions:
|
||||||
|
- ''
|
||||||
|
- h
|
||||||
|
- hh
|
||||||
|
- hpp
|
||||||
|
- hxx
|
||||||
|
ImplementationFileExtensions:
|
||||||
|
- c
|
||||||
|
- cc
|
||||||
|
- cpp
|
||||||
|
- cxx
|
||||||
|
HeaderFilterRegex: '.*'
|
||||||
|
ExcludeHeaderFilterRegex: ''
|
||||||
|
FormatStyle: file
|
||||||
|
SystemHeaders: false
|
||||||
|
...
|
||||||
|
|
@@ -1,9 +1,9 @@
|
|||||||
FROM ghcr.io/ngn13/ctorm:1.7
|
FROM ghcr.io/ngn13/ctorm:1.8.1
|
||||||
|
|
||||||
WORKDIR /doc
|
WORKDIR /doc
|
||||||
|
|
||||||
COPY Makefile ./
|
COPY Makefile ./
|
||||||
COPY docs ./docs
|
COPY pages ./pages
|
||||||
COPY inc ./inc
|
COPY inc ./inc
|
||||||
COPY src ./src
|
COPY src ./src
|
||||||
|
|
||||||
|
@@ -26,10 +26,14 @@ $(DISTDIR)/%.o: src/%.c
|
|||||||
format:
|
format:
|
||||||
clang-format -i -style=file $(CSRCS) $(HSRCS)
|
clang-format -i -style=file $(CSRCS) $(HSRCS)
|
||||||
|
|
||||||
|
lint:
|
||||||
|
clang-tidy --warnings-as-errors --config= $(CSRCS) $(HSRCS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
rm -f *.elf
|
||||||
rm -rf $(DISTDIR)
|
rm -rf $(DISTDIR)
|
||||||
|
|
||||||
run:
|
run:
|
||||||
./doc.elf
|
./doc.elf
|
||||||
|
|
||||||
.PHONY: format clean run
|
.PHONY: format lint clean run
|
||||||
|
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"title": "privacy",
|
|
||||||
"desc": "Learn how I respect your privacy"
|
|
||||||
}
|
|
@@ -1,41 +0,0 @@
|
|||||||
As a privacy advocate myself I do my best to respect your privacy while simultaneously keeping my server safe. I also think it's
|
|
||||||
important to be transparent about this kind of stuff so I wrote this document to tell you how exactly I process or store your
|
|
||||||
information.
|
|
||||||
|
|
||||||
## DNS & SSL
|
|
||||||
Currently I use cloudflare's name servers, however cloudflare doesn't own my domain (I didn't purchase the domain from cloudflare)
|
|
||||||
nor it proxies any of the traffic. All of my records use the *DNS only*" mode, meaning they are just DNS records and they point
|
|
||||||
to my server, not cloudflare. This also means cloudflare doesn't control any of the SSL certificates. All the certificates are
|
|
||||||
stored on my server and they are created with Let's Encrypt. So I own the certificates and it's not possible for cloudlfare to
|
|
||||||
suddenly switch DNS records (it would break SSL).
|
|
||||||
|
|
||||||
## Usage metrics
|
|
||||||
I don't have any kind of request or traffic monitoring on my server. So no, your HTTP(S) requests or other network
|
|
||||||
connections are not processed to generate colorful graphs, pie charts and stuff.
|
|
||||||
|
|
||||||
You may have realized that in the bottom of this page there is total visitor number tracker. It is the only
|
|
||||||
usage/visitor metric tracking I have, which is implemented by website's API, which is free (as in freedom) so you can
|
|
||||||
go audit it's code yourself.
|
|
||||||
|
|
||||||
I want to make it clear that this metric tracker does not store any information about you or your HTTP(S) requests to
|
|
||||||
a database. It temporarily stores your IP address' SHA1 hash, in memory, so it doesn't recount the same visitor again
|
|
||||||
when they refresh the website or visit it multiple times in a short period of time. After a certain amount of requests,
|
|
||||||
your IP address' SHA1 hash will be removed from the memory and it will be replaced with a new visitor's SHA1 hash instead.
|
|
||||||
|
|
||||||
## Logs
|
|
||||||
All the HTTP(S) services are proxied with nginx, and nginx logs all of them to a file on the disk. This file (`access.log`)
|
|
||||||
is only readable by the root user, and it is contents are deleted every 4 hours (with `shred` to make sure it doesn't leave
|
|
||||||
anything on the disk). The logs include *only* the following information:
|
|
||||||
|
|
||||||
- Request time
|
|
||||||
- Requested host
|
|
||||||
- Requested path
|
|
||||||
- HTTP request method
|
|
||||||
- HTTP response code
|
|
||||||
|
|
||||||
This is the minimal information I need to trace any issues if something goes wrong, which is the main reason why I use
|
|
||||||
logging at all, to make it easier to find any issues.
|
|
||||||
|
|
||||||
## Data removal
|
|
||||||
If you want to remove any of your data from my server, [you can send me an email](mailto:ngn@ngn.tf). And yes this includes
|
|
||||||
removing usage metrics and logs.
|
|
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"title": "gizlilik",
|
|
||||||
"desc": "Gizliliğinize nasıl önem verdiğimi öğrenin"
|
|
||||||
}
|
|
@@ -1,40 +0,0 @@
|
|||||||
Kişisel olarak ben de bir gizlik savunucusu olduğumdan, bir yandan sunucumu güvende tutarken bir yandan da gizliliğinize önem
|
|
||||||
göstermek için elimden geleni yapıyorum. Aynı zamanda bu tarz şeyler hakkında şeffaf ve açık olmanın önemli olduğunu düşünüyorum,
|
|
||||||
o yüzden verilerinizi nasıl işlediğimi ya da depoladığımı anlamanız için bu dökümanı yazmaya karar verdim.
|
|
||||||
|
|
||||||
## DNS & SSL
|
|
||||||
Şuan cloudflare'in isim sunucularını kullanıyorum, ancak cloudflare alan adıma sahip değil (alan adımı cloudflare'den almadım)
|
|
||||||
ve aynı şekilde herhangi bir trafiğe vekillik etmiyor. Tüm DNS kayıtlarım *Sadece DNS* modunu kullanıyor, yani sadece
|
|
||||||
DNS kayıtlarından ibaretler ve benim sunucuma işaret ediyorlar, cloudflare'e değil. Bu aynı zamanda cloudflare SSL sertifikalarımı
|
|
||||||
kontrol etmiyor demek. Tüm sertifikalar benim sunucumda tutuluyor ve Let's Encrypt ile oluşturuldular. Yani sertifikalar bana ait
|
|
||||||
ve cloudflare'in aniden DNS kayıtlarını değiştirmesi mümkün değil (bu SSL'in bozulmasına sebep olur).
|
|
||||||
|
|
||||||
## Kullanım metrikleri
|
|
||||||
Sunucumda herhangi bir istek ya da trafik monitörlermesi yok. Yani hayır, HTTP(S) istekleriniz ya da diğer ağ
|
|
||||||
bağlantılarınız renki grafikler, pasta grafikleri gibi şeyler üretmek için işlenmiyor.
|
|
||||||
|
|
||||||
Bu sayfanın altında bir ziyaretçi sayısı takipçisi olduğunu farketmiş olabilirsiniz. Bu kullandığım tek kullanım/ziyaretçi
|
|
||||||
metrik takibi ve websitemin, özgür olan, bu yüzden kodunu kendiniz denetleyebileceğiniz API'ı ile implemente edildi.
|
|
||||||
|
|
||||||
Bu metrik takipçisinin, HTTP(S) istekleriniz hakkında herhangi bir veriyi bir veri tabanına kaydetmediğini belirtmek isterim.
|
|
||||||
Bu takipçi geçici olarak IP adresinizin SHA1 hash'ini bellekte tutuyor, bunun amacı aynı ziyaretçiyi sayfayı yenilediği zaman
|
|
||||||
ya da kısa bir süre için websitesini birden fazla kez ziyaret ettiği zaman tekrar saymayı önlemek. Belirli bir miktar istekten
|
|
||||||
sonra, IP adresinizin SHA1 hash'i bellekten kaldırılacaktır ve yeni bir ziyaretçinin SHA1'i onun yerine geçicektir.
|
|
||||||
|
|
||||||
## Kayıtlar
|
|
||||||
Tüm HTTP(S) servisleri nginx ile vekilleniyor, ve nginx hepsini disk üzerindeki bir dosyaya kaydediyor. Bu dosya (`access.log`)
|
|
||||||
sadece root kullanıcısı tarafından okunabilir, ve içerği her 4 saatde bir siliniyor (diskde veri kalmadığından emin olmak için
|
|
||||||
shred komutu ile). Kayıtlar *sadece* aşağıdaki bilgileri içeriyor:
|
|
||||||
|
|
||||||
- İstek zamanı
|
|
||||||
- İstenilen host
|
|
||||||
- İstenilen yol
|
|
||||||
- HTTP istek yöntemi
|
|
||||||
- HTTP cevap kodu
|
|
||||||
|
|
||||||
Bu birşeyler yanlış giderse sorunları bulmak için ihtiyacım olan en az bilgi, kayıt tutmamın ana sebeplerinden bir tanesi
|
|
||||||
zaten bu, sorunları bulmayı kolaylaştırmak.
|
|
||||||
|
|
||||||
## Veri silimi
|
|
||||||
Sunucumdan herhangi bir verinizi kaldırmak isterseniz, [bana bir email gönderebilirsiniz](mailto:ngn@ngn.tf). Ve evet buna
|
|
||||||
kullanım metrikleri ve kayıtlar dahil.
|
|
@@ -3,13 +3,13 @@
|
|||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
|
|
||||||
#include "util.h"
|
#include "file.h"
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
DIR *dir;
|
DIR *dir;
|
||||||
util_file_t *file;
|
file_t *file;
|
||||||
char name[NAME_MAX + 1];
|
char name[NAME_MAX + 1];
|
||||||
char *lang;
|
char *lang;
|
||||||
} docs_t;
|
} docs_t;
|
||||||
|
|
||||||
bool docs_init(docs_t *docs, char *dir);
|
bool docs_init(docs_t *docs, char *dir);
|
||||||
|
10
doc/inc/file.h
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#pragma once
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
char *content;
|
||||||
|
int64_t size;
|
||||||
|
} file_t;
|
||||||
|
|
||||||
|
file_t *file_load(int dirfd, char *path);
|
||||||
|
void file_free(file_t *file);
|
@@ -4,16 +4,8 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
typedef struct {
|
#define util_toupper(str) \
|
||||||
char *content;
|
for (char *c = str; *c != 0; c++) \
|
||||||
uint64_t size;
|
|
||||||
} util_file_t;
|
|
||||||
|
|
||||||
#define util_toupper(str) \
|
|
||||||
for (char *c = str; *c != 0; c++) \
|
|
||||||
*c = toupper(*c)
|
*c = toupper(*c)
|
||||||
uint64_t util_endswith(char *str, char *suf);
|
uint64_t util_endswith(char *str, char *suf);
|
||||||
void util_send(ctorm_res_t *res, uint16_t code, cJSON *json);
|
void util_send(ctorm_res_t *res, uint16_t code, cJSON *json);
|
||||||
util_file_t *util_file_load(int dirfd, char *path);
|
|
||||||
void util_file_free(util_file_t *file);
|
|
||||||
bool util_parse_doc_name(char *name, char **lang, const char *ext);
|
|
||||||
|
@@ -1,52 +1,64 @@
|
|||||||
My website's API, stores information about my self-hosted services, it also allows me
|
My website's API, stores information about my self-hosted services, it also
|
||||||
to publish news and updates about these services using an Atom feed and it keeps track
|
allows me to publish news and updates about these services using an Atom feed
|
||||||
of visitor metrics.
|
and it keeps track of visitor metrics.
|
||||||
|
|
||||||
This documentation contains information about all the available API endpoints. All the
|
This documentation contains information about all the available API endpoints.
|
||||||
endpoints can be accessed using the `/api` route.
|
All the endpoints can be accessed using the `/api` route.
|
||||||
|
|
||||||
## Version 1 Endpoints
|
## Version 1 Endpoints
|
||||||
|
|
||||||
Each version 1 endpoint, can be accessed using the `/v1` route.
|
Each version 1 endpoint, can be accessed using the `/v1` route.
|
||||||
|
|
||||||
All the endpoints return JSON formatted data.
|
All the endpoints return JSON formatted data.
|
||||||
|
|
||||||
### Errors
|
### Errors
|
||||||
If any error occurs, you will get a non-200 response. And the JSON data will have an
|
|
||||||
`error` key, which will contain information about the error that occured, in the
|
If any error occurs, you will get a non-200 response. And the JSON data will
|
||||||
string format. This is the only JSON key that will be set in non-200 responses.
|
have an `error` key, which will contain information about the error that
|
||||||
|
occured, in the string format. This is the only JSON key that will be set in
|
||||||
|
non-200 responses.
|
||||||
|
|
||||||
### Results
|
### Results
|
||||||
If no error occurs, `error` key will be set to an emtpy string (""). If the endpoint
|
|
||||||
returns any data, this will be stored using the `result` key. The `result` have a
|
If no error occurs, `error` key will be set to an emtpy string (""). If the
|
||||||
different expected type and a format for each endpoint.
|
endpoint returns any data, this will be stored using the `result` key. The
|
||||||
|
`result` have a different expected type and a format for each endpoint.
|
||||||
|
|
||||||
### Multilang
|
### Multilang
|
||||||
Some `result` formats may use a structure called "Multilang". This is a simple JSON
|
|
||||||
structure that includes one key for each supported language. The key is named after
|
Some `result` formats may use a structure called "Multilang". This is a simple
|
||||||
the language it represents. Currently only supported languages are:
|
JSON structure that includes one key for each supported language. The key is
|
||||||
|
named after the language it represents. Currently only supported languages are:
|
||||||
|
|
||||||
- English (`en`)
|
- English (`en`)
|
||||||
- Turkish (`tr`)
|
- Turkish (`tr`)
|
||||||
|
|
||||||
So each multilang structure, will have **at least** one of these keys.
|
So each multilang structure, will have **at least** one of these keys.
|
||||||
|
|
||||||
Here is an example multilang structure:
|
Here is an example multilang structure:
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"en": "Hello, world!",
|
"en": "Hello, world!",
|
||||||
"tr": "Merhaba, dünya!"
|
"tr": "Merhaba, dünya!"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
If a `result` field is using a multilang structure, it will be specified as "Multilang"
|
|
||||||
in the rest of the documentation.
|
If a `result` field is using a multilang structure, it will be specified as
|
||||||
|
"Multilang" in the rest of the documentation.
|
||||||
|
|
||||||
### Administrator routes
|
### Administrator routes
|
||||||
The endpoints under the `/v1/admin` route, are administrator-only routes. To access
|
|
||||||
these routes you'll need to specfiy a password using the `Authorization` header. If
|
The endpoints under the `/v1/admin` route, are administrator-only routes. To
|
||||||
the password you specify, matches with the password specified using the `API_PASSWORD`
|
access these routes you'll need to specfiy a password using the `Authorization`
|
||||||
environment variable, you will be able to access the route.
|
header. If the password you specify, matches with the password specified using
|
||||||
|
the `API_PASSWORD` environment variable, you will be able to access the route.
|
||||||
|
|
||||||
### GET /v1/services
|
### GET /v1/services
|
||||||
Returns a list of available services. Each service has the following JSON format:
|
|
||||||
|
Returns a list of available services. Each service has the following JSON
|
||||||
|
format:
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"name": "Test Service",
|
"name": "Test Service",
|
||||||
@@ -62,73 +74,91 @@ Returns a list of available services. Each service has the following JSON format
|
|||||||
"i2p": ""
|
"i2p": ""
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Where:
|
Where:
|
||||||
|
|
||||||
- `name`: Service name (string)
|
- `name`: Service name (string)
|
||||||
- `desc`: Service description (Multilang)
|
- `desc`: Service description (Multilang)
|
||||||
- `check_time`: Last time status check time for the service, set 0 if status checking is
|
- `check_time`: Last time status check time for the service, set 0 if status
|
||||||
not supported for this service/status checking is disabled (integer, UNIX timestamp)
|
checking is not supported for this service/status checking is disabled
|
||||||
|
(integer, UNIX timestamp)
|
||||||
- `check_res`: Last service status check result (integer)
|
- `check_res`: Last service status check result (integer)
|
||||||
* 0 if the service is down
|
- 0 if the service is down
|
||||||
* 1 if the service is up
|
- 1 if the service is up
|
||||||
* 2 if the service is up, but slow
|
- 2 if the service is up, but slow
|
||||||
* 3 if the service doesn't support status checking/status checking is disabled
|
- 3 if the service doesn't support status checking/status checking is disabled
|
||||||
- `check_url`: URL used for service's status check (string, empty if none)
|
- `check_url`: URL used for service's status check (string, empty if none)
|
||||||
- `clear`: Clearnet URL for the service (string, empty string if none)
|
- `clear`: Clearnet URL for the service (string, empty string if none)
|
||||||
- `onion`: Onion (TOR) URL for the service (string, empty string if none)
|
- `onion`: Onion (TOR) URL for the service (string, empty string if none)
|
||||||
- `i2p`: I2P URL for the service (string, empty string if none)
|
- `i2p`: I2P URL for the service (string, empty string if none)
|
||||||
|
|
||||||
You can also get information about a specific service by specifying it's name using
|
You can also get information about a specific service by specifying it's name
|
||||||
a URL query named `name`.
|
using a URL query named `name`.
|
||||||
|
|
||||||
### GET /v1/news/:language
|
### GET /v1/news/:language
|
||||||
Returns a Atom feed of news for the given language. Supports languages that are supported
|
|
||||||
by Multilang.
|
Returns a Atom feed of news for the given language. Supports languages that are
|
||||||
|
supported by Multilang.
|
||||||
|
|
||||||
### GET /v1/metrics
|
### GET /v1/metrics
|
||||||
|
|
||||||
Returns metrics about the API usage. The metric data has the following format:
|
Returns metrics about the API usage. The metric data has the following format:
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"since":1736294400,
|
"since": 1736294400,
|
||||||
"total":8
|
"total": 8
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Where:
|
Where:
|
||||||
|
|
||||||
- `since`: Metric collection start date (integer, UNIX timestamp)
|
- `since`: Metric collection start date (integer, UNIX timestamp)
|
||||||
- `total`: Total number of visitors (integer)
|
- `total`: Total number of visitors (integer)
|
||||||
|
|
||||||
### GET /v1/admin/logs
|
### GET /v1/admin/logs
|
||||||
|
|
||||||
Returns a list of administrator logs. Each log has the following JSON format:
|
Returns a list of administrator logs. Each log has the following JSON format:
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"action": "Added service \"Test Service\"",
|
"action": "Added service \"Test Service\"",
|
||||||
"time": 1735861794
|
"time": 1735861794
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Where:
|
Where:
|
||||||
|
|
||||||
- `action`: Action that the administrator performed (string)
|
- `action`: Action that the administrator performed (string)
|
||||||
- `time`: Time when the administrator action was performed (integer, UNIX timestamp)
|
- `time`: Time when the administrator action was performed (integer, UNIX
|
||||||
|
timestamp)
|
||||||
|
|
||||||
### PUT /v1/admin/service/add
|
### PUT /v1/admin/service/add
|
||||||
Creates a new service. The request body needs to contain JSON data, and it needs to
|
|
||||||
have the JSON format used to represent a service. See `/v1/services/all` route to
|
Creates a new service. The request body needs to contain JSON data, and it needs
|
||||||
see this format.
|
to have the JSON format used to represent a service. See `/v1/services/all`
|
||||||
|
route to see this format.
|
||||||
|
|
||||||
Returns no data on success.
|
Returns no data on success.
|
||||||
|
|
||||||
### DELETE /v1/admin/service/del
|
### DELETE /v1/admin/service/del
|
||||||
Deletes a service. The client needs to specify the name of the service to delete, by
|
|
||||||
setting the URL query `name`.
|
Deletes a service. The client needs to specify the name of the service to
|
||||||
|
delete, by setting the URL query `name`.
|
||||||
|
|
||||||
Returns no data on success.
|
Returns no data on success.
|
||||||
|
|
||||||
### GET /v1/admin/service/check
|
### GET /v1/admin/service/check
|
||||||
|
|
||||||
Forces a status check for all the services.
|
Forces a status check for all the services.
|
||||||
|
|
||||||
Returns no data on success.
|
Returns no data on success.
|
||||||
|
|
||||||
### PUT /v1/admin/news/add
|
### PUT /v1/admin/news/add
|
||||||
|
|
||||||
Creates a news post. The request body needs to contain JSON data, and it needs
|
Creates a news post. The request body needs to contain JSON data, and it needs
|
||||||
to use the following JSON format:
|
to use the following JSON format:
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"id": "test_news",
|
"id": "test_news",
|
||||||
@@ -143,7 +173,9 @@ to use the following JSON format:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Where:
|
Where:
|
||||||
|
|
||||||
- `id`: Unique ID for the news post (string)
|
- `id`: Unique ID for the news post (string)
|
||||||
- `title`: Title for the news post (Multilang)
|
- `title`: Title for the news post (Multilang)
|
||||||
- `author`: Author of the news post (string)
|
- `author`: Author of the news post (string)
|
||||||
@@ -152,7 +184,8 @@ Where:
|
|||||||
Returns no data on success.
|
Returns no data on success.
|
||||||
|
|
||||||
### DELETE /v1/admin/news/del
|
### DELETE /v1/admin/news/del
|
||||||
Deletes a news post. The client needs to specify the ID of the news post to delete,
|
|
||||||
by setting the URL query `id`.
|
Deletes a news post. The client needs to specify the ID of the news post to
|
||||||
|
delete, by setting the URL query `id`.
|
||||||
|
|
||||||
Returns no data on success.
|
Returns no data on success.
|
@@ -1,53 +1,64 @@
|
|||||||
Websitemin API, self-host edilen servisler hakkında bilgileri tutuyor, bu servisler hakkında
|
Websitemin API, self-host edilen servisler hakkında bilgileri tutuyor, bu
|
||||||
haberleri ve güncellemeleri bir Atom feed'i aracılığı ile paylaşmama izin veriyor ve ziyartçi
|
servisler hakkında haberleri ve güncellemeleri bir Atom feed'i aracılığı ile
|
||||||
metriklerini takip ediyor.
|
paylaşmama izin veriyor ve ziyartçi metriklerini takip ediyor.
|
||||||
|
|
||||||
Bu dökümentasyon tüm erişime açık API endpoint'leri hakkında bilgiler içeriyor. Tüm endpoint'lere
|
Bu dökümentasyon tüm erişime açık API endpoint'leri hakkında bilgiler içeriyor.
|
||||||
`/api` yolu ile erişilebilir.
|
Tüm endpoint'lere `/api` yolu ile erişilebilir.
|
||||||
|
|
||||||
## Versyion 1 Endpoint'leri
|
## Versyion 1 Endpoint'leri
|
||||||
|
|
||||||
Tüm versiyon 1 endpoint'leri `/v1` yolu ile erişilebilir.
|
Tüm versiyon 1 endpoint'leri `/v1` yolu ile erişilebilir.
|
||||||
|
|
||||||
Tüm endpoint'ler JSON ile formatlanmış veri döndürür.
|
Tüm endpoint'ler JSON ile formatlanmış veri döndürür.
|
||||||
|
|
||||||
### Hatalar
|
### Hatalar
|
||||||
|
|
||||||
Herhangi bir hata ortaya çıkarsa 200 dışı bir cevap alırsınız. Ve JSON verisinde
|
Herhangi bir hata ortaya çıkarsa 200 dışı bir cevap alırsınız. Ve JSON verisinde
|
||||||
bir `error` girdisi bulunur, bu ortaya çıkan hata hakkında gerekli bilgileri, metin formunda
|
bir `error` girdisi bulunur, bu ortaya çıkan hata hakkında gerekli bilgileri,
|
||||||
içerir. 200 dışı bir cevap aldığınızda tek JSON girdisi bu olacaktır.
|
metin formunda içerir. 200 dışı bir cevap aldığınızda tek JSON girdisi bu
|
||||||
|
olacaktır.
|
||||||
|
|
||||||
### Sonuçlar
|
### Sonuçlar
|
||||||
Eğer bir hata ortaya çıkmaz ise, `error` girdisi boş bir metin olarak ayarlanır ("").
|
|
||||||
Eğer endpoint herhangi bir veri döndürüyorsa, bu veri `result` giridisi ile sağlanır.
|
Eğer bir hata ortaya çıkmaz ise, `error` girdisi boş bir metin olarak ayarlanır
|
||||||
Her endpoint için `result` girdisinin tipi farklı olabilir.
|
(""). Eğer endpoint herhangi bir veri döndürüyorsa, bu veri `result` giridisi
|
||||||
|
ile sağlanır. Her endpoint için `result` girdisinin tipi farklı olabilir.
|
||||||
|
|
||||||
### Multilang
|
### Multilang
|
||||||
Bazı `result` formatları "Multilang" isimli bir yapıyı kullanabilir. Bu her desteklenen
|
|
||||||
dil için bir girdi bulunduran basit bir JSON yapısıdır. Her girdi ifade ettiği dil
|
Bazı `result` formatları "Multilang" isimli bir yapıyı kullanabilir. Bu her
|
||||||
ile isimlendirilir. Şuan tek desteklenen diller:
|
desteklenen dil için bir girdi bulunduran basit bir JSON yapısıdır. Her girdi
|
||||||
|
ifade ettiği dil ile isimlendirilir. Şuan tek desteklenen diller:
|
||||||
|
|
||||||
- English (`en`)
|
- English (`en`)
|
||||||
- Turkish (`tr`)
|
- Turkish (`tr`)
|
||||||
|
|
||||||
Yani her multilang yapısında, bu girdilerden **en az** bir tanesi bulunur.
|
Yani her multilang yapısında, bu girdilerden **en az** bir tanesi bulunur.
|
||||||
|
|
||||||
İşte örnek bir multilang yapısı:
|
İşte örnek bir multilang yapısı:
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"en": "Hello, world!",
|
"en": "Hello, world!",
|
||||||
"tr": "Merhaba, dünya!"
|
"tr": "Merhaba, dünya!"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
Bu dökümantasyonun geri kalanında, eğer bir `result` girdisi bir multilang yapısı kullanıyorsa,
|
|
||||||
"Multilang" olarak isimlendirilecek.
|
Bu dökümantasyonun geri kalanında, eğer bir `result` girdisi bir multilang
|
||||||
|
yapısı kullanıyorsa, "Multilang" olarak isimlendirilecek.
|
||||||
|
|
||||||
### Yönetici yolları
|
### Yönetici yolları
|
||||||
`/v1/admin` yolu altındaki endpoint'ler yöneticiye-özeldir. Bu yollara erişmek için,
|
|
||||||
`Authorization` header'ı aracılığı ile bir parola belirtmeniz gerekecektir. Eğer
|
`/v1/admin` yolu altındaki endpoint'ler yöneticiye-özeldir. Bu yollara erişmek
|
||||||
belritiğiniz parola `API_PASSWORD` ortam değişkeni ile belirtilen parola ile
|
için, `Authorization` header'ı aracılığı ile bir parola belirtmeniz
|
||||||
uyuşuyorsa, yola erişebilirsiniz.
|
gerekecektir. Eğer belritiğiniz parola `API_PASSWORD` ortam değişkeni ile
|
||||||
|
belirtilen parola ile uyuşuyorsa, yola erişebilirsiniz.
|
||||||
|
|
||||||
### GET /v1/services
|
### GET /v1/services
|
||||||
|
|
||||||
Erişilebilir servislerin bir listesini döndürür. Her servis şu JSON formatını
|
Erişilebilir servislerin bir listesini döndürür. Her servis şu JSON formatını
|
||||||
takip eder:
|
takip eder:
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"name": "Test Service",
|
"name": "Test Service",
|
||||||
@@ -63,74 +74,93 @@ takip eder:
|
|||||||
"i2p": ""
|
"i2p": ""
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Burada:
|
Burada:
|
||||||
|
|
||||||
- `name`: Servis ismi (metin)
|
- `name`: Servis ismi (metin)
|
||||||
- `desc`: Servis açıklaması (Multilang)
|
- `desc`: Servis açıklaması (Multilang)
|
||||||
- `check_time`: Servisin en son durumunun kontrol edildiği zaman, eğer bu servis için
|
- `check_time`: Servisin en son durumunun kontrol edildiği zaman, eğer bu servis
|
||||||
durum kontrolü desteklenmiyorsa/durum kontrolü devra dışı bırakılmış ise 0 olarak
|
için durum kontrolü desteklenmiyorsa/durum kontrolü devra dışı bırakılmış ise
|
||||||
ayarlanır (sayı, UNIX zaman damgası)
|
0 olarak ayarlanır (sayı, UNIX zaman damgası)
|
||||||
- `check_res`: En son servis durum kontrolünün sonucu (sayı)
|
- `check_res`: En son servis durum kontrolünün sonucu (sayı)
|
||||||
* servis kapalı ise 0
|
- servis kapalı ise 0
|
||||||
* servis çalışıyor ise 1
|
- servis çalışıyor ise 1
|
||||||
* serivs çalışıyor, ama yavaş ise 2
|
- serivs çalışıyor, ama yavaş ise 2
|
||||||
* bu servis için durum kontrolü desteklenmiyorsa/durum kontrolü devre dışı ise 3
|
- bu servis için durum kontrolü desteklenmiyorsa/durum kontrolü devre dışı ise
|
||||||
- `check_url`: Servis durum kontrolü için kullanılan URL (metin, yoksa boş metin)
|
3
|
||||||
|
- `check_url`: Servis durum kontrolü için kullanılan URL (metin, yoksa boş
|
||||||
|
metin)
|
||||||
- `clear`: Servisin açık ağ URL'si (metin, yoksa boş metin)
|
- `clear`: Servisin açık ağ URL'si (metin, yoksa boş metin)
|
||||||
- `onion`: Servisin Onion (TOR) URL'si (metin, yoksa boş metin)
|
- `onion`: Servisin Onion (TOR) URL'si (metin, yoksa boş metin)
|
||||||
- `i2p`: Servisin I2P URL'si (metin, yoksa boş metin)
|
- `i2p`: Servisin I2P URL'si (metin, yoksa boş metin)
|
||||||
|
|
||||||
`name` isimli bir URL sorgusu ile servisin ismini belirterek, spesifik bir servis hakkında
|
`name` isimli bir URL sorgusu ile servisin ismini belirterek, spesifik bir
|
||||||
bilgi de alabilirsiniz.
|
servis hakkında bilgi de alabilirsiniz.
|
||||||
|
|
||||||
### GET /v1/news/:language
|
### GET /v1/news/:language
|
||||||
Verilen dil için haberlerin bir Atom feed'i döndürür. Multilang tarafından desteklenen
|
|
||||||
dilleri destekler.
|
Verilen dil için haberlerin bir Atom feed'i döndürür. Multilang tarafından
|
||||||
|
desteklenen dilleri destekler.
|
||||||
|
|
||||||
### GET /v1/metrics
|
### GET /v1/metrics
|
||||||
|
|
||||||
API kullanımı hakkınadaki metrikleri döndürür. Metrik şu formatı kullanır:
|
API kullanımı hakkınadaki metrikleri döndürür. Metrik şu formatı kullanır:
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"since":1736294400,
|
"since": 1736294400,
|
||||||
"total":8
|
"total": 8
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Burada:
|
Burada:
|
||||||
|
|
||||||
- `since`: Metrik toplama başlangıç tarihi (sayı, UNIX zaman damgası)
|
- `since`: Metrik toplama başlangıç tarihi (sayı, UNIX zaman damgası)
|
||||||
- `total`: Toplam ziyaretçi sayısı (sayı)
|
- `total`: Toplam ziyaretçi sayısı (sayı)
|
||||||
|
|
||||||
### GET /v1/admin/logs
|
### GET /v1/admin/logs
|
||||||
Yönetici kayıtlarının bir listesini döndürür. Her kayıt şu JSON formatını takip eder:
|
|
||||||
|
Yönetici kayıtlarının bir listesini döndürür. Her kayıt şu JSON formatını takip
|
||||||
|
eder:
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"action": "Added service \"Test Service\"",
|
"action": "Added service \"Test Service\"",
|
||||||
"time": 1735861794
|
"time": 1735861794
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Burada:
|
Burada:
|
||||||
|
|
||||||
- `action`: Yöneticinin yaptığı eylem (metin)
|
- `action`: Yöneticinin yaptığı eylem (metin)
|
||||||
- `time`: Yönetici eylemin yapıldığı zaman (sayı, UNIX zaman damgası)
|
- `time`: Yönetici eylemin yapıldığı zaman (sayı, UNIX zaman damgası)
|
||||||
|
|
||||||
### PUT /v1/admin/service/add
|
### PUT /v1/admin/service/add
|
||||||
Yeni bir servis oluşturur. İstek gövdesinin servis için kullanılan JSON formatını
|
|
||||||
takip eden JSON verisini içermesi gerekir. Bu formatı görmek için `/v1/services/all`
|
Yeni bir servis oluşturur. İstek gövdesinin servis için kullanılan JSON
|
||||||
yoluna bakınız.
|
formatını takip eden JSON verisini içermesi gerekir. Bu formatı görmek için
|
||||||
|
`/v1/services/all` yoluna bakınız.
|
||||||
|
|
||||||
Başarılı ise herhangi bir veri döndürmez.
|
Başarılı ise herhangi bir veri döndürmez.
|
||||||
|
|
||||||
### DELETE /v1/admin/service/del
|
### DELETE /v1/admin/service/del
|
||||||
Bir servisi siler. İstemcinin `name` URL sorgusu ile silinecek servisin ismini belirtmesi
|
|
||||||
gerekir.
|
Bir servisi siler. İstemcinin `name` URL sorgusu ile silinecek servisin ismini
|
||||||
|
belirtmesi gerekir.
|
||||||
|
|
||||||
Başarılı ise herhangi bir veri döndürmez.
|
Başarılı ise herhangi bir veri döndürmez.
|
||||||
|
|
||||||
### GET /v1/admin/service/check
|
### GET /v1/admin/service/check
|
||||||
|
|
||||||
Tüm servisler için bir durum kontrolünü zorlar.
|
Tüm servisler için bir durum kontrolünü zorlar.
|
||||||
|
|
||||||
Başarılı ise herhangi bir veri döndürmez.
|
Başarılı ise herhangi bir veri döndürmez.
|
||||||
|
|
||||||
### PUT /v1/admin/news/add
|
### PUT /v1/admin/news/add
|
||||||
Yeni bir haber paylaşımı oluşturur. İstek gövedisinin JSOn verisi içermesi ve verilen formatı
|
|
||||||
takip etmesi gerekir:
|
Yeni bir haber paylaşımı oluşturur. İstek gövedisinin JSOn verisi içermesi ve
|
||||||
|
verilen formatı takip etmesi gerekir:
|
||||||
|
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"id": "test_news",
|
"id": "test_news",
|
||||||
@@ -145,7 +175,9 @@ takip etmesi gerekir:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Burada:
|
Burada:
|
||||||
|
|
||||||
- `id`: Haber paylaşımının benzersiz ID'si (metin)
|
- `id`: Haber paylaşımının benzersiz ID'si (metin)
|
||||||
- `title`: Haber paylaşımının başlığı (Multilang)
|
- `title`: Haber paylaşımının başlığı (Multilang)
|
||||||
- `author`: Haber paylaşımının yazarı (metin)
|
- `author`: Haber paylaşımının yazarı (metin)
|
||||||
@@ -154,7 +186,8 @@ Burada:
|
|||||||
Başarılı ise herhangi bir veri döndürmez.
|
Başarılı ise herhangi bir veri döndürmez.
|
||||||
|
|
||||||
### DELETE /v1/admin/news/del
|
### DELETE /v1/admin/news/del
|
||||||
Bir haber paylaşımı siler. İstemcinin `id` URL sorgusu ile silinecek paylaşımın ID'sini
|
|
||||||
belirtmesi gerekir.
|
Bir haber paylaşımı siler. İstemcinin `id` URL sorgusu ile silinecek paylaşımın
|
||||||
|
ID'sini belirtmesi gerekir.
|
||||||
|
|
||||||
Başarılı ise herhangi bir veri döndürmez.
|
Başarılı ise herhangi bir veri döndürmez.
|
4
doc/pages/privacy.en.json
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"title": "privacy",
|
||||||
|
"desc": "Privacy policy"
|
||||||
|
}
|
57
doc/pages/privacy.en.md
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
As a privacy advocate myself I do my best to respect your privacy while
|
||||||
|
simultaneously keeping my server safe. I also think it's important to be
|
||||||
|
transparent about this kind of stuff so I wrote this document to tell you how
|
||||||
|
exactly I process or store your information.
|
||||||
|
|
||||||
|
## DNS & SSL
|
||||||
|
|
||||||
|
Currently I use cloudflare's name servers, however cloudflare doesn't own my
|
||||||
|
domain (I didn't purchase the domain from cloudflare) nor it proxies any of the
|
||||||
|
traffic. All of my records use the _DNS only_" mode, meaning they are just DNS
|
||||||
|
records and they point to my server, not cloudflare. This also means cloudflare
|
||||||
|
doesn't control any of the SSL certificates. All the certificates are stored on
|
||||||
|
my server and they are created with Let's Encrypt. So I own the certificates and
|
||||||
|
it's not possible for cloudlfare to suddenly switch DNS records (it would break
|
||||||
|
SSL).
|
||||||
|
|
||||||
|
## Usage metrics
|
||||||
|
|
||||||
|
I don't have any kind of request or traffic monitoring on my server. So no, your
|
||||||
|
HTTP(S) requests or other network connections are not processed to generate
|
||||||
|
colorful graphs, pie charts and stuff.
|
||||||
|
|
||||||
|
You may have realized that in the bottom of this page there is total visitor
|
||||||
|
number tracker. It is the only usage/visitor metric tracking I have, which is
|
||||||
|
implemented by website's API, which is free (as in freedom) so you can go audit
|
||||||
|
it's code yourself.
|
||||||
|
|
||||||
|
I want to make it clear that this metric tracker does not store any information
|
||||||
|
about you or your HTTP(S) requests to a database. It temporarily stores your IP
|
||||||
|
address' SHA1 hash, in memory, so it doesn't recount the same visitor again when
|
||||||
|
they refresh the website or visit it multiple times in a short period of time.
|
||||||
|
After a certain amount of requests, your IP address' SHA1 hash will be removed
|
||||||
|
from the memory and it will be replaced with a new visitor's SHA1 hash instead.
|
||||||
|
|
||||||
|
## Logs
|
||||||
|
|
||||||
|
All the HTTP(S) services are proxied with nginx, and nginx logs all of them to a
|
||||||
|
file on the disk. This file (`access.log`) is only readable by the root user,
|
||||||
|
and it is contents are deleted every 4 hours (with `shred` to make sure it
|
||||||
|
doesn't leave anything on the disk). The logs include _only_ the following
|
||||||
|
information:
|
||||||
|
|
||||||
|
- Request time
|
||||||
|
- Requested host
|
||||||
|
- Requested path
|
||||||
|
- HTTP request method
|
||||||
|
- HTTP response code
|
||||||
|
|
||||||
|
This is the minimal information I need to trace any issues if something goes
|
||||||
|
wrong, which is the main reason why I use logging at all, to make it easier to
|
||||||
|
find any issues.
|
||||||
|
|
||||||
|
## Data removal
|
||||||
|
|
||||||
|
If you want to remove any of your data from my server,
|
||||||
|
[you can contact me](/#contact). And yes this includes removing usage metrics
|
||||||
|
and logs.
|
4
doc/pages/privacy.tr.json
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"title": "gizlilik",
|
||||||
|
"desc": "Gizlilik ilkesi"
|
||||||
|
}
|
59
doc/pages/privacy.tr.md
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
Kişisel olarak ben de bir gizlik savunucusu olduğumdan, bir yandan sunucumu
|
||||||
|
güvende tutarken bir yandan da gizliliğinize önem göstermek için elimden geleni
|
||||||
|
yapıyorum. Aynı zamanda bu tarz şeyler hakkında şeffaf ve açık olmanın önemli
|
||||||
|
olduğunu düşünüyorum, o yüzden verilerinizi nasıl işlediğimi ya da depoladığımı
|
||||||
|
anlamanız için bu dökümanı yazmaya karar verdim.
|
||||||
|
|
||||||
|
## DNS & SSL
|
||||||
|
|
||||||
|
Şuan cloudflare'in isim sunucularını kullanıyorum, ancak cloudflare alan adıma
|
||||||
|
sahip değil (alan adımı cloudflare'den almadım) ve aynı şekilde herhangi bir
|
||||||
|
trafiğe vekillik etmiyor. Tüm DNS kayıtlarım _Sadece DNS_ modunu kullanıyor,
|
||||||
|
yani sadece DNS kayıtlarından ibaretler ve benim sunucuma işaret ediyorlar,
|
||||||
|
cloudflare'e değil. Bu aynı zamanda cloudflare SSL sertifikalarımı kontrol
|
||||||
|
etmiyor demek. Tüm sertifikalar benim sunucumda tutuluyor ve Let's Encrypt ile
|
||||||
|
oluşturuldular. Yani sertifikalar bana ait ve cloudflare'in aniden DNS
|
||||||
|
kayıtlarını değiştirmesi mümkün değil (bu SSL'in bozulmasına sebep olur).
|
||||||
|
|
||||||
|
## Kullanım metrikleri
|
||||||
|
|
||||||
|
Sunucumda herhangi bir istek ya da trafik monitörlermesi yok. Yani hayır,
|
||||||
|
HTTP(S) istekleriniz ya da diğer ağ bağlantılarınız renki grafikler, pasta
|
||||||
|
grafikleri gibi şeyler üretmek için işlenmiyor.
|
||||||
|
|
||||||
|
Bu sayfanın altında bir ziyaretçi sayısı takipçisi olduğunu farketmiş
|
||||||
|
olabilirsiniz. Bu kullandığım tek kullanım/ziyaretçi metrik takibi ve
|
||||||
|
websitemin, özgür olan, bu yüzden kodunu kendiniz denetleyebileceğiniz API'ı ile
|
||||||
|
implemente edildi.
|
||||||
|
|
||||||
|
Bu metrik takipçisinin, HTTP(S) istekleriniz hakkında herhangi bir veriyi bir
|
||||||
|
veri tabanına kaydetmediğini belirtmek isterim. Bu takipçi geçici olarak IP
|
||||||
|
adresinizin SHA1 hash'ini bellekte tutuyor, bunun amacı aynı ziyaretçiyi sayfayı
|
||||||
|
yenilediği zaman ya da kısa bir süre için websitesini birden fazla kez ziyaret
|
||||||
|
ettiği zaman tekrar saymayı önlemek. Belirli bir miktar istekten sonra, IP
|
||||||
|
adresinizin SHA1 hash'i bellekten kaldırılacaktır ve yeni bir ziyaretçinin
|
||||||
|
SHA1'i onun yerine geçicektir.
|
||||||
|
|
||||||
|
## Kayıtlar
|
||||||
|
|
||||||
|
Tüm HTTP(S) servisleri nginx ile vekilleniyor, ve nginx hepsini disk üzerindeki
|
||||||
|
bir dosyaya kaydediyor. Bu dosya (`access.log`) sadece root kullanıcısı
|
||||||
|
tarafından okunabilir, ve içerği her 4 saatde bir siliniyor (diskde veri
|
||||||
|
kalmadığından emin olmak için shred komutu ile). Kayıtlar _sadece_ aşağıdaki
|
||||||
|
bilgileri içeriyor:
|
||||||
|
|
||||||
|
- İstek zamanı
|
||||||
|
- İstenilen host
|
||||||
|
- İstenilen yol
|
||||||
|
- HTTP istek yöntemi
|
||||||
|
- HTTP cevap kodu
|
||||||
|
|
||||||
|
Bu birşeyler yanlış giderse sorunları bulmak için ihtiyacım olan en az bilgi,
|
||||||
|
kayıt tutmamın ana sebeplerinden bir tanesi zaten bu, sorunları bulmayı
|
||||||
|
kolaylaştırmak.
|
||||||
|
|
||||||
|
## Veri silimi
|
||||||
|
|
||||||
|
Sunucumdan herhangi bir verinizi kaldırmak isterseniz,
|
||||||
|
[bana bir ulaşabilirsiniz](/#contact). Ve evet buna kullanım metrikleri ve
|
||||||
|
kayıtlar dahil.
|
@@ -11,22 +11,25 @@
|
|||||||
|
|
||||||
option_t options[] = {
|
option_t options[] = {
|
||||||
// name value requied
|
// name value requied
|
||||||
{"host", "0.0.0.0:7003", true }, // host the server should listen on
|
{"host", "0.0.0.0:7003", true }, // host the server should listen on
|
||||||
{"docs_dir", "./docs", true }, // documentation directory
|
{"dir", "./pages", true }, // documentation pages directory
|
||||||
{"", NULL, false},
|
{"", NULL, false},
|
||||||
};
|
};
|
||||||
|
|
||||||
bool config_load(config_t *conf) {
|
bool config_load(config_t *conf) {
|
||||||
bzero(conf, sizeof(*conf));
|
memset(conf, 0, sizeof(*conf));
|
||||||
|
|
||||||
char name_env[OPT_NAME_MAX + 10], name_copy[OPT_NAME_MAX], *value = NULL;
|
char name_env[OPT_NAME_MAX + 10], name_copy[OPT_NAME_MAX], *value = NULL;
|
||||||
conf->options = options;
|
conf->options = options;
|
||||||
|
|
||||||
for (option_t *opt = conf->options; opt->value != NULL; opt++, conf->count++) {
|
for (option_t *opt = conf->options; opt->value != NULL;
|
||||||
strcpy(name_copy, opt->name);
|
opt++, conf->count++) {
|
||||||
|
// convert option name to environment variable name
|
||||||
|
strncpy(name_copy, opt->name, OPT_NAME_MAX);
|
||||||
util_toupper(name_copy);
|
util_toupper(name_copy);
|
||||||
snprintf(name_env, sizeof(name_env), "WEBSITE_%s", name_copy);
|
snprintf(name_env, sizeof(name_env), "WEBSITE_%s", name_copy);
|
||||||
|
|
||||||
|
// attempt to load the value from the environment
|
||||||
if ((value = getenv(name_env)) != NULL)
|
if ((value = getenv(name_env)) != NULL)
|
||||||
opt->value = value;
|
opt->value = value;
|
||||||
|
|
||||||
@@ -36,7 +39,9 @@ bool config_load(config_t *conf) {
|
|||||||
if (!opt->required || NULL != opt->value)
|
if (!opt->required || NULL != opt->value)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
ctorm_fail("please specify a value for the required config option: %s (%s)", opt->name, name_env);
|
ctorm_fail("please specify a value for the required config option: %s (%s)",
|
||||||
|
opt->name,
|
||||||
|
name_env);
|
||||||
errno = EFAULT;
|
errno = EFAULT;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
#include <linux/limits.h>
|
#include <linux/limits.h>
|
||||||
|
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
#define DOCS_LANG_CODE_LEN 2
|
#define DOCS_LANG_CODE_LEN 2
|
||||||
|
|
||||||
bool __docs_parse_name(docs_t *docs, char *ext) {
|
bool _docs_parse_name(docs_t *docs, char *ext) {
|
||||||
// check the extension
|
// check the extension
|
||||||
uint64_t ext_pos = util_endswith(docs->name, ext);
|
uint64_t ext_pos = util_endswith(docs->name, ext);
|
||||||
|
|
||||||
@@ -22,7 +22,8 @@ bool __docs_parse_name(docs_t *docs, char *ext) {
|
|||||||
// example.en\0json\0
|
// example.en\0json\0
|
||||||
// |
|
// |
|
||||||
// `--- find this
|
// `--- find this
|
||||||
for (docs->lang = docs->name; *docs->lang != 0 && *docs->lang != '.'; docs->lang++)
|
for (docs->lang = docs->name; *docs->lang != 0 && *docs->lang != '.';
|
||||||
|
docs->lang++)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (*docs->lang != '.')
|
if (*docs->lang != '.')
|
||||||
@@ -39,11 +40,11 @@ bool __docs_parse_name(docs_t *docs, char *ext) {
|
|||||||
return strlen(docs->lang) == DOCS_LANG_CODE_LEN && *docs->name != 0;
|
return strlen(docs->lang) == DOCS_LANG_CODE_LEN && *docs->name != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void __docs_clean(docs_t *docs) {
|
void _docs_clean(docs_t *docs) {
|
||||||
if (NULL == docs->file)
|
if (NULL == docs->file)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
util_file_free(docs->file);
|
file_free(docs->file);
|
||||||
docs->file = NULL;
|
docs->file = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -53,7 +54,7 @@ bool docs_init(docs_t *docs, char *dir) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bzero(docs, sizeof(*docs));
|
memset(docs, 0, sizeof(*docs));
|
||||||
return NULL != (docs->dir = opendir(dir));
|
return NULL != (docs->dir = opendir(dir));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -64,15 +65,15 @@ char *docs_next(docs_t *docs, char *name, bool content) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct dirent *ent = NULL;
|
struct dirent *ent = NULL;
|
||||||
__docs_clean(docs);
|
_docs_clean(docs);
|
||||||
|
|
||||||
while (NULL != (ent = readdir(docs->dir))) {
|
while (NULL != (ent = readdir(docs->dir))) {
|
||||||
if (*ent->d_name == '.')
|
if (*ent->d_name == '.')
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
strcpy(docs->name, ent->d_name);
|
strncpy(docs->name, ent->d_name, NAME_MAX);
|
||||||
|
|
||||||
if (!__docs_parse_name(docs, content ? ".md" : ".json"))
|
if (!_docs_parse_name(docs, content ? ".md" : ".json"))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (NULL == name || strncmp(docs->name, name, NAME_MAX) == 0)
|
if (NULL == name || strncmp(docs->name, name, NAME_MAX) == 0)
|
||||||
@@ -84,7 +85,7 @@ char *docs_next(docs_t *docs, char *name, bool content) {
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (NULL == (docs->file = util_file_load(dirfd(docs->dir), ent->d_name)))
|
if (NULL == (docs->file = file_load(dirfd(docs->dir), ent->d_name)))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
return docs->file->content;
|
return docs->file->content;
|
||||||
@@ -99,8 +100,8 @@ void docs_free(docs_t *docs) {
|
|||||||
if (NULL == docs)
|
if (NULL == docs)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
__docs_clean(docs);
|
_docs_clean(docs);
|
||||||
closedir(docs->dir);
|
closedir(docs->dir);
|
||||||
|
|
||||||
bzero(docs, sizeof(*docs));
|
memset(docs, 0, sizeof(*docs));
|
||||||
}
|
}
|
||||||
|
56
doc/src/file.c
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
#include <sys/mman.h>
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
|
#include "file.h"
|
||||||
|
|
||||||
|
file_t *file_load(int dirfd, char *path) {
|
||||||
|
if (NULL == path) {
|
||||||
|
errno = EINVAL;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
file_t *file = NULL;
|
||||||
|
int fd = -1;
|
||||||
|
|
||||||
|
// open the taarget file
|
||||||
|
if ((fd = openat(dirfd, path, O_RDONLY)) < 0)
|
||||||
|
goto end; // errno set by open
|
||||||
|
|
||||||
|
// allocate a new file structure
|
||||||
|
if (NULL == (file = calloc(1, sizeof(file_t))))
|
||||||
|
goto end; // errno set by malloc
|
||||||
|
|
||||||
|
// calculate the file size
|
||||||
|
if ((file->size = lseek(fd, 0, SEEK_END)) < 0)
|
||||||
|
goto end;
|
||||||
|
|
||||||
|
// memory map the file
|
||||||
|
if (NULL ==
|
||||||
|
(file->content = mmap(0, file->size, PROT_READ, MAP_PRIVATE, fd, 0)))
|
||||||
|
goto end; // errno set by mmap
|
||||||
|
|
||||||
|
end:
|
||||||
|
if (fd != -1)
|
||||||
|
close(fd);
|
||||||
|
|
||||||
|
if (NULL != file && NULL == file->content) {
|
||||||
|
free(file);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return file;
|
||||||
|
}
|
||||||
|
|
||||||
|
void file_free(file_t *file) {
|
||||||
|
if (NULL == file)
|
||||||
|
return;
|
||||||
|
|
||||||
|
munmap(file->content, file->size);
|
||||||
|
free(file);
|
||||||
|
}
|
@@ -1,3 +1,4 @@
|
|||||||
|
#include <ctorm/app.h>
|
||||||
#include <ctorm/ctorm.h>
|
#include <ctorm/ctorm.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
@@ -19,25 +20,28 @@ int main() {
|
|||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// initialize the app config
|
||||||
ctorm_config_new(&app_config);
|
ctorm_config_new(&app_config);
|
||||||
app_config.disable_logging = true;
|
app_config.disable_logging = true;
|
||||||
app = ctorm_app_new(&app_config);
|
|
||||||
|
// create a new app
|
||||||
|
app = ctorm_app_new(&app_config);
|
||||||
|
|
||||||
// middlewares
|
// middlewares
|
||||||
MIDDLEWARE_ALL(app, "/*", route_cors);
|
ALL(app, "/*", route_cors);
|
||||||
MIDDLEWARE_ALL(app, "/*/*", route_cors);
|
ALL(app, "/*/*", route_cors);
|
||||||
|
|
||||||
// routes
|
// routes
|
||||||
GET(app, "/list", route_list);
|
GET(app, "/list", route_list);
|
||||||
GET(app, "/get/:name", route_get);
|
GET(app, "/get/:name", route_get);
|
||||||
|
|
||||||
ctorm_app_all(app, route_notfound);
|
ctorm_app_default(app, route_notfound);
|
||||||
ctorm_app_local(app, "config", &conf);
|
ctorm_app_local(app, "config", &conf);
|
||||||
|
|
||||||
ctorm_info("starting the web server on %s", host);
|
ctorm_info("starting the web server on %s", host);
|
||||||
|
|
||||||
if (!ctorm_app_run(app, host))
|
if (!ctorm_app_run(app, host))
|
||||||
ctorm_fail("failed to start the app: %s", ctorm_geterror());
|
ctorm_fail("failed to start the app: %s", ctorm_error());
|
||||||
|
|
||||||
ctorm_app_free(app);
|
ctorm_app_free(app);
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
|
@@ -3,7 +3,8 @@
|
|||||||
void route_cors(ctorm_req_t *req, ctorm_res_t *res) {
|
void route_cors(ctorm_req_t *req, ctorm_res_t *res) {
|
||||||
RES_SET("Access-Control-Allow-Origin", "*");
|
RES_SET("Access-Control-Allow-Origin", "*");
|
||||||
RES_SET("Access-Control-Allow-Headers",
|
RES_SET("Access-Control-Allow-Headers",
|
||||||
"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, accept, origin, Cache-Control, "
|
"Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, "
|
||||||
|
"Authorization, accept, origin, Cache-Control, "
|
||||||
"X-Requested-With");
|
"X-Requested-With");
|
||||||
RES_SET("Access-Control-Allow-Methods", "PUT, DELETE, GET");
|
RES_SET("Access-Control-Allow-Methods", "PUT, DELETE, GET");
|
||||||
}
|
}
|
||||||
|
@@ -1,31 +1,30 @@
|
|||||||
#include <cjson/cJSON.h>
|
|
||||||
#include <dirent.h>
|
|
||||||
#include <linux/limits.h>
|
#include <linux/limits.h>
|
||||||
|
#include <cjson/cJSON.h>
|
||||||
#include <ctorm/ctorm.h>
|
#include <ctorm/ctorm.h>
|
||||||
|
|
||||||
#include <string.h>
|
#include <dirent.h>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "routes.h"
|
#include "routes.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "util.h"
|
||||||
#include "docs.h"
|
#include "docs.h"
|
||||||
|
|
||||||
void route_get(ctorm_req_t *req, ctorm_res_t *res) {
|
void route_get(ctorm_req_t *req, ctorm_res_t *res) {
|
||||||
config_t *conf = REQ_LOCAL("config");
|
config_t *conf = REQ_LOCAL("config");
|
||||||
char *doc_name = REQ_PARAM("name");
|
char *name = REQ_PARAM("name");
|
||||||
char *docs_dir = config_get(conf, "docs_dir"), *doc_data = NULL;
|
char *dir = config_get(conf, "dir"), *doc_data = NULL;
|
||||||
cJSON *json = NULL, *doc_json = NULL;
|
cJSON *json = NULL, *doc_json = NULL;
|
||||||
docs_t docs;
|
docs_t docs;
|
||||||
|
|
||||||
if (NULL == doc_name) {
|
if (NULL == name) {
|
||||||
ctorm_fail("documentation name not specified (how did that even happend)");
|
ctorm_fail("documentation name not specified (how did that even happend)");
|
||||||
util_send(res, 500, NULL);
|
util_send(res, 500, NULL);
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!docs_init(&docs, docs_dir)) {
|
if (!docs_init(&docs, dir)) {
|
||||||
ctorm_fail("docs_init failed: %s", ctorm_geterror());
|
ctorm_fail("docs_init failed: %s", ctorm_error());
|
||||||
util_send(res, 500, NULL);
|
util_send(res, 500, NULL);
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
@@ -36,7 +35,7 @@ void route_get(ctorm_req_t *req, ctorm_res_t *res) {
|
|||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (NULL != (doc_data = docs_next(&docs, doc_name, false))) {
|
while (NULL != (doc_data = docs_next(&docs, name, false))) {
|
||||||
if (NULL == (doc_json = cJSON_Parse(doc_data))) {
|
if (NULL == (doc_json = cJSON_Parse(doc_data))) {
|
||||||
ctorm_fail("failed to parse JSON: %s (%s)", docs.name, docs.lang);
|
ctorm_fail("failed to parse JSON: %s (%s)", docs.name, docs.lang);
|
||||||
continue;
|
continue;
|
||||||
@@ -53,7 +52,7 @@ void route_get(ctorm_req_t *req, ctorm_res_t *res) {
|
|||||||
|
|
||||||
docs_reset(&docs);
|
docs_reset(&docs);
|
||||||
|
|
||||||
while (NULL != (doc_data = docs_next(&docs, doc_name, true))) {
|
while (NULL != (doc_data = docs_next(&docs, name, true))) {
|
||||||
if (NULL == (doc_json = cJSON_GetObjectItem(json, docs.lang)))
|
if (NULL == (doc_json = cJSON_GetObjectItem(json, docs.lang)))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
@@ -3,21 +3,21 @@
|
|||||||
#include <ctorm/ctorm.h>
|
#include <ctorm/ctorm.h>
|
||||||
|
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <string.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "routes.h"
|
#include "routes.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "util.h"
|
||||||
#include "docs.h"
|
#include "docs.h"
|
||||||
|
|
||||||
void route_list(ctorm_req_t *req, ctorm_res_t *res) {
|
void route_list(ctorm_req_t *req, ctorm_res_t *res) {
|
||||||
config_t *conf = REQ_LOCAL("config");
|
config_t *conf = REQ_LOCAL("config");
|
||||||
char *docs_dir = config_get(conf, "docs_dir"), *doc_data = NULL;
|
char *dir = config_get(conf, "dir"), *doc_data = NULL;
|
||||||
cJSON *array = NULL, *json = NULL, *doc_json = NULL;
|
cJSON *array = NULL, *json = NULL, *doc_json = NULL;
|
||||||
docs_t docs;
|
docs_t docs;
|
||||||
|
|
||||||
if (!docs_init(&docs, docs_dir)) {
|
if (!docs_init(&docs, dir)) {
|
||||||
ctorm_fail("docs_init failed: %s", ctorm_geterror());
|
ctorm_fail("docs_init failed: %s", ctorm_error());
|
||||||
util_send(res, 500, NULL);
|
util_send(res, 500, NULL);
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
@@ -31,7 +31,8 @@ void route_list(ctorm_req_t *req, ctorm_res_t *res) {
|
|||||||
while (NULL != (doc_data = docs_next(&docs, NULL, false))) {
|
while (NULL != (doc_data = docs_next(&docs, NULL, false))) {
|
||||||
if (NULL == (array = cJSON_GetObjectItem(json, docs.lang)) &&
|
if (NULL == (array = cJSON_GetObjectItem(json, docs.lang)) &&
|
||||||
NULL == (array = cJSON_AddArrayToObject(json, docs.lang))) {
|
NULL == (array = cJSON_AddArrayToObject(json, docs.lang))) {
|
||||||
ctorm_fail("failed to create an array object for the language %s", docs.lang);
|
ctorm_fail(
|
||||||
|
"failed to create an array object for the language %s", docs.lang);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,17 +1,8 @@
|
|||||||
#include <linux/limits.h>
|
#include <linux/limits.h>
|
||||||
#include <ctorm/ctorm.h>
|
#include <ctorm/ctorm.h>
|
||||||
|
|
||||||
#include <sys/mman.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <dirent.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
#include <errno.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
@@ -57,45 +48,3 @@ void util_send(ctorm_res_t *res, uint16_t code, cJSON *json) {
|
|||||||
|
|
||||||
RES_JSON(json);
|
RES_JSON(json);
|
||||||
}
|
}
|
||||||
|
|
||||||
util_file_t *util_file_load(int dirfd, char *path) {
|
|
||||||
if (NULL == path) {
|
|
||||||
errno = EINVAL;
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
util_file_t *file = NULL;
|
|
||||||
struct stat buf;
|
|
||||||
int fd = -1;
|
|
||||||
|
|
||||||
if (NULL == (file = malloc(sizeof(util_file_t))))
|
|
||||||
goto end; // errno set by malloc
|
|
||||||
|
|
||||||
if ((fd = openat(dirfd, path, O_RDONLY)) < 0)
|
|
||||||
goto end; // errno set by open
|
|
||||||
|
|
||||||
if (fstat(fd, &buf) < 0)
|
|
||||||
goto end; // errno set by fstat
|
|
||||||
|
|
||||||
if (NULL == (file->content = mmap(0, (file->size = buf.st_size), PROT_READ, MAP_PRIVATE, fd, 0)))
|
|
||||||
goto end; // errno set by mmap
|
|
||||||
|
|
||||||
end:
|
|
||||||
if (fd != -1)
|
|
||||||
close(fd);
|
|
||||||
|
|
||||||
if (NULL == file->content) {
|
|
||||||
free(file);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
return file;
|
|
||||||
}
|
|
||||||
|
|
||||||
void util_file_free(util_file_t *file) {
|
|
||||||
if (NULL == file)
|
|
||||||
return;
|
|
||||||
|
|
||||||
munmap(file->content, file->size);
|
|
||||||
free(file);
|
|
||||||
}
|
|
||||||
|