- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
72 lines
1.7 KiB
Plaintext
72 lines
1.7 KiB
Plaintext
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
/**
|
|
* Originally vendored from
|
|
* https://github.com/amasad/sane/blob/64ff3a870c42e84f744086884bf55a4f9c22d376/src/utils/recrawl-warning-dedupe.js
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
export default class RecrawlWarning {
|
|
static RECRAWL_WARNINGS: Array<RecrawlWarning> = [];
|
|
static REGEXP: RegExp =
|
|
/Recrawled this watch (\d+) times?, most recently because:\n([^:]+)/;
|
|
|
|
root: string;
|
|
count: number;
|
|
|
|
constructor(root: string, count: number) {
|
|
this.root = root;
|
|
this.count = count;
|
|
}
|
|
|
|
static findByRoot(root: string): ?RecrawlWarning {
|
|
for (let i = 0; i < this.RECRAWL_WARNINGS.length; i++) {
|
|
const warning = this.RECRAWL_WARNINGS[i];
|
|
if (warning.root === root) {
|
|
return warning;
|
|
}
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
static isRecrawlWarningDupe(warningMessage: mixed): boolean {
|
|
if (typeof warningMessage !== 'string') {
|
|
return false;
|
|
}
|
|
const match = warningMessage.match(this.REGEXP);
|
|
if (!match) {
|
|
return false;
|
|
}
|
|
const count = Number(match[1]);
|
|
const root = match[2];
|
|
|
|
const warning = this.findByRoot(root);
|
|
|
|
if (warning) {
|
|
// only keep the highest count, assume count to either stay the same or
|
|
// increase.
|
|
if (warning.count >= count) {
|
|
return true;
|
|
} else {
|
|
// update the existing warning to the latest (highest) count
|
|
warning.count = count;
|
|
return false;
|
|
}
|
|
} else {
|
|
this.RECRAWL_WARNINGS.push(new RecrawlWarning(root, count));
|
|
return false;
|
|
}
|
|
}
|
|
}
|