Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vladislav
eepm
Commits
5f5ef795
Commit
5f5ef795
authored
Apr 11, 2023
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eget: add hack to get headers ever if HEAD is not allowed
parent
7c6318ac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
15 deletions
+30
-15
tools_eget
bin/tools_eget
+30
-15
No files found.
bin/tools_eget
View file @
5f5ef795
...
...
@@ -830,16 +830,17 @@ url_sget()
download_with_mirroring __wget
"
$URL
"
$WGETNAMEOPTIONS
}
url_
check
()
url_
get_response
()
{
local
URL
=
"
$1
"
__wget
--spider
-S
"
$URL
"
2>&1 |
grep
"HTTP/"
|
tail
-n1
|
grep
-q
"200"
}
url_get_headers
()
{
local
URL
=
"
$1
"
__wget
--spider
-S
"
$URL
"
2>&1 |
grep
-i
"^ *[[:alpha:]].*: "
|
sed
-e
's|^ *||'
local
answer
answer
=
"
$(
__wget
--spider
-S
"
$URL
"
2>&1
)
"
# HTTP/1.1 405 Method Not Allowed
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 405"
;
then
__wget
--start-pos
=
5000G
-S
"
$URL
"
2>&1
return
fi
echo
"
$answer
"
}
...
...
@@ -875,17 +876,19 @@ url_sget()
download_with_mirroring __curl
"
$URL
"
$CURLNAMEOPTIONS
}
url_
check
()
url_
get_response
()
{
local
URL
=
"
$1
"
__curl
-LI
"
$URL
"
2>&1 |
grep
"HTTP/"
|
tail
-n1
|
grep
-q
-w
"200
\|
404"
local
answer
answer
=
"
$(
__curl
-LI
"
$URL
"
2>&1
)
"
# HTTP/1.1 405 Method Not Allowed
if
echo
"
$answer
"
|
grep
-q
"^ *HTTP/[12.]* 405"
;
then
__curl
-L
-i
-r0-0
"
$URL
"
2>&1
return
fi
echo
"
$answer
"
}
url_get_headers
()
{
local
URL
=
"
$1
"
__curl
-LI
"
$URL
"
2>&1 |
grep
-i
"^ *[[:alpha:]].*: "
|
sed
-e
's|\r$||'
}
fi
...
...
@@ -893,6 +896,18 @@ fi
# Common code for both wget and curl (http related)
if
[
"
$EGET_BACKEND
"
=
"wget"
]
||
[
"
$EGET_BACKEND
"
=
"curl"
]
;
then
url_get_headers
()
{
local
URL
=
"
$1
"
url_get_response
"
$URL
"
|
grep
-i
"^ *[[:alpha:]].*: "
|
sed
-e
's|^ *||'
-e
's|\r$||'
}
url_check
()
{
local
URL
=
"
$1
"
url_get_response |
grep
"HTTP/"
|
tail
-n1
|
grep
-q
-w
"200
\|
404"
}
url_get_header
()
{
local
URL
=
"
$1
"
...
...
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