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
etersoft
eepm
Commits
77cd8346
Commit
77cd8346
authored
Apr 10, 2023
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eget: implement download_to_ipfs and use it
parent
cf455407
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
12 deletions
+16
-12
tools_eget
bin/tools_eget
+16
-12
No files found.
bin/tools_eget
View file @
77cd8346
...
...
@@ -878,6 +878,19 @@ fi
if
[
-n
"
$EGET_IPFS_DB
"
]
&&
!
is_ipfsurl
"
$1
"
;
then
download_to_ipfs
()
{
local
URL
=
"
$1
"
local
res
#res="$(url_scat "$URL" | ipfs_put )" || return
#res="$(echo "$res" | grep "^added Qm")" || return 1
#CID="$(echo "$res" | cut -f2 -d" ")"
# with -q to disable progress (mixed with download progress)
res
=
"
$(
url_scat
"
$URL
"
| ipfs_put
-q
)
"
||
return
is_ipfs_hash
"
$res
"
||
return
1
echo
"
$res
"
}
# put remote content to stdout
scat
()
{
...
...
@@ -894,10 +907,7 @@ scat()
return
fi
local
res
res
=
"
$(
url_scat
"
$URL
"
| ipfs_put
)
"
||
return
res
=
"
$(
echo
"
$res
"
|
grep
"^added Qm"
)
"
||
return
1
CID
=
"
$(
echo
"
$res
"
|
cut
-f2
-d
" "
)
"
CID
=
"
$(
download_to_ipfs
"
$URL
"
)
"
||
return
ipfs_cat
"
$CID
"
||
return
...
...
@@ -940,10 +950,7 @@ sget()
TARGET
=
"
$FN
"
fi
local
res
res
=
"
$(
url_scat
"
$URL
"
| ipfs_put
)
"
||
return
res
=
"
$(
echo
"
$res
"
|
grep
"^added Qm"
)
"
||
return
1
CID
=
"
$(
echo
"
$res
"
|
cut
-f2
-d
" "
)
"
CID
=
"
$(
download_to_ipfs
"
$REALURL
"
)
"
||
return
ipfs_get
"
$CID
"
"
$TARGET
"
||
return
put_cid_and_url
"
$URL
"
"
$CID
"
"
$FN
"
...
...
@@ -959,10 +966,7 @@ check_url_is_accessible()
return
fi
local
res
res
=
"
$(
url_scat
"
$URL
"
| ipfs_put
)
"
||
return
res
=
"
$(
echo
"
$res
"
|
grep
"^added Qm"
)
"
||
return
1
CID
=
"
$(
echo
"
$res
"
|
cut
-f2
-d
" "
)
"
CID
=
"
$(
download_to_ipfs
"
$REALURL
"
)
"
||
return
ipfs_cat
"
$CID
"
>
/dev/null
||
return
local
FN
=
"
$(
url_get_filename
"
$URL
"
)
"
||
return
...
...
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