Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
Mirai
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
MyCard
Mirai
Commits
f634a528
Commit
f634a528
authored
Feb 07, 2020
by
Him188
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add HighwayHelper
parent
a7857f14
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
118 additions
and
31 deletions
+118
-31
mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/ContactImpl.kt
...ommonMain/kotlin/net/mamoe/mirai/qqandroid/ContactImpl.kt
+65
-31
mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/network/highway/HighwayHelper.kt
...et/mamoe/mirai/qqandroid/network/highway/HighwayHelper.kt
+53
-0
No files found.
mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/ContactImpl.kt
View file @
f634a528
...
...
@@ -8,17 +8,15 @@ import net.mamoe.mirai.data.Profile
import
net.mamoe.mirai.message.data.CustomFaceFromFile
import
net.mamoe.mirai.message.data.Image
import
net.mamoe.mirai.message.data.MessageChain
import
net.mamoe.mirai.
qqandroid.io.serialization.readProtoBuf
import
net.mamoe.mirai.qqandroid.network.highway.Highway
import
net.mamoe.mirai.qqandroid.network.protocol.data.proto.C
SDataHighwayHead
import
net.mamoe.mirai.
message.data.NotOnlineImageFromFile
import
net.mamoe.mirai.qqandroid.network.highway.Highway
Helper
import
net.mamoe.mirai.qqandroid.network.protocol.data.proto.C
md0x352
import
net.mamoe.mirai.qqandroid.network.protocol.packet.chat.TroopManagement
import
net.mamoe.mirai.qqandroid.network.protocol.packet.chat.image.ImgStore
import
net.mamoe.mirai.qqandroid.network.protocol.packet.chat.image.LongConn
import
net.mamoe.mirai.qqandroid.network.protocol.packet.chat.receive.MessageSvc
import
net.mamoe.mirai.qqandroid.network.protocol.packet.withUse
import
net.mamoe.mirai.qqandroid.utils.toIpV4AddressString
import
net.mamoe.mirai.utils.*
import
net.mamoe.mirai.utils.io.PlatformSocket
import
net.mamoe.mirai.utils.io.discardExact
import
kotlin.coroutines.CoroutineContext
import
kotlin.properties.Delegates
...
...
@@ -53,7 +51,57 @@ internal class QQImpl(bot: QQAndroidBot, override val coroutineContext: Coroutin
}
override
suspend
fun
uploadImage
(
image
:
ExternalImage
):
Image
{
TODO
(
"not implemented"
)
bot
.
network
.
run
{
val
response
=
LongConn
.
OffPicUp
(
bot
.
client
,
Cmd0x352
.
TryUpImgReq
(
srcUin
=
bot
.
uin
.
toInt
(),
dstUin
=
id
.
toInt
(),
fileId
=
0
,
fileMd5
=
image
.
md5
,
fileSize
=
image
.
inputSize
.
toInt
(),
fileName
=
image
.
filename
,
imgOriginal
=
1
,
imgWidth
=
image
.
width
,
imgHeight
=
image
.
height
,
imgType
=
image
.
imageType
,
buType
=
1
)
).
sendAndExpect
<
LongConn
.
OffPicUp
.
Response
>()
return
when
(
response
)
{
is
LongConn
.
OffPicUp
.
Response
.
FileExists
->
NotOnlineImageFromFile
(
filepath
=
response
.
resourceId
,
md5
=
response
.
imageInfo
.
fileMd5
,
fileLength
=
response
.
imageInfo
.
fileSize
.
toInt
(),
height
=
response
.
imageInfo
.
fileHeight
,
width
=
response
.
imageInfo
.
fileWidth
,
resourceId
=
response
.
resourceId
)
is
LongConn
.
OffPicUp
.
Response
.
RequireUpload
->
{
HighwayHelper
.
uploadImage
(
client
=
bot
.
client
,
uin
=
bot
.
uin
,
serverIp
=
response
.
serverIp
[
2
].
toIpV4AddressString
(),
serverPort
=
response
.
serverPort
[
2
],
imageInput
=
image
.
input
,
inputSize
=
image
.
inputSize
.
toInt
(),
md5
=
image
.
md5
,
uKey
=
response
.
uKey
,
commandId
=
1
)
return
NotOnlineImageFromFile
(
filepath
=
response
.
resourceId
,
md5
=
image
.
md5
,
fileLength
=
image
.
inputSize
.
toInt
(),
height
=
image
.
height
,
width
=
image
.
width
,
resourceId
=
response
.
resourceId
)
}
is
LongConn
.
OffPicUp
.
Response
.
Failed
->
error
(
response
.
message
)
}
}
}
override
suspend
fun
queryProfile
():
Profile
{
...
...
@@ -341,31 +389,17 @@ internal class GroupImpl(
}
is
ImgStore
.
GroupPicUp
.
Response
.
RequireUpload
->
{
val
socket
=
PlatformSocket
()
socket
.
connect
(
response
.
uploadIpList
.
first
().
toIpV4AddressString
().
also
{
println
(
"serverIp=$it"
)
},
response
.
uploadPortList
.
first
())
// socket.use {
socket
.
send
(
Highway
.
RequestDataTrans
(
uin
=
bot
.
uin
,
command
=
"PicUp.DataUp"
,
sequenceId
=
bot
.
client
.
nextHighwayDataTransSequenceId
(),
uKey
=
response
.
uKey
,
data
=
image
.
input
,
dataSize
=
image
.
inputSize
.
toInt
(),
md5
=
image
.
md5
)
HighwayHelper
.
uploadImage
(
client
=
bot
.
client
,
uin
=
bot
.
uin
,
serverIp
=
response
.
uploadIpList
.
first
().
toIpV4AddressString
(),
serverPort
=
response
.
uploadPortList
.
first
(),
imageInput
=
image
.
input
,
inputSize
=
image
.
inputSize
.
toInt
(),
md5
=
image
.
md5
,
uKey
=
response
.
uKey
,
commandId
=
2
)
// }
//0A 3C 08 01 12 0A 31 39 39 34 37 30 31 30 32 31 1A 0C 50 69 63 55 70 2E 44 61 74 61 55 70 20 E9 A7 05 28 00 30 BD DB 8B 80 02 38 80 20 40 02 4A 0A 38 2E 32 2E 30 2E 31 32 39 36 50 84 10 12 3D 08 00 10 FD 08 18 00 20 FD 08 28 C6 01 38 00 42 10 D4 1D 8C D9 8F 00 B2 04 E9 80 09 98 EC F8 42 7E 4A 10 D4 1D 8C D9 8F 00 B2 04 E9 80 09 98 EC F8 42 7E 50 89 92 A2 FB 06 58 00 60 00 18 53 20 01 28 00 30 04 3A 00 40 E6 B7 F7 D9 80 2E 48 00 50 00
socket
.
read
().
withUse
{
discardExact
(
1
)
val
headLength
=
readInt
()
discardExact
(
4
)
val
proto
=
readProtoBuf
(
CSDataHighwayHead
.
RspDataHighwayHead
.
serializer
(),
length
=
headLength
)
check
(
proto
.
errorCode
==
0
)
{
"image upload failed: Transfer errno=${proto.errorCode}"
}
}
socket
.
close
()
val
resourceId
=
image
.
calculateImageResourceId
()
// return NotOnlineImageFromFile(
// resourceId = resourceId,
...
...
mirai-core-qqandroid/src/commonMain/kotlin/net/mamoe/mirai/qqandroid/network/highway/HighwayHelper.kt
0 → 100644
View file @
f634a528
package
net.mamoe.mirai.qqandroid.network.highway
import
kotlinx.io.core.Input
import
kotlinx.io.core.use
import
net.mamoe.mirai.qqandroid.io.serialization.readProtoBuf
import
net.mamoe.mirai.qqandroid.network.QQAndroidClient
import
net.mamoe.mirai.qqandroid.network.protocol.data.proto.CSDataHighwayHead
import
net.mamoe.mirai.qqandroid.network.protocol.packet.withUse
import
net.mamoe.mirai.utils.MiraiInternalAPI
import
net.mamoe.mirai.utils.io.PlatformSocket
import
net.mamoe.mirai.utils.io.discardExact
@UseExperimental
(
MiraiInternalAPI
::
class
)
internal
object
HighwayHelper
{
suspend
fun
uploadImage
(
client
:
QQAndroidClient
,
uin
:
Long
,
serverIp
:
String
,
serverPort
:
Int
,
uKey
:
ByteArray
,
imageInput
:
Input
,
inputSize
:
Int
,
md5
:
ByteArray
,
commandId
:
Int
// group=2, friend=1
)
{
val
socket
=
PlatformSocket
()
socket
.
connect
(
serverIp
,
serverPort
)
socket
.
use
{
socket
.
send
(
Highway
.
RequestDataTrans
(
uin
=
uin
,
command
=
"PicUp.DataUp"
,
sequenceId
=
client
.
nextHighwayDataTransSequenceId
(),
uKey
=
uKey
,
data
=
imageInput
,
dataSize
=
inputSize
,
md5
=
md5
,
commandId
=
commandId
)
)
//0A 3C 08 01 12 0A 31 39 39 34 37 30 31 30 32 31 1A 0C 50 69 63 55 70 2E 44 61 74 61 55 70 20 E9 A7 05 28 00 30 BD DB 8B 80 02 38 80 20 40 02 4A 0A 38 2E 32 2E 30 2E 31 32 39 36 50 84 10 12 3D 08 00 10 FD 08 18 00 20 FD 08 28 C6 01 38 00 42 10 D4 1D 8C D9 8F 00 B2 04 E9 80 09 98 EC F8 42 7E 4A 10 D4 1D 8C D9 8F 00 B2 04 E9 80 09 98 EC F8 42 7E 50 89 92 A2 FB 06 58 00 60 00 18 53 20 01 28 00 30 04 3A 00 40 E6 B7 F7 D9 80 2E 48 00 50 00
socket
.
read
().
withUse
{
discardExact
(
1
)
val
headLength
=
readInt
()
discardExact
(
4
)
val
proto
=
readProtoBuf
(
CSDataHighwayHead
.
RspDataHighwayHead
.
serializer
(),
length
=
headLength
)
check
(
proto
.
errorCode
==
0
)
{
"image upload failed: Transfer errno=${proto.errorCode}"
}
}
}
}
}
\ No newline at end of file
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