-
Notifications
You must be signed in to change notification settings - Fork 9.5k
/
Copy pathhttp-status-code.js
68 lines (58 loc) · 2.47 KB
/
http-status-code.js
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
/**
* @license
* Copyright 2017 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {Audit} from '../audit.js';
import * as i18n from '../../lib/i18n/i18n.js';
import {MainResource} from '../../computed/main-resource.js';
const HTTP_UNSUCCESSFUL_CODE_LOW = 400;
const HTTP_UNSUCCESSFUL_CODE_HIGH = 599;
const UIStrings = {
/** Title of a Lighthouse audit that provides detail on the HTTP status code a page responds with. This descriptive title is shown when the page has responded with a valid HTTP status code. */
title: 'Page has successful HTTP status code',
/** Descriptive title of a Lighthouse audit that provides detail on the HTTP status code a page responds with. This descriptive title is shown when the page responds to requests with an HTTP status code that indicates the request was unsuccessful. */
failureTitle: 'Page has unsuccessful HTTP status code',
/** Description of a Lighthouse audit that tells the user *why* they need to serve pages with a valid HTTP status code. This is displayed after a user expands the section to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
description: 'Pages with unsuccessful HTTP status codes may not be indexed properly. ' +
'[Learn more about HTTP status codes](https://developer.chrome.com/docs/lighthouse/seo/http-status-code/).',
};
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
class HTTPStatusCode extends Audit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return {
id: 'http-status-code',
title: str_(UIStrings.title),
failureTitle: str_(UIStrings.failureTitle),
description: str_(UIStrings.description),
requiredArtifacts: ['DevtoolsLog', 'URL', 'GatherContext'],
supportedModes: ['navigation'],
};
}
/**
* @param {LH.Artifacts} artifacts
* @param {LH.Audit.Context} context
* @return {Promise<LH.Audit.Product>}
*/
static async audit(artifacts, context) {
const devtoolsLog = artifacts.DevtoolsLog;
const URL = artifacts.URL;
const mainResource = await MainResource.request({devtoolsLog, URL}, context);
const statusCode = mainResource.statusCode;
if (statusCode >= HTTP_UNSUCCESSFUL_CODE_LOW &&
statusCode <= HTTP_UNSUCCESSFUL_CODE_HIGH) {
return {
score: 0,
displayValue: `${statusCode}`,
};
}
return {
score: 1,
};
}
}
export default HTTPStatusCode;
export {UIStrings};