Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101439411
HttpUriPlugin.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 10, 12:08
Size
1 KB
Mime Type
text/x-c++
Expires
Wed, Feb 12, 12:08 (1 d, 12 h)
Engine
blob
Format
Raw Data
Handle
24147112
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
HttpUriPlugin.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict"
;
const
{
URL
}
=
require
(
"url"
);
const
NormalModule
=
require
(
"../NormalModule"
);
/** @typedef {import("../Compiler")} Compiler */
class
HttpUriPlugin
{
/**
* Apply the plugin
* @param {Compiler} compiler the compiler instance
* @returns {void}
*/
apply
(
compiler
)
{
compiler
.
hooks
.
compilation
.
tap
(
"HttpUriPlugin"
,
(
compilation
,
{
normalModuleFactory
})
=>
{
normalModuleFactory
.
hooks
.
resolveForScheme
.
for
(
"http"
)
.
tap
(
"HttpUriPlugin"
,
resourceData
=>
{
const
url
=
new
URL
(
resourceData
.
resource
);
resourceData
.
path
=
url
.
origin
+
url
.
pathname
;
resourceData
.
query
=
url
.
search
;
resourceData
.
fragment
=
url
.
hash
;
return
/** @type {true} */
(
true
);
});
NormalModule
.
getCompilationHooks
(
compilation
)
.
readResourceForScheme
.
for
(
"http"
)
.
tapAsync
(
"HttpUriPlugin"
,
(
resource
,
module
,
callback
)
=>
{
return
require
(
"http"
).
get
(
new
URL
(
resource
),
res
=>
{
if
(
res
.
statusCode
!==
200
)
{
res
.
destroy
();
return
callback
(
new
Error
(
`
http
request
status
code
=
$
{
res
.
statusCode
}
`
)
);
}
const
bufferArr
=
[];
res
.
on
(
"data"
,
chunk
=>
{
bufferArr
.
push
(
chunk
);
});
res
.
on
(
"end"
,
()
=>
{
if
(
!
res
.
complete
)
{
return
callback
(
new
Error
(
"http request was terminated"
));
}
callback
(
null
,
Buffer
.
concat
(
bufferArr
));
});
});
});
}
);
}
}
module
.
exports
=
HttpUriPlugin
;
Event Timeline
Log In to Comment