Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
C
cdn-node-checker
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
cdn-node-checker
Commits
479d0773
You need to sign in or sign up before continuing.
Commit
479d0773
authored
Sep 01, 2022
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ignore cert error
parent
7564f0a5
Pipeline
#16318
passed with stages
in 32 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
run.ts
run.ts
+7
-1
No files found.
run.ts
View file @
479d0773
...
@@ -8,6 +8,7 @@ import { assert } from 'console';
...
@@ -8,6 +8,7 @@ import { assert } from 'console';
import
{
ping
}
from
'
icmp
'
;
import
{
ping
}
from
'
icmp
'
;
import
delay
from
'
delay
'
;
import
delay
from
'
delay
'
;
import
PQueue
from
'
p-queue
'
;
import
PQueue
from
'
p-queue
'
;
import
https
from
'
https
'
;
interface
Source
{
interface
Source
{
protocol
:
string
;
protocol
:
string
;
...
@@ -79,6 +80,11 @@ enum ConnectResult {
...
@@ -79,6 +80,11 @@ enum ConnectResult {
}
}
class
Checker
{
class
Checker
{
private
http
=
axios
.
create
({
httpsAgent
:
new
https
.
Agent
({
rejectUnauthorized
:
false
,
}),
});
private
client
:
Aliyun
;
private
client
:
Aliyun
;
private
cdnRecordsRegex
:
RegExp
[];
private
cdnRecordsRegex
:
RegExp
[];
static
order
=
0
;
static
order
=
0
;
...
@@ -193,7 +199,7 @@ class Checker {
...
@@ -193,7 +199,7 @@ class Checker {
private
async
connectHttpProcess
(
url
:
string
,
hostHeader
:
string
)
{
private
async
connectHttpProcess
(
url
:
string
,
hostHeader
:
string
)
{
try
{
try
{
await
axios
.
get
(
url
,
{
await
this
.
http
.
get
(
url
,
{
headers
:
{
Host
:
hostHeader
},
headers
:
{
Host
:
hostHeader
},
timeout
:
this
.
config
.
timeout
,
timeout
:
this
.
config
.
timeout
,
validateStatus
:
(
status
)
=>
status
<
500
,
validateStatus
:
(
status
)
=>
status
<
500
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment