mirror of
https://github.com/mollersuite/monofile.git
synced 2024-11-24 22:56:26 -08:00
refactor: 👽 Remove v0 CSS API and migrate client to v1 CSS API
This commit is contained in:
parent
756077148a
commit
687e083ca2
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
<link
|
<link
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href="/auth/customCSS"
|
href="/api/v1/account/customization/css"
|
||||||
>
|
>
|
||||||
|
|
||||||
<link
|
<link
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
<link
|
<link
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href="/auth/customCSS"
|
href="/api/v1/account/customization/css"
|
||||||
>
|
>
|
||||||
|
|
||||||
<meta
|
<meta
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
href="/static/assets/icons/icon_temp.svg"
|
href="/static/assets/icons/icon_temp.svg"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<link rel="stylesheet" href="/auth/customCSS" />
|
<link rel="stylesheet" href="/api/v1/account/customization/css" />
|
||||||
|
|
||||||
<meta
|
<meta
|
||||||
name="viewport"
|
name="viewport"
|
||||||
|
|
|
@ -164,32 +164,6 @@ export default function (files: Files) {
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
authRoutes.post(
|
|
||||||
"/customcss",
|
|
||||||
requiresAccount,
|
|
||||||
requiresPermissions("customize"),
|
|
||||||
// Used body-parser
|
|
||||||
async (ctx) => {
|
|
||||||
const body = await ctx.req.json()
|
|
||||||
let acc = ctx.get("account") as Accounts.Account
|
|
||||||
|
|
||||||
if (typeof body.fileId != "string") body.fileId = undefined
|
|
||||||
|
|
||||||
if (
|
|
||||||
!body.fileId ||
|
|
||||||
(body.fileId.match(id_check_regex) == body.fileId &&
|
|
||||||
body.fileId.length <= config.maxUploadIdLength)
|
|
||||||
) {
|
|
||||||
acc.customCSS = body.fileId || undefined
|
|
||||||
if (!body.fileId) delete acc.customCSS
|
|
||||||
Accounts.save()
|
|
||||||
return ctx.text(`custom css saved`)
|
|
||||||
} else {
|
|
||||||
return ctx.text("invalid fileid", 400)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
authRoutes.post(
|
authRoutes.post(
|
||||||
"/embedcolor",
|
"/embedcolor",
|
||||||
requiresAccount,
|
requiresAccount,
|
||||||
|
@ -626,10 +600,5 @@ export default function (files: Files) {
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
authRoutes.get("/customCSS", async (ctx) => {
|
|
||||||
let acc = ctx.get("account")
|
|
||||||
if (acc?.customCSS) return ctx.redirect(`/file/${acc.customCSS}`)
|
|
||||||
else return ctx.text("")
|
|
||||||
})
|
|
||||||
return authRoutes
|
return authRoutes
|
||||||
}
|
}
|
||||||
|
|
|
@ -225,16 +225,25 @@ export function customcss(optPicker) {
|
||||||
}
|
}
|
||||||
]).then((exp) => {
|
]).then((exp) => {
|
||||||
if (exp && exp.selected) {
|
if (exp && exp.selected) {
|
||||||
fetch(`/auth/customcss`,{method:"POST", body:JSON.stringify({
|
fetch(`/api/v1/account/customization/css`, {
|
||||||
fileId:exp.fileid
|
method: "PUT",
|
||||||
})}).then((response) => {
|
body: JSON.stringify({
|
||||||
|
fileId: exp.fileid,
|
||||||
|
}),
|
||||||
|
}).then((response) => {
|
||||||
if (response.status != 200) {
|
if (response.status != 200) {
|
||||||
optPicker.picker(`${response.status} ${response.headers.get("x-backup-status-message") || response.statusText || ""}`,[])
|
optPicker.picker(
|
||||||
|
`${response.status} ${
|
||||||
|
response.headers.get("x-backup-status-message") ||
|
||||||
|
response.statusText ||
|
||||||
|
""
|
||||||
|
}`,
|
||||||
|
[]
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fetchAccountData()
|
fetchAccountData()
|
||||||
refreshNeeded.set(true);
|
refreshNeeded.set(true)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue