Merge branch 'develop' of codeberg.org:calckey/calckey into develop
This commit is contained in:
commit
3dfb43be84
|
@ -109,6 +109,19 @@ id: 'aid'
|
|||
# Maximum lenght of an image caption or file comment (default 1500, max 8192)
|
||||
#maxCaptionLength: 1500
|
||||
|
||||
# Reserved usernames that only the administrator can register with
|
||||
reservedUsernames:
|
||||
- root
|
||||
- admin
|
||||
- system
|
||||
- test
|
||||
- proxy
|
||||
- relay
|
||||
- mod
|
||||
- moderator
|
||||
- info
|
||||
- information
|
||||
|
||||
# Whether disable HSTS
|
||||
#disableHsts: true
|
||||
|
||||
|
|
|
@ -77,6 +77,8 @@ export type Source = {
|
|||
sha256CertFingerprints?: string[];
|
||||
};
|
||||
|
||||
reservedUsernames?: string[];
|
||||
|
||||
// Managed hosting stuff
|
||||
maxUserSignups?: number;
|
||||
isManagedHosting?: boolean;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import { IsNull } from "typeorm";
|
||||
import { Users, UsedUsernames } from "@/models/index.js";
|
||||
import config from "@/config/index.js";
|
||||
import define from "../../define.js";
|
||||
|
||||
export const meta = {
|
||||
|
@ -40,7 +41,11 @@ export default define(meta, paramDef, async (ps) => {
|
|||
username: ps.username.toLowerCase(),
|
||||
});
|
||||
|
||||
const reserved = config.reservedUsernames?.includes(
|
||||
ps.username.toLowerCase(),
|
||||
);
|
||||
|
||||
return {
|
||||
available: exist === 0 && exist2 === 0,
|
||||
available: exist === 0 && exist2 === 0 && !reserved,
|
||||
};
|
||||
});
|
||||
|
|
|
@ -44,6 +44,11 @@ export default async (ctx: Koa.Context) => {
|
|||
const invitationCode = body["invitationCode"];
|
||||
const emailAddress = body["emailAddress"];
|
||||
|
||||
if (config.reservedUsernames?.includes(username.toLowerCase())) {
|
||||
ctx.status = 400;
|
||||
return;
|
||||
}
|
||||
|
||||
if (instance.emailRequiredForSignup) {
|
||||
if (emailAddress == null || typeof emailAddress !== "string") {
|
||||
ctx.status = 400;
|
||||
|
|
|
@ -35,7 +35,7 @@ const instance = props.instance ?? {
|
|||
'meta[name="theme-color-orig"]'
|
||||
) as HTMLMetaElement
|
||||
)?.content,
|
||||
software: Instance.softwareName || "Calckey",
|
||||
softwareName: Instance.softwareName || "Calckey",
|
||||
};
|
||||
|
||||
const capitalize = (s: string) => s && s[0].toUpperCase() + s.slice(1);
|
||||
|
|
|
@ -251,14 +251,18 @@ let showContent = $ref(false);
|
|||
min-height: 2em;
|
||||
max-height: 5em;
|
||||
filter: blur(4px);
|
||||
:deep(span) {
|
||||
animation: none !important;
|
||||
transform: none !important;
|
||||
}
|
||||
:deep(img) {
|
||||
filter: blur(12px);
|
||||
}
|
||||
}
|
||||
:deep(.fade) {
|
||||
inset: 0;
|
||||
top: 40px;
|
||||
}
|
||||
:deep(span) {
|
||||
animation: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
:deep(.fade) {
|
||||
|
|
|
@ -12,6 +12,24 @@
|
|||
--margin: var(--marginHalf);
|
||||
}
|
||||
|
||||
// https://larsenwork.com/easing-gradients/
|
||||
--gradient: hsl(0, 0%, 0%) 0%,
|
||||
hsla(0, 0%, 0%, 0.987) 8.1%,
|
||||
hsla(0, 0%, 0%, 0.951) 15.5%,
|
||||
hsla(0, 0%, 0%, 0.896) 22.5%,
|
||||
hsla(0, 0%, 0%, 0.825) 29%,
|
||||
hsla(0, 0%, 0%, 0.741) 35.3%,
|
||||
hsla(0, 0%, 0%, 0.648) 41.2%,
|
||||
hsla(0, 0%, 0%, 0.55) 47.1%,
|
||||
hsla(0, 0%, 0%, 0.45) 52.9%,
|
||||
hsla(0, 0%, 0%, 0.352) 58.8%,
|
||||
hsla(0, 0%, 0%, 0.259) 64.7%,
|
||||
hsla(0, 0%, 0%, 0.175) 71%,
|
||||
hsla(0, 0%, 0%, 0.104) 77.5%,
|
||||
hsla(0, 0%, 0%, 0.049) 84.5%,
|
||||
hsla(0, 0%, 0%, 0.013) 91.9%,
|
||||
hsla(0, 0%, 0%, 0) 100%;
|
||||
|
||||
//--ad: rgb(255 169 0 / 10%);
|
||||
}
|
||||
|
||||
|
@ -36,32 +54,6 @@ html {
|
|||
text-size-adjust: 100%;
|
||||
tab-size: 2;
|
||||
|
||||
&, * {
|
||||
scrollbar-color: var(--scrollbarHandle) inherit;
|
||||
scrollbar-width: thin;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-track {
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-thumb {
|
||||
background: var(--scrollbarHandle);
|
||||
|
||||
&:hover {
|
||||
background: var(--scrollbarHandleHover);
|
||||
}
|
||||
|
||||
&:active {
|
||||
background: var(--accent);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.f-1 {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
@ -78,6 +70,37 @@ html {
|
|||
font-family: sans-serif;
|
||||
}
|
||||
}
|
||||
body::-webkit-scrollbar {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
|
||||
}
|
||||
body::-webkit-scrollbar-thumb {
|
||||
border-radius: 100px;
|
||||
background-clip: content-box;
|
||||
border: 3px solid transparent;
|
||||
}
|
||||
::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
}
|
||||
::-webkit-scrollbar-track {
|
||||
background: inherit;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: var(--scrollbarHandle);
|
||||
min-height: 80px;
|
||||
|
||||
&:hover {
|
||||
background: var(--scrollbarHandleHover);
|
||||
background-clip: content-box;
|
||||
}
|
||||
|
||||
&:active {
|
||||
background: var(--accent);
|
||||
background-clip: content-box;
|
||||
}
|
||||
}
|
||||
|
||||
html._themeChanging_ {
|
||||
&, * {
|
||||
|
|
|
@ -278,16 +278,8 @@ function more(ev: MouseEvent) {
|
|||
height: 100%;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
-webkit-mask-image: linear-gradient(
|
||||
0deg,
|
||||
rgba(0, 0, 0, 0) 15%,
|
||||
rgba(0, 0, 0, 0.75) 100%
|
||||
);
|
||||
mask-image: linear-gradient(
|
||||
0deg,
|
||||
rgba(0, 0, 0, 0) 15%,
|
||||
rgba(0, 0, 0, 0.75) 100%
|
||||
);
|
||||
-webkit-mask-image: linear-gradient(var(--gradient));
|
||||
mask-image: linear-gradient(var(--gradient));
|
||||
}
|
||||
|
||||
> .account {
|
||||
|
|
Loading…
Reference in New Issue