Compare commits
2 Commits
dfc3f4cd87
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 6114416b8b | |||
| 5771a182fe |
@@ -94,7 +94,10 @@ export async function createLinkHandler(
|
|||||||
) {
|
) {
|
||||||
|
|
||||||
// Using locals to retrieve decoded user JWT.
|
// Using locals to retrieve decoded user JWT.
|
||||||
const decodedUser: jwt.JwtDecoded | undefined = res.locals.user?.decoded;
|
// jwt.JwtDecoded when JWT is supplied
|
||||||
|
// undefined if not
|
||||||
|
// null if is invalid (expired)
|
||||||
|
const decodedUser: jwt.JwtDecoded | undefined | null = res.locals.user?.decoded;
|
||||||
const linkService = new LinkService();
|
const linkService = new LinkService();
|
||||||
const subdomainsAllowed: boolean = env.getBool('useSubdomains', true)!;
|
const subdomainsAllowed: boolean = env.getBool('useSubdomains', true)!;
|
||||||
const rewriteStrings: env.RewriteStrings = env.getRewriteStrings();
|
const rewriteStrings: env.RewriteStrings = env.getRewriteStrings();
|
||||||
@@ -114,7 +117,7 @@ export async function createLinkHandler(
|
|||||||
}
|
}
|
||||||
|
|
||||||
let user: User | null = null;
|
let user: User | null = null;
|
||||||
if (decodedUser !== undefined) {
|
if (decodedUser !== undefined && decodedUser !== null) {
|
||||||
// If user is logged in, retrieve the account.
|
// If user is logged in, retrieve the account.
|
||||||
const userService = new UserService();
|
const userService = new UserService();
|
||||||
user = await userService.findById(decodedUser.sub);
|
user = await userService.findById(decodedUser.sub);
|
||||||
|
|||||||
@@ -29,4 +29,4 @@ export type ErrorDTO = {
|
|||||||
// Used to check against reserved names.
|
// Used to check against reserved names.
|
||||||
export const disallowedUriSchema = z
|
export const disallowedUriSchema = z
|
||||||
.string()
|
.string()
|
||||||
.regex(/^(about|assets|healthcheck|kttydocs|panel)/);
|
.regex(/^(about|assets|healthcheck|kttydocs|panel|robots\.txt)/);
|
||||||
|
|||||||
Reference in New Issue
Block a user