Skip to content

Commit

Permalink
Bot部分文档内容
Browse files Browse the repository at this point in the history
  • Loading branch information
ForteScarlet committed Jun 19, 2024
1 parent 945e63a commit 6bd09ee
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 2 deletions.
76 changes: 75 additions & 1 deletion Writerside/topics/onebot11-OneBotBot.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,77 @@
---
switcher-label: JavaAPI风格
---

<show-structure depth="2"/>

# OneBotBot

TODO
表示一个 OneBot 的 bot 客户端实例,实现 `Bot`,由 `OneBotBotManager` 注册产生。

## Bot

`OneBot` 实现simbot标准接口 `Bot`,提供可支持的属性或能力。

<deflist>
<def id="prop-id" title="id">

配置中提供的 `botUniqueId`
用与 `OneBotBotManager` 中作为唯一标识。
</def>
<def id="prop-isMe" title="isMe(ID)">

判断提供的 `ID` 是否为自己。
首先依据 `id` 属性,如果内部的 `userId` 已经初始化,
则也会依据 `userId` 进行判断。

</def>
<def id="prop-name" title="name">

Bot自己的用户名。需要 `start` 后才会初始化,
否则获取会抛出异常。

</def>
<def id="prop-contactRelation" title="contactRelation">

联系人相关操作,即好友相关的关系操作。

</def>
<def id="prop-groupRelation" title="groupRelation">

与群聊相关的操作。

</def>
<def id="prop-guildRelation" title="guildRelation">

OneBot11协议不支持 `Guild` (即频道) 相关的操作,始终得到 `null`

</def>
<def id="prop-start" title="start()">

</def>
</deflist>

除了上述的属性和API,`OneBotBot` 还提供了一些额外的内容:

<deflist>
<def id="prop-decoderJson" title="decoderJson"></def>
<def id="prop-configuration" title="configuration"></def>
<def id="prop-apiClient" title="apiClient"></def>
<def id="prop-apiHost" title="apiHost"></def>
<def id="prop-accessToken" title="accessToken"></def>
<def id="prop-userId" title="userId"></def>
<def id="prop-queryLoginInfo" title="queryLoginInfo()"></def>
<def id="prop-getCookies" title="getCookies(...)"></def>
<def id="prop-getCredentials" title="getCredentials(...)"></def>
<def id="prop-getCsrfToken" title="getCsrfToken()"></def>
</deflist>

### 关系对象

即对好友和群的相关操作,通过 `contactRelation``groupRelation` 进行。

#### OneBotBotFriendRelation
#### OneBotBotGroupRelation


<warning>TODO</warning>
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import kotlin.jvm.JvmSynthetic


/**
* 一个 OneBot协议的 [Bot]。
* 一个 OneBot 协议的 [Bot]。

Check warning on line 46 in simbot-component-onebot-v11/simbot-component-onebot-v11-core/src/commonMain/kotlin/love/forte/simbot/component/onebot/v11/core/bot/OneBotBot.kt

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Unresolved reference in KDoc

Cannot resolve symbol 'Bot'
*
* ### Bot 的终止
* Bot的运行状态 ([isActive]) 可能会因为一些原因被更改:

Check warning on line 49 in simbot-component-onebot-v11/simbot-component-onebot-v11-core/src/commonMain/kotlin/love/forte/simbot/component/onebot/v11/core/bot/OneBotBot.kt

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Unresolved reference in KDoc

Cannot resolve symbol 'isActive'
Expand Down

0 comments on commit 6bd09ee

Please sign in to comment.