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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
ash / webui / diagnostics_ui / resources / network_card.ts [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import './diagnostics_card.js';
import './diagnostics_network_icon.js';
import './diagnostics_shared.css.js';
import './ip_config_info_drawer.js';
import './network_info.js';
import './network_troubleshooting.js';
import {I18nMixin} from 'chrome://resources/ash/common/cr_elements/i18n_mixin.js';
import {PolymerElementProperties} from 'chrome://resources/polymer/v3_0/polymer/interfaces.js';
import {PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';
import {TroubleshootingInfo} from './diagnostics_types.js';
import {filterNameServers, formatMacAddress, getNetworkCardTitle, getNetworkState, getNetworkType, isConnectedOrOnline, isNetworkMissingNameServers} from './diagnostics_utils.js';
import {getNetworkHealthProvider} from './mojo_interface_provider.js';
import {getTemplate} from './network_card.html.js';
import {Network, NetworkHealthProviderInterface, NetworkState, NetworkStateObserverReceiver, NetworkType} from './network_health_provider.mojom-webui.js';
const BASE_SUPPORT_URL = 'https://support.google.com/chromebook?p=diagnostics_';
const SETTINGS_URL = 'chrome://os-settings/';
/**
* Represents the state of the network troubleshooting banner.
*/
export enum TroubleshootingState {
DISABLED,
NOT_CONNECTED,
MISSING_IP_ADDRESS,
MISSING_NAME_SERVERS,
}
/**
* @fileoverview
* 'network-card' is a styling wrapper for a network-info element.
*/
const NetworkCardElementBase = I18nMixin(PolymerElement);
export class NetworkCardElement extends NetworkCardElementBase {
static get is(): 'network-card' {
return 'network-card' as const;
}
static get template(): HTMLTemplateElement {
return getTemplate();
}
static get properties(): PolymerElementProperties {
return {
guid: {
type: String,
value: '',
},
networkType: {
type: String,
value: '',
},
networkState: {
type: String,
value: '',
},
network: {
type: Object,
},
showNetworkDataPoints: {
type: Boolean,
computed: 'computeShouldShowNetworkDataPoints(network.state,' +
' unableToObtainIpAddress, isMissingNameServers)',
},
showTroubleshootingCard: {
type: Boolean,
value: false,
},
macAddress: {
type: String,
value: '',
},
unableToObtainIpAddress: {
type: Boolean,
value: false,
},
troubleshootingInfo: {
type: Object,
computed: 'computeTroubleshootingInfo(network.*,' +
' unableToObtainIpAddress, isMissingNameServers)',
},
timerId: {
type: Number,
value: -1,
},
timeoutInMs: {
type: Number,
value: 30000,
},
isMissingNameServers: {
type: Boolean,
value: false,
},
};
}
guid: string;
network: Network;
protected showNetworkDataPoints: boolean;
protected showTroubleshootingCard: boolean;
protected macAddress: string;
protected unableToObtainIpAddress: boolean;
protected troubleshootingInfo: TroubleshootingInfo;
protected isMissingNameServers: boolean;
private networkType: string;
private networkState: string;
private timerId: number;
private timeoutInMs: number;
private networkHealthProvider: NetworkHealthProviderInterface =
getNetworkHealthProvider();
private networkStateObserverReceiver: NetworkStateObserverReceiver|null =
null;
static get observers(): string[] {
return ['observeNetwork(guid)'];
}
override disconnectedCallback(): void {
super.disconnectedCallback();
this.resetTimer();
}
private observeNetwork(): void {
// If necessary, clear setTimeout and reset the timerId.
this.resetTimer();
// Reset this flag in case we were unable to obtain an IP Address for the
// previous network.
this.unableToObtainIpAddress = false;
if (!this.guid) {
return;
}
if (this.networkStateObserverReceiver) {
this.networkStateObserverReceiver.$.close();
this.networkStateObserverReceiver = null;
}
this.networkStateObserverReceiver = new NetworkStateObserverReceiver(this);
this.networkHealthProvider.observeNetwork(
this.networkStateObserverReceiver.$.bindNewPipeAndPassRemote(),
this.guid);
}
/**
* Implements NetworkStateObserver.onNetworkStateChanged
*/
onNetworkStateChanged(network: Network): void {
this.networkType = getNetworkType(network.type);
this.networkState = getNetworkState(network.state);
this.macAddress = network.macAddress || '';
// Remove '0.0.0.0' (if present) from list of name servers.
filterNameServers(network);
this.set('network', network);
const isIpAddressMissing = !network.ipConfig || !network.ipConfig.ipAddress;
const isTimerInProgress = this.timerId !== -1;
const isConnecting = network.state === NetworkState.kConnecting;
if (!isIpAddressMissing) {
this.isMissingNameServers = isNetworkMissingNameServers(network);
// Reset this flag if the current network now has a valid IP Address.
this.unableToObtainIpAddress = false;
}
if ((isIpAddressMissing && isConnecting) && !isTimerInProgress) {
// Wait 30 seconds before displaying the troubleshooting banner.
this.timerId = setTimeout(() => {
this.resetTimer();
this.unableToObtainIpAddress = true;
}, this.timeoutInMs);
}
}
protected getNetworkCardTitle(): string {
return getNetworkCardTitle(this.networkType, this.networkState);
}
protected computeShouldShowNetworkDataPoints(): boolean {
// Wait until the network is present before deciding.
if (!this.network) {
return false;
}
if (this.unableToObtainIpAddress || this.isMissingNameServers) {
return false;
}
// Show the data-points when portal, online, connected, or connecting.
switch (this.network.state) {
case NetworkState.kPortal:
case NetworkState.kOnline:
case NetworkState.kConnected:
case NetworkState.kConnecting:
return true;
default:
return false;
}
}
protected isNetworkDisabled(): boolean {
return this.network.state === NetworkState.kDisabled;
}
protected getMacAddress(): string {
if (!this.macAddress) {
return '';
}
return formatMacAddress(this.macAddress);
}
private getDisabledTroubleshootingInfo(): TroubleshootingInfo {
const linkText =
this.network && this.network.type === NetworkType.kCellular ?
this.i18n('reconnectLinkText') :
this.i18n('joinNetworkLinkText', this.networkType);
return {
header: this.i18n('disabledText', this.networkType),
linkText,
url: SETTINGS_URL,
};
}
private getNotConnectedTroubleshootingInfo(): TroubleshootingInfo {
return {
header: this.i18n('troubleshootingText', this.networkType),
linkText: this.i18n('troubleConnecting'),
url: BASE_SUPPORT_URL,
};
}
private computeTroubleshootingInfo(): TroubleshootingInfo {
let troubleshootingState: TroubleshootingState|null = null;
if (!this.network || isConnectedOrOnline(this.network.state)) {
// Hide the troubleshooting banner if we're in an active state
// unlesss the network's IP Address has been missing for >= 30
// seconds or we're missing name servers in which case we'd like
// to display the bannner to the user.
if (this.unableToObtainIpAddress) {
troubleshootingState = TroubleshootingState.MISSING_IP_ADDRESS;
}
if (this.isMissingNameServers) {
troubleshootingState = TroubleshootingState.MISSING_NAME_SERVERS;
}
if (troubleshootingState == null) {
this.showTroubleshootingCard = false;
return {
header: '',
linkText: '',
url: '',
};
}
}
const isDisabled = this.network.state === NetworkState.kDisabled;
// Show the not connected state for the Not Connected/Portal states.
const isNotConnected = [
NetworkState.kNotConnected,
NetworkState.kPortal,
].includes(this.network.state);
// Override the |troubleshootingState| value if necessary since the
// disabled and not connected states take precedence.
if (isNotConnected) {
troubleshootingState = TroubleshootingState.NOT_CONNECTED;
}
if (isDisabled) {
troubleshootingState = TroubleshootingState.DISABLED;
}
// At this point, |isConnectedOrOnline| is false, which means
// out network state is either disabled or not connected.
this.showTroubleshootingCard = true;
return this.getInfoProperties(troubleshootingState);
}
private getMissingIpAddressInfo(): TroubleshootingInfo {
return {
header: this.i18n('noIpAddressText'),
linkText: this.i18n('visitSettingsToConfigureLinkText'),
url: SETTINGS_URL,
};
}
private getMissingNameServersInfo(): TroubleshootingInfo {
return {
header: this.i18n('missingNameServersText'),
linkText: this.i18n('visitSettingsToConfigureLinkText'),
url: SETTINGS_URL,
};
}
private getInfoProperties(state: TroubleshootingState|
null): TroubleshootingInfo {
switch (state) {
case TroubleshootingState.DISABLED:
return this.getDisabledTroubleshootingInfo();
case TroubleshootingState.NOT_CONNECTED:
return this.getNotConnectedTroubleshootingInfo();
case TroubleshootingState.MISSING_IP_ADDRESS:
return this.getMissingIpAddressInfo();
case TroubleshootingState.MISSING_NAME_SERVERS:
return this.getMissingNameServersInfo();
default:
return {
header: '',
linkText: '',
url: '',
};
}
}
private resetTimer(): void {
if (this.timerId !== -1) {
clearTimeout(this.timerId);
this.timerId = -1;
}
}
getTimerIdForTesting(): number {
return this.timerId;
}
setTimeoutInMsForTesting(timeout: number): void {
this.timeoutInMs = timeout;
}
getTimeoutInMsForTesting(): number {
return this.timeoutInMs;
}
getUnableToObtainIpAddressForTesting(): boolean {
return this.unableToObtainIpAddress;
}
}
declare global {
interface HTMLElementTagNameMap {
[NetworkCardElement.is]: NetworkCardElement;
}
}
customElements.define(NetworkCardElement.is, NetworkCardElement);