summaryrefslogtreecommitdiffstats
path: root/remote/cdp/test/browser/network/sjs-cookies.sjs
blob: d9107195a441f8938154daa5ebaa9bba6186a81a (plain)
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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

Cu.importGlobalProperties(["URLSearchParams"]);

function handleRequest(request, response) {
  const queryString = new URLSearchParams(request.queryString);

  response.setStatusLine(request.httpVersion, 200, "OK");
  response.setHeader("Content-Type", "text/plain; charset=utf-8", false);

  if (queryString.has("name") && queryString.has("value")) {
    const name = queryString.get("name");
    const value = queryString.get("value");
    const path = queryString.get("path") || "/";

    const expiry = queryString.get("expiry");
    const httpOnly = queryString.has("httpOnly");
    const secure = queryString.has("secure");
    const sameSite = queryString.get("sameSite");

    let cookie = `${name}=${value}; Path=${path}`;

    if (expiry) {
      cookie += `; Expires=${expiry}`;
    }

    if (httpOnly) {
      cookie += "; HttpOnly";
    }

    if (sameSite != undefined) {
      cookie += `; sameSite=${sameSite}`;
    }

    if (secure) {
      cookie += "; Secure";
    }

    response.setHeader("Set-Cookie", cookie, true);
    response.write(`Set cookie: ${cookie}`);
  }
}