Compare commits
24 Commits
astro/setu
...
44437c766b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
44437c766b | ||
|
|
a5bc93f4d6 | ||
|
|
52d8102d67 | ||
|
|
8f2e3bcde1 | ||
|
|
f5c25dea75 | ||
|
|
4d220e1be7 | ||
|
|
3317926f61 | ||
|
|
4d56dce1af | ||
|
|
2411c6fdc8 | ||
|
|
a1b202686f | ||
|
|
8f0ede76f8 | ||
|
|
f971e84f17 | ||
|
|
640097c072 | ||
|
|
b62865cf04 | ||
|
|
403f8146d9 | ||
|
|
dc22676254 | ||
|
|
5ac9285248 | ||
|
|
e23c077a05 | ||
|
|
f914b7db1c | ||
|
|
770198bb5b | ||
|
|
025a84b2ef | ||
|
|
5caf0424cc | ||
|
|
3865b4b089 | ||
| 231b8cddc3 |
2
astro/.env.example
Normal file
2
astro/.env.example
Normal file
@@ -0,0 +1,2 @@
|
||||
DIRECTUS_URL="https://"
|
||||
DIRECTUS_TOKEN=""
|
||||
@@ -1,14 +1,14 @@
|
||||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
|
||||
import preact from '@astrojs/preact';
|
||||
import tailwindcss from '@tailwindcss/vite';
|
||||
import graphql from '@rollup/plugin-graphql';
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
integrations: [preact()],
|
||||
|
||||
vite: {
|
||||
plugins: [tailwindcss()]
|
||||
plugins: [tailwindcss(), graphql()]
|
||||
}
|
||||
});
|
||||
1945
astro/package-lock.json
generated
1945
astro/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -11,11 +11,14 @@
|
||||
"dependencies": {
|
||||
"@astrojs/preact": "^4.1.3",
|
||||
"@directus/sdk": "^21.2.0",
|
||||
"@rollup/plugin-graphql": "^2.0.5",
|
||||
"@tailwindcss/vite": "^4.2.1",
|
||||
"astro": "^5.17.1",
|
||||
"mdast-util-to-string": "^4.0.0",
|
||||
"minify-xml": "^4.5.2",
|
||||
"preact": "^10.28.4",
|
||||
"reading-time": "^1.5.0",
|
||||
"tailwindcss": "^4.2.1"
|
||||
"tailwindcss": "^4.2.1",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
}
|
||||
|
||||
72
astro/src/content/blogs/blogs.ts
Normal file
72
astro/src/content/blogs/blogs.ts
Normal file
@@ -0,0 +1,72 @@
|
||||
import { createDirectusConnection } from "@/lib/directus";
|
||||
import { print } from 'graphql';
|
||||
import getBlogs from '@/graphql/blogs/getBlogs.graphql';
|
||||
import { formatDate } from "@/lib/dates";
|
||||
|
||||
export async function getAllBlogs(settings: GlobalSettings): Promise<BlogPost[]> {
|
||||
const client = await createDirectusConnection();
|
||||
const result = await client.query(print(getBlogs), {
|
||||
date: formatDate(new Date(), "%Y-%M-%D")
|
||||
});
|
||||
|
||||
let blogs: BlogPost[] = [];
|
||||
|
||||
result["Blogs"].forEach((blogRecord: any) => {
|
||||
let dates: string[] = [
|
||||
settings.blog.lastModified.toISOString(),
|
||||
settings.website.lastModified.toISOString(),
|
||||
blogRecord["date_created"],
|
||||
blogRecord["date_updated"],
|
||||
blogRecord["search_engine"][0]["date_created"],
|
||||
blogRecord["search_engine"][0]["date_updated"],
|
||||
blogRecord["search_engine"][0]["thumbnail"]["created_on"]
|
||||
];
|
||||
|
||||
const blog: BlogPost = {
|
||||
lastModified: new Date(),
|
||||
title: blogRecord["title"],
|
||||
content: blogRecord["content"],
|
||||
date: blogRecord["date"],
|
||||
url: blogRecord["url"],
|
||||
searchEngine: {
|
||||
title: blogRecord["search_engine"][0]["title"],
|
||||
description: blogRecord["search_engine"][0]["description"],
|
||||
allowCrawlers: blogRecord["search_engine"][0]["allow_crawler"],
|
||||
canonical: blogRecord["search_engine"][0]["canonical"],
|
||||
priority: blogRecord["search_engine"][0]["priority"],
|
||||
thumbnail: {
|
||||
url: blogRecord["search_engine"][0]["thumbnail"]["filename_disk"],
|
||||
height: blogRecord["search_engine"][0]["thumbnail"]["height"],
|
||||
width: blogRecord["search_engine"][0]["thumbnail"]["width"]
|
||||
}
|
||||
},
|
||||
tags: []
|
||||
};
|
||||
|
||||
blogRecord["tags"].forEach((tagRecord: any) => {
|
||||
blog["tags"].push({
|
||||
text: tagRecord["Tags_id"]["text"],
|
||||
code: tagRecord["Tags_id"]["code"],
|
||||
color: tagRecord["Tags_id"]["color"]
|
||||
});
|
||||
|
||||
dates.push(tagRecord["Tags_id"]["date_created"]);
|
||||
dates.push(tagRecord["Tags_id"]["date_updated"]);
|
||||
});
|
||||
|
||||
if (dates.filter(e => e !== null).length === 0) {
|
||||
blog.lastModified = new Date();
|
||||
}
|
||||
else {
|
||||
const sortedDates: string[] = dates.sort((a: string, b: string) => {
|
||||
return new Date(b).getTime() - new Date(a).getTime();
|
||||
});
|
||||
|
||||
blog.lastModified = new Date(sortedDates[0]);
|
||||
}
|
||||
|
||||
blogs.push(blog);
|
||||
});
|
||||
|
||||
return blogs;
|
||||
}
|
||||
73
astro/src/content/projects/projects.ts
Normal file
73
astro/src/content/projects/projects.ts
Normal file
@@ -0,0 +1,73 @@
|
||||
import { formatDate } from "@/lib/dates";
|
||||
import { createDirectusConnection } from "@/lib/directus";
|
||||
import { print } from "graphql";
|
||||
import getProjects from '@/graphql/projects/getProjects.graphql';
|
||||
|
||||
|
||||
export async function getAllProjects(settings: GlobalSettings): Promise<ProjectPost[]> {
|
||||
const client = await createDirectusConnection();
|
||||
const result = await client.query(print(getProjects), {
|
||||
date: formatDate(new Date(), "%Y-%M-%D")
|
||||
});
|
||||
|
||||
let projects: ProjectPost[] = [];
|
||||
|
||||
result["Projects"].forEach((projectRecord: any) => {
|
||||
let dates: string[] = [
|
||||
settings.project.lastModified.toISOString(),
|
||||
settings.website.lastModified.toISOString(),
|
||||
projectRecord["date_created"],
|
||||
projectRecord["date_updated"],
|
||||
projectRecord["search_engine"][0]["date_created"],
|
||||
projectRecord["search_engine"][0]["date_updated"],
|
||||
projectRecord["search_engine"][0]["thumbnail"]["created_on"]
|
||||
];
|
||||
|
||||
const project: ProjectPost = {
|
||||
lastModified: new Date(),
|
||||
title: projectRecord["title"],
|
||||
content: projectRecord["content"],
|
||||
date: projectRecord["date"],
|
||||
url: projectRecord["url"],
|
||||
searchEngine: {
|
||||
title: projectRecord["search_engine"][0]["title"],
|
||||
description: projectRecord["search_engine"][0]["description"],
|
||||
allowCrawlers: projectRecord["search_engine"][0]["allow_crawler"],
|
||||
canonical: projectRecord["search_engine"][0]["canonical"],
|
||||
priority: projectRecord["search_engine"][0]["priority"],
|
||||
thumbnail: {
|
||||
url: projectRecord["search_engine"][0]["thumbnail"]["filename_disk"],
|
||||
height: projectRecord["search_engine"][0]["thumbnail"]["height"],
|
||||
width: projectRecord["search_engine"][0]["thumbnail"]["width"]
|
||||
}
|
||||
},
|
||||
tags: []
|
||||
};
|
||||
|
||||
projectRecord["tags"].forEach((tagRecord: any) => {
|
||||
project["tags"].push({
|
||||
text: tagRecord["Tags_id"]["text"],
|
||||
code: tagRecord["Tags_id"]["code"],
|
||||
color: tagRecord["Tags_id"]["color"]
|
||||
});
|
||||
|
||||
dates.push(tagRecord["Tags_id"]["date_created"]);
|
||||
dates.push(tagRecord["Tags_id"]["date_updated"]);
|
||||
});
|
||||
|
||||
if (dates.filter(e => e !== null).length === 0) {
|
||||
project.lastModified = new Date();
|
||||
}
|
||||
else {
|
||||
const sortedDates: string[] = dates.sort((a: string, b: string) => {
|
||||
return new Date(b).getTime() - new Date(a).getTime();
|
||||
});
|
||||
|
||||
project.lastModified = new Date(sortedDates[0]);
|
||||
}
|
||||
|
||||
projects.push(project);
|
||||
});
|
||||
|
||||
return projects;
|
||||
}
|
||||
15
astro/src/content/settings/robots.ts
Normal file
15
astro/src/content/settings/robots.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { createDirectusConnection } from "@/lib/directus";
|
||||
import { print } from 'graphql';
|
||||
import getRobotsQuery from '@/graphql/settings/robots.graphql';
|
||||
|
||||
export async function getRobotsSettings(): Promise<RobotsSettings> {
|
||||
const client = await createDirectusConnection();
|
||||
const result = await client.query(print(getRobotsQuery));
|
||||
|
||||
const robotsResult = result["Robots"];
|
||||
|
||||
return {
|
||||
crawlers: robotsResult["crawlers"],
|
||||
extraContent: robotsResult["extra_content"]
|
||||
};
|
||||
}
|
||||
169
astro/src/content/settings/settings.ts
Normal file
169
astro/src/content/settings/settings.ts
Normal file
@@ -0,0 +1,169 @@
|
||||
import { print } from 'graphql';
|
||||
import { createDirectusConnection } from "@/lib/directus";
|
||||
import getSettingsQuery from '@/graphql/settings/settings.graphql';
|
||||
|
||||
export async function getSettings(): Promise<GlobalSettings> {
|
||||
const client = await createDirectusConnection();
|
||||
const result = await client.query(print(getSettingsQuery));
|
||||
|
||||
const websiteResults = result["Website_Settings"];
|
||||
const websiteSettings: WebsiteSettings = {
|
||||
domainName: websiteResults["domain_name"],
|
||||
titleTemplate: websiteResults["title_template"],
|
||||
applicationName: websiteResults["application_name"],
|
||||
colors: {
|
||||
primary: websiteResults["primary_color"],
|
||||
secondary: websiteResults["secondary_color"]
|
||||
},
|
||||
author: {
|
||||
name: websiteResults["author_name"],
|
||||
url: websiteResults["author_url"]
|
||||
},
|
||||
owner: websiteResults["owner"],
|
||||
designer: websiteResults["designer"],
|
||||
developer: websiteResults["developer"],
|
||||
copyright: websiteResults["copyright"],
|
||||
twitter: {
|
||||
id: websiteResults["twitter_id"],
|
||||
handle: websiteResults["twitter_handle"]
|
||||
},
|
||||
lastModified: websiteResults["date_updated"] !== null ?
|
||||
new Date(websiteResults["date_updated"]) :
|
||||
new Date(websiteResults["date_created"])
|
||||
};
|
||||
|
||||
const blogResults = result["Blog_Settings"];
|
||||
const blogSettings: BlogSettings = {
|
||||
enabled: blogResults["enabled"],
|
||||
title: blogResults["title"],
|
||||
subtext: blogResults["subtext"],
|
||||
indexRouteTemplate: blogResults["index_route_template"],
|
||||
blogRouteTemplate: blogResults["blog_route_template"],
|
||||
lastModified: blogResults["date_updated"] !== null ?
|
||||
new Date(blogResults["date_updated"]) :
|
||||
new Date(blogResults["date_created"])
|
||||
};
|
||||
|
||||
const projectResults = result["Project_Settings"];
|
||||
const projectSettings: ProjectSettings = {
|
||||
enabled: projectResults["enabled"],
|
||||
title: projectResults["title"],
|
||||
subtext: projectResults["subtext"],
|
||||
indexRouteTemplate: projectResults["index_route_template"],
|
||||
projectRouteTemplate: projectResults["project_route_template"],
|
||||
lastModified: projectResults["date_updated"] !== null ?
|
||||
new Date(projectResults["date_updated"]) :
|
||||
new Date(projectResults["date_created"])
|
||||
};
|
||||
|
||||
const photoResults = result["Photo_Settings"];
|
||||
let photoResultsLastModifiedTimestamps: string[] = [
|
||||
photoResults["date_created"],
|
||||
photoResults["date_updated"],
|
||||
photoResults["category_icons"]["date_created"],
|
||||
photoResults["category_icons"]["date_updated"],
|
||||
photoResults["category_icons"]["photos_icon"]["created_on"],
|
||||
photoResults["category_icons"]["location_icon"]["created_on"],
|
||||
photoResults["category_icons"]["date_icon"]["created_on"],
|
||||
photoResults["photo_icons"]["date_created"],
|
||||
photoResults["photo_icons"]["date_updated"],
|
||||
photoResults["photo_icons"]["previous_icon"]["created_on"],
|
||||
photoResults["photo_icons"]["next_icon"]["created_on"],
|
||||
photoResults["photo_icons"]["close_icon"]["created_on"],
|
||||
photoResults["photo_icons"]["download_icon"]["created_on"]
|
||||
];
|
||||
|
||||
const photoResultsLastModified = photoResultsLastModifiedTimestamps.sort((a: string, b: string) => {
|
||||
return new Date(b).getTime() - new Date(a).getTime();
|
||||
});
|
||||
|
||||
const photoSettings: WebsitePhotoSettings = {
|
||||
enabled: photoResults["enabled"],
|
||||
categoryIndex: {
|
||||
indexRouteTemplate: photoResults["categories_index_route_template_url"]
|
||||
},
|
||||
category: {
|
||||
routeTemplate: photoResults["category_route_template_url"],
|
||||
perPage: photoResults["albums_per_category_page"],
|
||||
icons: {
|
||||
photos: {
|
||||
url: photoResults["category_icons"]["photos_icon"]["filename_download"],
|
||||
height: photoResults["category_icons"]["photos_icon"]["height"],
|
||||
width: photoResults["category_icons"]["photos_icon"]["width"]
|
||||
},
|
||||
location: {
|
||||
url: photoResults["category_icons"]["location_icon"]["filename_download"],
|
||||
height: photoResults["category_icons"]["location_icon"]["height"],
|
||||
width: photoResults["category_icons"]["location_icon"]["width"]
|
||||
},
|
||||
date: {
|
||||
url: photoResults["category_icons"]["date_icon"]["filename_download"],
|
||||
height: photoResults["category_icons"]["date_icon"]["height"],
|
||||
width: photoResults["category_icons"]["date_icon"]["width"]
|
||||
}
|
||||
}
|
||||
},
|
||||
album: {
|
||||
routeTemplate: photoResults["album_route_template_url"],
|
||||
perPage: photoResults["photos_per_album_page"]
|
||||
},
|
||||
photo: {
|
||||
routeTemplate: photoResults["photo_route_template_url"],
|
||||
icons: {
|
||||
previous: {
|
||||
url: photoResults["photo_icons"]["previous_icon"]["filename_download"],
|
||||
height: photoResults["photo_icons"]["previous_icon"]["height"],
|
||||
width: photoResults["photo_icons"]["previous_icon"]["width"]
|
||||
},
|
||||
next: {
|
||||
url: photoResults["photo_icons"]["next_icon"]["filename_download"],
|
||||
height: photoResults["photo_icons"]["next_icon"]["height"],
|
||||
width: photoResults["photo_icons"]["next_icon"]["width"]
|
||||
},
|
||||
close: {
|
||||
url: photoResults["photo_icons"]["close_icon"]["filename_download"],
|
||||
height: photoResults["photo_icons"]["close_icon"]["height"],
|
||||
width: photoResults["photo_icons"]["close_icon"]["width"]
|
||||
},
|
||||
download: {
|
||||
url: photoResults["photo_icons"]["download_icon"]["filename_download"],
|
||||
height: photoResults["photo_icons"]["download_icon"]["height"],
|
||||
width: photoResults["photo_icons"]["download_icon"]["width"]
|
||||
}
|
||||
}
|
||||
},
|
||||
lastModified: new Date(photoResultsLastModified[0])
|
||||
};
|
||||
|
||||
const sitemapResults = result["Sitemap_Settings"];
|
||||
const sitemapSettings: SitemapSettings = {
|
||||
perPage: sitemapResults["per_page"],
|
||||
lastModified: sitemapResults["date_updated"] !== null ?
|
||||
new Date(sitemapResults["date_updated"]) :
|
||||
new Date(sitemapResults["date_created"])
|
||||
};
|
||||
|
||||
const pluginResults = result["Plugin_Settings"];
|
||||
const pluginSettings: PluginSettings = {
|
||||
swetrix: {
|
||||
id: pluginResults["swetrix_id"],
|
||||
url: pluginResults["swetrix_url"]
|
||||
},
|
||||
lastModified: pluginResults["date_updated"] !== null ?
|
||||
new Date(pluginResults["date_updated"]) :
|
||||
new Date(pluginResults["date_created"])
|
||||
}
|
||||
|
||||
if (pluginResults["swetrix_id"] === null && pluginResults["swetrix_url"] === null) {
|
||||
pluginSettings.swetrix = null;
|
||||
}
|
||||
|
||||
return {
|
||||
website: websiteSettings,
|
||||
blog: blogSettings,
|
||||
project: projectSettings,
|
||||
photo: photoSettings,
|
||||
sitemap: sitemapSettings,
|
||||
plugins: pluginSettings
|
||||
}
|
||||
}
|
||||
8
astro/src/env.d.ts
vendored
Normal file
8
astro/src/env.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
interface ImportMetaEnv {
|
||||
readonly DIRECTUS_TOKEN: string;
|
||||
readonly DIRECTUS_URL: string;
|
||||
}
|
||||
|
||||
interface ImportMeta {
|
||||
readonly env: ImportMetaEnv;
|
||||
}
|
||||
5
astro/src/graphql.d.ts
vendored
Normal file
5
astro/src/graphql.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
declare module '*.graphql' {
|
||||
import { DocumentNode } from 'graphql';
|
||||
const Schema: DocumentNode;
|
||||
export default Schema;
|
||||
}
|
||||
39
astro/src/graphql/blogs/getBlogs.graphql
Normal file
39
astro/src/graphql/blogs/getBlogs.graphql
Normal file
@@ -0,0 +1,39 @@
|
||||
query getAllBlogs($date: String!) {
|
||||
Blogs(sort: ["-date", "-date_created"], filter: { status: { _eq: "published" }, date: { _gte: $date } }) {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
status,
|
||||
title,
|
||||
url,
|
||||
date,
|
||||
content,
|
||||
tags {
|
||||
Tags_id {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
text,
|
||||
code,
|
||||
color
|
||||
}
|
||||
},
|
||||
search_engine {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
title,
|
||||
description,
|
||||
thumbnail {
|
||||
id,
|
||||
created_on,
|
||||
filename_disk,
|
||||
width,
|
||||
height
|
||||
},
|
||||
canonical,
|
||||
allow_crawler,
|
||||
priority
|
||||
}
|
||||
}
|
||||
}
|
||||
39
astro/src/graphql/projects/getProjects.graphql
Normal file
39
astro/src/graphql/projects/getProjects.graphql
Normal file
@@ -0,0 +1,39 @@
|
||||
query getAllProjects($date: String!) {
|
||||
Projects(sort: ["-date", "-date_created"], filter: { status: { _eq: "published" }, date: { _gte: $date } }) {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
status,
|
||||
title,
|
||||
url,
|
||||
date,
|
||||
content,
|
||||
tags {
|
||||
Tags_id {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
text,
|
||||
code,
|
||||
color
|
||||
}
|
||||
},
|
||||
search_engine {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
title,
|
||||
description,
|
||||
thumbnail {
|
||||
id,
|
||||
created_on,
|
||||
filename_download,
|
||||
width,
|
||||
height
|
||||
},
|
||||
canonical,
|
||||
allow_crawler,
|
||||
priority
|
||||
}
|
||||
}
|
||||
}
|
||||
9
astro/src/graphql/settings/robots.graphql
Normal file
9
astro/src/graphql/settings/robots.graphql
Normal file
@@ -0,0 +1,9 @@
|
||||
query Robots {
|
||||
Robots {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
crawlers,
|
||||
extra_content
|
||||
}
|
||||
}
|
||||
124
astro/src/graphql/settings/settings.graphql
Normal file
124
astro/src/graphql/settings/settings.graphql
Normal file
@@ -0,0 +1,124 @@
|
||||
query getAllSettings {
|
||||
Website_Settings {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
domain_name,
|
||||
title_template,
|
||||
application_name,
|
||||
primary_color,
|
||||
secondary_color,
|
||||
author_name,
|
||||
author_url,
|
||||
designer,
|
||||
developer,
|
||||
owner,
|
||||
copyright,
|
||||
twitter_id,
|
||||
twitter_handle
|
||||
},
|
||||
Blog_Settings {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
enabled,
|
||||
title,
|
||||
subtext,
|
||||
index_route_template,
|
||||
blog_route_template
|
||||
},
|
||||
Project_Settings {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
enabled,
|
||||
title,
|
||||
subtext,
|
||||
index_route_template,
|
||||
project_route_template
|
||||
},
|
||||
Photo_Settings {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
enabled,
|
||||
categories_index_route_template_url,
|
||||
category_route_template_url,
|
||||
albums_per_category_page,
|
||||
category_icons {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
photos_icon {
|
||||
id,
|
||||
created_on,
|
||||
filename_download,
|
||||
width,
|
||||
height
|
||||
},
|
||||
location_icon {
|
||||
id,
|
||||
created_on,
|
||||
filename_download,
|
||||
width,
|
||||
height
|
||||
},
|
||||
date_icon {
|
||||
id,
|
||||
created_on,
|
||||
filename_download,
|
||||
width,
|
||||
height
|
||||
}
|
||||
},
|
||||
album_route_template_url,
|
||||
photos_per_album_page,
|
||||
photo_route_template_url,
|
||||
photo_icons {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
previous_icon {
|
||||
id,
|
||||
created_on,
|
||||
filename_download,
|
||||
width,
|
||||
height
|
||||
},
|
||||
next_icon {
|
||||
id,
|
||||
created_on,
|
||||
filename_download,
|
||||
width,
|
||||
height
|
||||
},
|
||||
close_icon {
|
||||
id,
|
||||
created_on,
|
||||
filename_download,
|
||||
width,
|
||||
height
|
||||
},
|
||||
download_icon {
|
||||
id,
|
||||
created_on,
|
||||
filename_download,
|
||||
width,
|
||||
height
|
||||
}
|
||||
}
|
||||
},
|
||||
Sitemap_Settings {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
per_page
|
||||
},
|
||||
Plugin_Settings {
|
||||
id,
|
||||
date_created,
|
||||
date_updated,
|
||||
swetrix_id,
|
||||
swetrix_url
|
||||
}
|
||||
}
|
||||
63
astro/src/layouts/WebpageLayout.astro
Normal file
63
astro/src/layouts/WebpageLayout.astro
Normal file
@@ -0,0 +1,63 @@
|
||||
---
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
|
||||
const settings = await getSettings();
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- High Priority Metadata -->
|
||||
<meta charset="utf-8" />
|
||||
<meta name="lanuage" content="EN" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="theme-color" content={settings.website.colors.primary} />
|
||||
|
||||
<!-- High Priority Page Metadata -->
|
||||
<title>{settings.website.titleTemplate.replaceAll("%T", "")}</title>
|
||||
|
||||
<!-- Medium Priority Metadata -->
|
||||
<meta name="msapplication-TileColor" content={settings.website.colors.primary} />
|
||||
<meta name="msapplication-TileImage" content="" />
|
||||
<link rel="sitemap" href="/sitemap/index.xml" />
|
||||
<link rel="alternate" type="application/rss+xml" href="/rss.xml" title="RSS" />
|
||||
<link rel="canonical" href={`${settings.website.domainName}/`}>
|
||||
<meta name="robots" content="index,follow" />
|
||||
|
||||
<!-- Low Priority Page Metadata -->
|
||||
<meta name="description" content="" />
|
||||
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:locale" content="en-GB" />
|
||||
<meta property="og:title" content={settings.website.titleTemplate.replaceAll("%T", "")} />
|
||||
<meta property="og:description" content="" />
|
||||
<meta property="og:image:url" content="" />
|
||||
<meta property="og:image:alt" content="" />
|
||||
<meta property="og:url" content={`${settings.website.domainName}${Astro.url.pathname}`} />
|
||||
<meta property="og:site_name" content={settings.website.applicationName} />
|
||||
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:title" content={settings.website.titleTemplate.replaceAll("%T", "")} />
|
||||
<meta name="twitter:description" content="" />
|
||||
<meta name="twitter:image" content="" />
|
||||
<meta name="twitter:image:alt" content="" />
|
||||
<meta name="twitter:url" content={`${settings.website.domainName}${Astro.url.pathname}`} />
|
||||
<meta name="twitter:site" content={settings.website.twitter.handle} />
|
||||
<meta name="twitter:creator" content={settings.website.twitter.handle} />
|
||||
|
||||
<meta name="pagename" content="" />
|
||||
<meta name="category" content="webpage" />
|
||||
|
||||
<!-- Low Priority Metadata -->
|
||||
<meta name="copyright" content={settings.website.copyright} />
|
||||
<meta name="author" content={`${settings.website.author.name}, ${settings.website.author.url}`} />
|
||||
<meta name="designer" content={settings.website.designer} />
|
||||
<meta name="owner" content={settings.website.owner} />
|
||||
<meta name="developer" content={settings.website.developer} />
|
||||
<meta name="application-name" content={settings.website.applicationName} />
|
||||
</head>
|
||||
<body>
|
||||
<slot />
|
||||
</body>
|
||||
</html>
|
||||
6
astro/src/lib/dates.ts
Normal file
6
astro/src/lib/dates.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export function formatDate(date: Date, format: string) {
|
||||
return format
|
||||
.replaceAll("%Y", date.getFullYear().toString())
|
||||
.replaceAll("%M", (date.getMonth() + 1).toString().padStart(2, '0'))
|
||||
.replaceAll("%D", date.getDate().toString().padStart(2, '0'));
|
||||
}
|
||||
9
astro/src/lib/directus.ts
Normal file
9
astro/src/lib/directus.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { createDirectus, graphql, staticToken } from "@directus/sdk";
|
||||
|
||||
export async function createDirectusConnection() {
|
||||
const directus = await createDirectus(import.meta.env.DIRECTUS_URL)
|
||||
.with(graphql())
|
||||
.with(staticToken(import.meta.env.DIRECTUS_TOKEN));
|
||||
|
||||
return directus;
|
||||
}
|
||||
21
astro/src/lib/routing.ts
Normal file
21
astro/src/lib/routing.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
export function getBlogRoute(blogSettings: BlogSettings, blog: BlogPost) {
|
||||
const date = new Date(blog.date);
|
||||
|
||||
return blogSettings.blogRouteTemplate
|
||||
.replaceAll("%Y", date.getFullYear().toString())
|
||||
.replaceAll("%M", (date.getMonth() + 1).toString().padStart(2, '0'))
|
||||
.replaceAll("%D", date.getDate().toString().padStart(2, '0'))
|
||||
.replaceAll("%R", blog.url)
|
||||
.replace(/\/+/g, '/');
|
||||
}
|
||||
|
||||
export function getProjectRoute(projectSettings: ProjectSettings, project: ProjectPost) {
|
||||
const date = new Date(project.date);
|
||||
|
||||
return projectSettings.projectRouteTemplate
|
||||
.replaceAll("%Y", date.getFullYear().toString())
|
||||
.replaceAll("%M", (date.getMonth() + 1).toString().padStart(2, '0'))
|
||||
.replaceAll("%D", date.getDate().toString().padStart(2, '0'))
|
||||
.replaceAll("%R", project.url)
|
||||
.replace(/\/+/g, '/');
|
||||
}
|
||||
@@ -1,17 +1,12 @@
|
||||
---
|
||||
import { getAllBlogs } from "@/content/blogs/blogs";
|
||||
import { getSettings } from "@/content/settings/settings"
|
||||
import WebpageLayout from "@/layouts/WebpageLayout.astro";
|
||||
|
||||
const settings = await getSettings();
|
||||
const blogs = await getAllBlogs(settings);
|
||||
---
|
||||
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>Astro</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Astro</h1>
|
||||
</body>
|
||||
</html>
|
||||
<WebpageLayout>
|
||||
<h1>Test</h1>
|
||||
</WebpageLayout>
|
||||
66
astro/src/pages/robots.txt.ts
Normal file
66
astro/src/pages/robots.txt.ts
Normal file
@@ -0,0 +1,66 @@
|
||||
import { getRobotsSettings } from "@/content/settings/robots";
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
import type { APIRoute } from "astro";
|
||||
|
||||
export const GET = (async () => {
|
||||
const settings = await getSettings();
|
||||
const robots = await getRobotsSettings();
|
||||
|
||||
let crawlers = [
|
||||
{ id: 'google', name: 'Googlebot' },
|
||||
{ id: 'bing', name: "Bingbot" },
|
||||
{ id: "slurp", name: "Slurp" },
|
||||
{ id: "duckduckgo", name: "DuckDuckBot" },
|
||||
{ id: "baidu", name: "Baiduspider" },
|
||||
{ id: "yandex", name: "YandexBot" },
|
||||
{ id: "sogou", name: "Sogou web spider" },
|
||||
{ id: "seznam", name: "SeznamBot" },
|
||||
{ id: "qwantbot", name: "Qwantbot" },
|
||||
{ id: "naverbot", name: "Naverbot" },
|
||||
{ id: "coccocbot", name: "Coccocbot" },
|
||||
{ id: "mojeekbot", name: "Mojeekbot" },
|
||||
{ id: "ahrefs", name: "Ahrefsbot" },
|
||||
{ id: "semrush", name: "SemrushBot" },
|
||||
{ id: "mj12bot", name: "MJ12Bot" },
|
||||
{ id: "dotbot", name: "DotBot" },
|
||||
{ id: "petalbot", name: "PetalBot" },
|
||||
{ id: "gptbot", name: "GPTBot" },
|
||||
{ id: "ccbot", name: "CCBot" },
|
||||
{ id: "ia_archiver", name: "ia_archiver" },
|
||||
{ id: "claudebot", name: "ClaudeBot" },
|
||||
{ id: "perplexity", name: "PerplexityBot" },
|
||||
{ id: "facebookexternalhit", name: "facebookexternalhit/1.1" },
|
||||
{ id: "twitterbot", name: "Twitterbot" },
|
||||
{ id: "linkedinbot", name: "LinkedInBot" },
|
||||
{ id: "bytespider", name: "ByteSpider" },
|
||||
{ id: "applebot", name: "AppleBot" },
|
||||
{ id: "amazonbot", name: "AmazonBot" }
|
||||
]
|
||||
|
||||
let crawlerContent = "";
|
||||
|
||||
crawlers.forEach((crawler) => {
|
||||
if (robots.crawlers.some(c => c === crawler.id)) {
|
||||
const crawlerData = crawlers.find(c => c.id === crawler.id);
|
||||
|
||||
crawlerContent = crawlerContent +
|
||||
`User-agent: ${crawlerData!.name}\nAllow: /\nCrawl-delay: 5\nSitemap: ${settings.website.domainName}/sitemap/index.xml`
|
||||
}
|
||||
else {
|
||||
const crawlerData = crawlers.find(c => c.id === crawler.id);
|
||||
|
||||
crawlerContent = crawlerContent +
|
||||
`User-agent: ${crawlerData!.name}\nDisallow: /`
|
||||
}
|
||||
|
||||
crawlerContent = crawlerContent + "\n\n\n"
|
||||
});
|
||||
|
||||
return new Response(crawlerContent.trim(), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"Content-Type": "text/plain"
|
||||
}
|
||||
});
|
||||
}) satisfies APIRoute;
|
||||
27
astro/src/pages/rss.xml.ts
Normal file
27
astro/src/pages/rss.xml.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
import type { APIRoute } from "astro";
|
||||
import minifyXML from "minify-xml";
|
||||
|
||||
export const GET = (async () => {
|
||||
const settings = await getSettings();
|
||||
|
||||
let sitemapContent = `
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rss version="2.0">
|
||||
<channel>
|
||||
<title>${settings.website.applicationName}</title>
|
||||
<description>This is the RSS feed of ${settings.website.applicationName}</description>
|
||||
<link>${settings.website.domainName}</link>
|
||||
<lastBuildDate>Sat, 13 Dec 2003 18:30:02 GMT</lastBuildDate>
|
||||
</channel>
|
||||
</rss>
|
||||
`;
|
||||
|
||||
return new Response(minifyXML(sitemapContent), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"Content-Type": "application/xml"
|
||||
}
|
||||
});
|
||||
}) satisfies APIRoute;
|
||||
52
astro/src/pages/sitemap/albums-[page].xml.ts
Normal file
52
astro/src/pages/sitemap/albums-[page].xml.ts
Normal file
@@ -0,0 +1,52 @@
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
import type { APIRoute } from "astro";
|
||||
import minifyXML from "minify-xml";
|
||||
|
||||
export const GET = (async ({ params }) => {
|
||||
const settings = await getSettings();
|
||||
|
||||
const currentPage = params.page;
|
||||
|
||||
let pages: SitemapPage[] = [
|
||||
{
|
||||
url: "/",
|
||||
lastModified: new Date()
|
||||
}
|
||||
];
|
||||
|
||||
let sitemapContent = `
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
${pages.map((page) => `
|
||||
<sitemap>
|
||||
<loc>${settings.website.domainName}${page.url}</loc>
|
||||
<lastmod>${page.lastModified.toISOString()}</lastmod>
|
||||
</sitemap>
|
||||
`).join('')}
|
||||
</sitemapindex>
|
||||
`;
|
||||
|
||||
return new Response(minifyXML(sitemapContent), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"Content-Type": "application/xml"
|
||||
}
|
||||
});
|
||||
}) satisfies APIRoute;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const settings = await getSettings();
|
||||
|
||||
const albumCount = 250;
|
||||
const perPage = settings.sitemap.perPage;
|
||||
const pages = Math.ceil(albumCount / perPage);
|
||||
|
||||
let items: any[] = [];
|
||||
|
||||
for (let i = 0; i < pages; i++) {
|
||||
items.push({ params: { page: (i + 1) } });
|
||||
}
|
||||
|
||||
return items;
|
||||
}
|
||||
40
astro/src/pages/sitemap/albums.xml.ts
Normal file
40
astro/src/pages/sitemap/albums.xml.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
import type { APIRoute } from "astro";
|
||||
import minifyXML from "minify-xml";
|
||||
|
||||
export const GET = (async () => {
|
||||
const settings = await getSettings();
|
||||
|
||||
const albumCount = 250;
|
||||
const perPage = settings.sitemap.perPage;
|
||||
const pages = Math.ceil(albumCount / perPage);
|
||||
|
||||
let sitemaps: SitemapIndex[] = [];
|
||||
|
||||
for (let i = 0; i < pages; i++) {
|
||||
sitemaps.push({
|
||||
url: `/sitemap/albums-${i + 1}.xml`,
|
||||
lastModified: new Date()
|
||||
});
|
||||
}
|
||||
|
||||
let sitemapContent = `
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
${sitemaps.map((item) => `
|
||||
<sitemap>
|
||||
<loc>${settings.website.domainName}${item.url}</loc>
|
||||
<lastmod>${item.lastModified.toISOString()}</lastmod>
|
||||
</sitemap>
|
||||
`).join('')}
|
||||
</sitemapindex>
|
||||
`;
|
||||
|
||||
return new Response(minifyXML(sitemapContent), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"Content-Type": "application/xml"
|
||||
}
|
||||
});
|
||||
}) satisfies APIRoute;
|
||||
70
astro/src/pages/sitemap/blogs-[page].xml.ts
Normal file
70
astro/src/pages/sitemap/blogs-[page].xml.ts
Normal file
@@ -0,0 +1,70 @@
|
||||
import { getAllBlogs } from "@/content/blogs/blogs";
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
import { getBlogRoute } from "@/lib/routing";
|
||||
import type { APIRoute } from "astro";
|
||||
import minifyXML from "minify-xml";
|
||||
|
||||
export const GET = (async ({ params }) => {
|
||||
const settings = await getSettings();
|
||||
|
||||
if (!settings.blog.enabled) {
|
||||
return new Response(null, {
|
||||
status: 204,
|
||||
statusText: "Not Found"
|
||||
});
|
||||
}
|
||||
|
||||
const currentPage = params.page;
|
||||
|
||||
const blogs = await getAllBlogs(settings);
|
||||
const selectedBlogs = blogs.slice(
|
||||
((Number(currentPage) - 1) * settings.sitemap.perPage),
|
||||
Number(currentPage) * settings.sitemap.perPage - 1
|
||||
);
|
||||
|
||||
let pages: SitemapPage[] = [];
|
||||
|
||||
selectedBlogs.forEach((blog) => {
|
||||
pages.push({
|
||||
url: getBlogRoute(settings.blog, blog),
|
||||
lastModified: blog.lastModified
|
||||
});
|
||||
})
|
||||
|
||||
let sitemapContent = `
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
${pages.map((page) => `
|
||||
<sitemap>
|
||||
<loc>${settings.website.domainName}${page.url}</loc>
|
||||
<lastmod>${page.lastModified.toISOString()}</lastmod>
|
||||
</sitemap>
|
||||
`).join('')}
|
||||
</sitemapindex>
|
||||
`;
|
||||
|
||||
return new Response(minifyXML(sitemapContent), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"Content-Type": "application/xml"
|
||||
}
|
||||
});
|
||||
}) satisfies APIRoute;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const settings = await getSettings();
|
||||
const blogs = await getAllBlogs(settings);
|
||||
|
||||
const blogCount = blogs.length;
|
||||
const perPage = settings.sitemap.perPage;
|
||||
const pages = Math.ceil(blogCount / perPage);
|
||||
|
||||
let items: any[] = [];
|
||||
|
||||
for (let i = 0; i < pages; i++) {
|
||||
items.push({ params: { page: (i + 1) } });
|
||||
}
|
||||
|
||||
return items;
|
||||
}
|
||||
68
astro/src/pages/sitemap/blogs.xml.ts
Normal file
68
astro/src/pages/sitemap/blogs.xml.ts
Normal file
@@ -0,0 +1,68 @@
|
||||
import { getAllBlogs } from "@/content/blogs/blogs";
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
import type { APIRoute } from "astro";
|
||||
import minifyXML from "minify-xml";
|
||||
|
||||
export const GET = (async () => {
|
||||
const settings = await getSettings();
|
||||
|
||||
if (!settings.blog.enabled) {
|
||||
return new Response(null, {
|
||||
status: 204,
|
||||
statusText: "Not Found"
|
||||
});
|
||||
}
|
||||
|
||||
const blogs = await getAllBlogs(settings);
|
||||
const blogCount = blogs.length;
|
||||
const perPage = settings.sitemap.perPage;
|
||||
const pages = Math.ceil(blogCount / perPage);
|
||||
|
||||
let sitemaps: SitemapIndex[] = [];
|
||||
|
||||
for (let i = 0; i < pages; i++) {
|
||||
const selectedBlogs = blogs.slice(
|
||||
((Number(i + 1) - 1) * settings.sitemap.perPage),
|
||||
Number(i + 1) * settings.sitemap.perPage - 1
|
||||
);
|
||||
|
||||
let dates = [
|
||||
settings.sitemap.lastModified,
|
||||
settings.blog.lastModified,
|
||||
settings.website.lastModified
|
||||
];
|
||||
|
||||
selectedBlogs.forEach((blog) => {
|
||||
dates.push(blog.lastModified);
|
||||
});
|
||||
|
||||
const lastModified = dates.sort((a: Date, b: Date) => {
|
||||
return b.getTime() - a.getTime();
|
||||
});
|
||||
|
||||
sitemaps.push({
|
||||
url: `/sitemap/blogs-${i + 1}.xml`,
|
||||
lastModified: lastModified[0]
|
||||
});
|
||||
}
|
||||
|
||||
let sitemapContent = `
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
${sitemaps.map((item) => `
|
||||
<sitemap>
|
||||
<loc>${settings.website.domainName}${item.url}</loc>
|
||||
<lastmod>${item.lastModified.toISOString()}</lastmod>
|
||||
</sitemap>
|
||||
`).join('')}
|
||||
</sitemapindex>
|
||||
`;
|
||||
|
||||
return new Response(minifyXML(sitemapContent), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"Content-Type": "application/xml"
|
||||
}
|
||||
});
|
||||
}) satisfies APIRoute;
|
||||
87
astro/src/pages/sitemap/index.xml.ts
Normal file
87
astro/src/pages/sitemap/index.xml.ts
Normal file
@@ -0,0 +1,87 @@
|
||||
import { getAllBlogs } from "@/content/blogs/blogs";
|
||||
import { getAllProjects } from "@/content/projects/projects";
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
import type { APIRoute } from "astro";
|
||||
import minifyXML from "minify-xml";
|
||||
|
||||
export const GET = (async () => {
|
||||
const settings = await getSettings();
|
||||
|
||||
let sitemapIndex: SitemapIndex[] = [
|
||||
{
|
||||
url: "/sitemap/pages.xml",
|
||||
lastModified: new Date()
|
||||
}
|
||||
];
|
||||
|
||||
if (settings.blog.enabled) {
|
||||
const blogLastModifieds = [
|
||||
settings.blog.lastModified,
|
||||
settings.sitemap.lastModified,
|
||||
settings.website.lastModified
|
||||
];
|
||||
|
||||
let blogs = await getAllBlogs(settings);
|
||||
|
||||
blogs.forEach((blog) => {
|
||||
blogLastModifieds.push(blog.lastModified);
|
||||
});
|
||||
|
||||
const lastModifiedBlogs = blogLastModifieds.sort((a: Date, b: Date) => {
|
||||
return b.getTime() - a.getTime();
|
||||
});
|
||||
|
||||
sitemapIndex.push({
|
||||
url: "/sitemap/blogs.xml",
|
||||
lastModified: lastModifiedBlogs[0]
|
||||
});
|
||||
};
|
||||
if (settings.project.enabled) {
|
||||
const projectLastModifieds = [
|
||||
settings.project.lastModified,
|
||||
settings.sitemap.lastModified,
|
||||
settings.website.lastModified
|
||||
];
|
||||
|
||||
let projects = await getAllProjects(settings);
|
||||
|
||||
projects.forEach((project) => {
|
||||
projectLastModifieds.push(project.lastModified);
|
||||
});
|
||||
|
||||
const lastModifiedProjects = projectLastModifieds.sort((a: Date, b: Date) => {
|
||||
return b.getTime() - a.getTime();
|
||||
});
|
||||
|
||||
sitemapIndex.push({
|
||||
url: "/sitemap/projects.xml",
|
||||
lastModified: lastModifiedProjects[0]
|
||||
});
|
||||
};
|
||||
if (settings.photo.enabled) {
|
||||
sitemapIndex.push({
|
||||
url: "/sitemap/albums.xml",
|
||||
lastModified: new Date()
|
||||
})
|
||||
};
|
||||
|
||||
let sitemapContent = `
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
${sitemapIndex.map((item) => `
|
||||
<sitemap>
|
||||
<loc>${settings.website.domainName}${item.url}</loc>
|
||||
<lastmod>${item.lastModified.toISOString()}</lastmod>
|
||||
</sitemap>
|
||||
`).join('')}
|
||||
</sitemapindex>
|
||||
`;
|
||||
|
||||
return new Response(minifyXML(sitemapContent), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"Content-Type": "application/xml"
|
||||
}
|
||||
});
|
||||
}) satisfies APIRoute;
|
||||
52
astro/src/pages/sitemap/pages-[page].xml.ts
Normal file
52
astro/src/pages/sitemap/pages-[page].xml.ts
Normal file
@@ -0,0 +1,52 @@
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
import type { APIRoute } from "astro";
|
||||
import minifyXML from "minify-xml";
|
||||
|
||||
export const GET = (async ({ params }) => {
|
||||
const settings = await getSettings();
|
||||
|
||||
const currentPage = params.page;
|
||||
|
||||
let pages: SitemapPage[] = [
|
||||
{
|
||||
url: "/",
|
||||
lastModified: new Date()
|
||||
}
|
||||
];
|
||||
|
||||
let sitemapContent = `
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
${pages.map((page) => `
|
||||
<sitemap>
|
||||
<loc>${settings.website.domainName}${page.url}</loc>
|
||||
<lastmod>${page.lastModified.toISOString()}</lastmod>
|
||||
</sitemap>
|
||||
`).join('')}
|
||||
</sitemapindex>
|
||||
`;
|
||||
|
||||
return new Response(minifyXML(sitemapContent), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"Content-Type": "application/xml"
|
||||
}
|
||||
});
|
||||
}) satisfies APIRoute;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const settings = await getSettings();
|
||||
|
||||
const pageCount = 250;
|
||||
const perPage = settings.sitemap.perPage;
|
||||
const pages = Math.ceil(pageCount / perPage);
|
||||
|
||||
let items: any[] = [];
|
||||
|
||||
for (let i = 0; i < pages; i++) {
|
||||
items.push({ params: { page: (i + 1) } });
|
||||
}
|
||||
|
||||
return items;
|
||||
}
|
||||
40
astro/src/pages/sitemap/pages.xml.ts
Normal file
40
astro/src/pages/sitemap/pages.xml.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
import type { APIRoute } from "astro";
|
||||
import minifyXML from "minify-xml";
|
||||
|
||||
export const GET = (async () => {
|
||||
const settings = await getSettings();
|
||||
|
||||
const pageCount = 250;
|
||||
const perPage = settings.sitemap.perPage;
|
||||
const pages = Math.ceil(pageCount / perPage);
|
||||
|
||||
let sitemaps: SitemapIndex[] = [];
|
||||
|
||||
for (let i = 0; i < pages; i++) {
|
||||
sitemaps.push({
|
||||
url: `/sitemap/pages-${i + 1}.xml`,
|
||||
lastModified: new Date()
|
||||
});
|
||||
}
|
||||
|
||||
let sitemapContent = `
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
${sitemaps.map((item) => `
|
||||
<sitemap>
|
||||
<loc>${settings.website.domainName}${item.url}</loc>
|
||||
<lastmod>${item.lastModified.toISOString()}</lastmod>
|
||||
</sitemap>
|
||||
`).join('')}
|
||||
</sitemapindex>
|
||||
`;
|
||||
|
||||
return new Response(minifyXML(sitemapContent), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"Content-Type": "application/xml"
|
||||
}
|
||||
});
|
||||
}) satisfies APIRoute;
|
||||
70
astro/src/pages/sitemap/projects-[page].xml.ts
Normal file
70
astro/src/pages/sitemap/projects-[page].xml.ts
Normal file
@@ -0,0 +1,70 @@
|
||||
import { getAllProjects } from "@/content/projects/projects";
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
import { getProjectRoute } from "@/lib/routing";
|
||||
import type { APIRoute } from "astro";
|
||||
import minifyXML from "minify-xml";
|
||||
|
||||
export const GET = (async ({ params }) => {
|
||||
const settings = await getSettings();
|
||||
|
||||
if (!settings.project.enabled) {
|
||||
return new Response(null, {
|
||||
status: 204,
|
||||
statusText: "Not Found"
|
||||
});
|
||||
}
|
||||
|
||||
const currentPage = params.page;
|
||||
|
||||
const projects = await getAllProjects(settings);
|
||||
const selectedProjects = projects.slice(
|
||||
((Number(currentPage) - 1) * settings.sitemap.perPage),
|
||||
Number(currentPage) * settings.sitemap.perPage - 1
|
||||
);
|
||||
|
||||
let pages: SitemapPage[] = [];
|
||||
|
||||
selectedProjects.forEach((project) => {
|
||||
pages.push({
|
||||
url: getProjectRoute(settings.project, project),
|
||||
lastModified: project.lastModified
|
||||
});
|
||||
});
|
||||
|
||||
let sitemapContent = `
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
${pages.map((page) => `
|
||||
<sitemap>
|
||||
<loc>${settings.website.domainName}${page.url}</loc>
|
||||
<lastmod>${page.lastModified.toISOString()}</lastmod>
|
||||
</sitemap>
|
||||
`).join('')}
|
||||
</sitemapindex>
|
||||
`;
|
||||
|
||||
return new Response(minifyXML(sitemapContent), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"Content-Type": "application/xml"
|
||||
}
|
||||
});
|
||||
}) satisfies APIRoute;
|
||||
|
||||
export async function getStaticPaths() {
|
||||
const settings = await getSettings();
|
||||
const projects = await getAllProjects(settings);
|
||||
|
||||
const projectCount = projects.length;
|
||||
const perPage = settings.sitemap.perPage;
|
||||
const pages = Math.ceil(projectCount / perPage);
|
||||
|
||||
let items: any[] = [];
|
||||
|
||||
for (let i = 0; i < pages; i++) {
|
||||
items.push({ params: { page: (i + 1) } });
|
||||
}
|
||||
|
||||
return items;
|
||||
}
|
||||
68
astro/src/pages/sitemap/projects.xml.ts
Normal file
68
astro/src/pages/sitemap/projects.xml.ts
Normal file
@@ -0,0 +1,68 @@
|
||||
import { getAllProjects } from "@/content/projects/projects";
|
||||
import { getSettings } from "@/content/settings/settings";
|
||||
import type { APIRoute } from "astro";
|
||||
import minifyXML from "minify-xml";
|
||||
|
||||
export const GET = (async () => {
|
||||
const settings = await getSettings();
|
||||
|
||||
if (!settings.blog.enabled) {
|
||||
return new Response(null, {
|
||||
status: 204,
|
||||
statusText: "Not Found"
|
||||
});
|
||||
}
|
||||
|
||||
const projects = await getAllProjects(settings);
|
||||
const projectCount = projects.length;
|
||||
const perPage = settings.sitemap.perPage;
|
||||
const pages = Math.ceil(projectCount / perPage);
|
||||
|
||||
let sitemaps: SitemapIndex[] = [];
|
||||
|
||||
for (let i = 0; i < pages; i++) {
|
||||
const selectedProjects = projects.slice(
|
||||
((Number(i + 1) - 1) * settings.sitemap.perPage),
|
||||
Number(i + 1) * settings.sitemap.perPage - 1
|
||||
);
|
||||
|
||||
let dates = [
|
||||
settings.sitemap.lastModified,
|
||||
settings.project.lastModified,
|
||||
settings.website.lastModified
|
||||
];
|
||||
|
||||
selectedProjects.forEach((project) => {
|
||||
dates.push(project.lastModified);
|
||||
});
|
||||
|
||||
const lastModified = dates.sort((a: Date, b: Date) => {
|
||||
return b.getTime() - a.getTime();
|
||||
});
|
||||
|
||||
sitemaps.push({
|
||||
url: `/sitemap/projects-${i + 1}.xml`,
|
||||
lastModified: lastModified[0]
|
||||
});
|
||||
}
|
||||
|
||||
let sitemapContent = `
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
${sitemaps.map((item) => `
|
||||
<sitemap>
|
||||
<loc>${settings.website.domainName}${item.url}</loc>
|
||||
<lastmod>${item.lastModified.toISOString()}</lastmod>
|
||||
</sitemap>
|
||||
`).join('')}
|
||||
</sitemapindex>
|
||||
`;
|
||||
|
||||
return new Response(minifyXML(sitemapContent), {
|
||||
status: 200,
|
||||
statusText: "OK",
|
||||
headers: {
|
||||
"Content-Type": "application/xml"
|
||||
}
|
||||
});
|
||||
}) satisfies APIRoute;
|
||||
12
astro/src/types/blogs/blog.d.ts
vendored
Normal file
12
astro/src/types/blogs/blog.d.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
type BlogPost = {
|
||||
title: string;
|
||||
url: string;
|
||||
date: string;
|
||||
content: string;
|
||||
|
||||
tags: Tag[];
|
||||
|
||||
searchEngine: SearchEngine;
|
||||
|
||||
lastModified: Date;
|
||||
}
|
||||
5
astro/src/types/common/images.d.ts
vendored
Normal file
5
astro/src/types/common/images.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
type PhotoProps = {
|
||||
url: string;
|
||||
width: number;
|
||||
height: number;
|
||||
}
|
||||
8
astro/src/types/common/searchEngine.d.ts
vendored
Normal file
8
astro/src/types/common/searchEngine.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
type SearchEngine = {
|
||||
title: string;
|
||||
description: string;
|
||||
thumbnail: PhotoProps;
|
||||
canonical: string | null;
|
||||
allowCrawlers: boolean;
|
||||
priority: number;
|
||||
}
|
||||
5
astro/src/types/common/tag.d.ts
vendored
Normal file
5
astro/src/types/common/tag.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
type Tag = {
|
||||
text: string;
|
||||
code: string;
|
||||
color: string;
|
||||
}
|
||||
12
astro/src/types/projects/project.d.ts
vendored
Normal file
12
astro/src/types/projects/project.d.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
type ProjectPost = {
|
||||
title: string;
|
||||
url: string;
|
||||
date: string;
|
||||
content: string;
|
||||
|
||||
tags: Tag[];
|
||||
|
||||
searchEngine: SearchEngine;
|
||||
|
||||
lastModified: Date;
|
||||
}
|
||||
11
astro/src/types/settings/blog.d.ts
vendored
Normal file
11
astro/src/types/settings/blog.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
type BlogSettings = {
|
||||
enabled: string;
|
||||
|
||||
title: string;
|
||||
subtext: string | null;
|
||||
|
||||
indexRouteTemplate: string;
|
||||
blogRouteTemplate: string;
|
||||
|
||||
lastModified: Date;
|
||||
}
|
||||
39
astro/src/types/settings/photo.d.ts
vendored
Normal file
39
astro/src/types/settings/photo.d.ts
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
type WebsitePhotoSettings = {
|
||||
enabled: boolean;
|
||||
|
||||
categoryIndex: WebsitePhotoSettingsCategoryIndex;
|
||||
category: WebsitePhotoSettingsCategory;
|
||||
album: WebsitePhotoSettingsAlbum;
|
||||
photo: WebsitePhotoSettingsPhoto;
|
||||
|
||||
lastModified: Date;
|
||||
}
|
||||
|
||||
type WebsitePhotoSettingsCategoryIndex = {
|
||||
indexRouteTemplate: string;
|
||||
}
|
||||
|
||||
type WebsitePhotoSettingsCategory = {
|
||||
routeTemplate: string;
|
||||
perPage: number;
|
||||
icons: {
|
||||
photos: PhotoProps;
|
||||
location: PhotoProps;
|
||||
date: PhotoProps;
|
||||
}
|
||||
}
|
||||
|
||||
type WebsitePhotoSettingsAlbum = {
|
||||
routeTemplate: string;
|
||||
perPage: number;
|
||||
}
|
||||
|
||||
type WebsitePhotoSettingsPhoto = {
|
||||
routeTemplate: string;
|
||||
icons: {
|
||||
previous: PhotoProps;
|
||||
next: PhotoProps;
|
||||
close: PhotoProps;
|
||||
download: PhotoProps;
|
||||
}
|
||||
}
|
||||
10
astro/src/types/settings/plugin.d.ts
vendored
Normal file
10
astro/src/types/settings/plugin.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
type PluginSettings = {
|
||||
swetrix: PluginSettingsSwetrix | null;
|
||||
|
||||
lastModified: Date;
|
||||
}
|
||||
|
||||
type PluginSettingsSwetrix = {
|
||||
id: string | null;
|
||||
url: string | null;
|
||||
}
|
||||
11
astro/src/types/settings/project.d.ts
vendored
Normal file
11
astro/src/types/settings/project.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
type ProjectSettings = {
|
||||
enabled: string;
|
||||
|
||||
title: string;
|
||||
subtext: string | null;
|
||||
|
||||
indexRouteTemplate: string;
|
||||
projectRouteTemplate: string;
|
||||
|
||||
lastModified: Date;
|
||||
}
|
||||
4
astro/src/types/settings/robots.d.ts
vendored
Normal file
4
astro/src/types/settings/robots.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
type RobotsSettings = {
|
||||
crawlers: string[];
|
||||
extraContent: string | null;
|
||||
}
|
||||
8
astro/src/types/settings/setting.d.ts
vendored
Normal file
8
astro/src/types/settings/setting.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
type GlobalSettings = {
|
||||
website: WebsiteSettings;
|
||||
blog: BlogSettings;
|
||||
project: ProjectSettings;
|
||||
photo: WebsitePhotoSettings;
|
||||
sitemap: SitemapSettings;
|
||||
plugins: PluginSettings;
|
||||
}
|
||||
5
astro/src/types/settings/sitemap.d.ts
vendored
Normal file
5
astro/src/types/settings/sitemap.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
type SitemapSettings = {
|
||||
perPage: number;
|
||||
|
||||
lastModified: Date;
|
||||
}
|
||||
34
astro/src/types/settings/website.d.ts
vendored
Normal file
34
astro/src/types/settings/website.d.ts
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
type WebsiteSettings = {
|
||||
domainName: string;
|
||||
titleTemplate: string;
|
||||
applicationName: string;
|
||||
|
||||
colors: WebsiteSettingsColors;
|
||||
|
||||
author: WebsiteSettingsAuthor;
|
||||
|
||||
owner: string;
|
||||
designer: string;
|
||||
developer: string;
|
||||
copyright: string;
|
||||
|
||||
twitter: WebsiteSettingsTwitter;
|
||||
|
||||
lastModified: Date;
|
||||
}
|
||||
|
||||
type WebsiteSettingsColors = {
|
||||
primary: string;
|
||||
secondary: string | null;
|
||||
}
|
||||
|
||||
type WebsiteSettingsAuthor = {
|
||||
name: string;
|
||||
url: string;
|
||||
}
|
||||
|
||||
type WebsiteSettingsTwitter = {
|
||||
id: string;
|
||||
handle: string;
|
||||
}
|
||||
|
||||
9
astro/src/types/sitemaps/sitemap.d.ts
vendored
Normal file
9
astro/src/types/sitemaps/sitemap.d.ts
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
type SitemapIndex = {
|
||||
url: string;
|
||||
lastModified: Date;
|
||||
}
|
||||
|
||||
type SitemapPage = {
|
||||
url: string;
|
||||
lastModified: Date;
|
||||
}
|
||||
@@ -9,6 +9,9 @@
|
||||
],
|
||||
"compilerOptions": {
|
||||
"jsx": "react-jsx",
|
||||
"jsxImportSource": "preact"
|
||||
"jsxImportSource": "preact",
|
||||
"paths": {
|
||||
"@/*": ["./src/*"]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user