summaryrefslogtreecommitdiff
path: root/examples/middleware/src/middleware.ts
blob: 4854105caec9cd53df241cff8a801e881dc84c70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import { defineMiddleware, sequence } from 'astro:middleware';
import htmlMinifier from 'html-minifier';

const limit = 50;

const loginInfo: {
	token: undefined | string;
	currentTime: undefined | number;
} = {
	token: undefined,
	currentTime: undefined,
};

export const minifier = defineMiddleware(async (_context, next) => {
	const response = await next();
	// check if the response is returning some HTML
	if (response.headers.get('content-type') === 'text/html') {
		let headers = response.headers;
		let html = await response.text();
		let newHtml = htmlMinifier.minify(html, {
			removeAttributeQuotes: true,
			collapseWhitespace: true,
		});
		return new Response(newHtml, {
			status: 200,
			headers,
		});
	}
	return response;
});

const validation = defineMiddleware(async (context, next) => {
	if (context.request.url.endsWith('/admin')) {
		if (loginInfo.currentTime) {
			const difference = new Date().getTime() - loginInfo.currentTime;
			if (difference > limit) {
				console.log('hit threshold');
				loginInfo.token = undefined;
				loginInfo.currentTime = undefined;
				return context.redirect('/login');
			}
		}
		// we naively check if we have a token
		if (loginInfo.token && loginInfo.token === 'loggedIn') {
			// we fill the locals with user-facing information
			context.locals.user = {
				name: 'AstroUser',
				surname: 'AstroSurname',
			};
			return await next();
		} else {
			loginInfo.token = undefined;
			loginInfo.currentTime = undefined;
			return context.redirect('/login');
		}
	} else if (context.request.url.endsWith('/api/login')) {
		const response = await next();
		// the login endpoint will return to us a JSON with username and password
    if (response.headers.get('content-type') === 'application/json') {
      const data = await response.json();
      // we naively check if username and password are equals to some string
      if (data.username === 'astro' && data.password === 'astro') {
        // we store the token somewhere outside of locals because the `locals` object is attached to the request
        // and when doing a redirect, we lose that information
        loginInfo.token = 'loggedIn';
        loginInfo.currentTime = new Date().getTime();
        return context.redirect('/admin');
      }
    }
    return response;
  } else if (context.request.url.endsWith('/api/logout')) {
		const response = await next();
    if (response.ok) {
      loginInfo.token = undefined;
      loginInfo.currentTime = undefined;
      return context.redirect('/login');
    }
    return response;
  }
	return next();
});

export const onRequest = sequence(validation, minifier);