Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
G
go-cqhttp
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
go-cqhttp
Commits
4e2fb91d
Commit
4e2fb91d
authored
Aug 23, 2020
by
Mrs4s
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
image download supported.
parent
37ea92b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
coolq/api.go
coolq/api.go
+10
-2
No files found.
coolq/api.go
View file @
4e2fb91d
...
@@ -503,11 +503,19 @@ func (bot *CQBot) CQGetImage(file string) MSG {
...
@@ -503,11 +503,19 @@ func (bot *CQBot) CQGetImage(file string) MSG {
if
b
,
err
:=
ioutil
.
ReadFile
(
path
.
Join
(
global
.
IMAGE_PATH
,
file
));
err
==
nil
{
if
b
,
err
:=
ioutil
.
ReadFile
(
path
.
Join
(
global
.
IMAGE_PATH
,
file
));
err
==
nil
{
r
:=
binary
.
NewReader
(
b
)
r
:=
binary
.
NewReader
(
b
)
r
.
ReadBytes
(
16
)
r
.
ReadBytes
(
16
)
return
OK
(
MSG
{
msg
:=
MSG
{
"size"
:
r
.
ReadInt32
(),
"size"
:
r
.
ReadInt32
(),
"filename"
:
r
.
ReadString
(),
"filename"
:
r
.
ReadString
(),
"url"
:
r
.
ReadString
(),
"url"
:
r
.
ReadString
(),
})
}
local
:=
path
.
Join
(
global
.
CACHE_PATH
,
file
+
"."
+
path
.
Ext
(
msg
[
"filename"
]
.
(
string
)))
if
!
global
.
PathExists
(
local
)
{
if
data
,
err
:=
global
.
GetBytes
(
msg
[
"url"
]
.
(
string
));
err
==
nil
{
_
=
ioutil
.
WriteFile
(
local
,
data
,
0644
)
}
}
msg
[
"file"
]
=
local
return
OK
(
msg
)
}
}
return
Failed
(
100
)
return
Failed
(
100
)
}
}
...
...
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