mirror of
http://shenjack.top:5100/shenjack/icalingua-python-bot.git
synced 2025-04-20 09:39:54 +08:00
Compare commits
No commits in common. "main" and "0.7.2" have entirely different histories.
2
.github/workflows/builds.yml
vendored
2
.github/workflows/builds.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
||||||
run: cargo build --release
|
run: cargo build --release
|
||||||
|
|
||||||
- name: 上传
|
- name: 上传
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ica-rs-b${{ github.run_number }}-${{ steps.get_version.outputs.value }}-py38-win-x64
|
name: ica-rs-b${{ github.run_number }}-${{ steps.get_version.outputs.value }}-py38-win-x64
|
||||||
path: ./target/release/ica-rs.exe
|
path: ./target/release/ica-rs.exe
|
||||||
|
|
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
|
@ -39,7 +39,7 @@ jobs:
|
||||||
run: cargo build --release
|
run: cargo build --release
|
||||||
|
|
||||||
- name: 上传
|
- name: 上传
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ica-rs-b${{ github.run_number }}-${{ steps.get_version.outputs.value }}-py38-win-x64
|
name: ica-rs-b${{ github.run_number }}-${{ steps.get_version.outputs.value }}-py38-win-x64
|
||||||
path: ./target/release/ica-rs.exe
|
path: ./target/release/ica-rs.exe
|
||||||
|
|
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,13 +1,13 @@
|
||||||
venv
|
venv
|
||||||
env*
|
env*
|
||||||
|
|
||||||
config*.toml
|
config.toml
|
||||||
|
|
||||||
.idea
|
.idea
|
||||||
*.pyc
|
*.pyc
|
||||||
*__pycache__/
|
*__pycache__/
|
||||||
|
|
||||||
make.*
|
make.ps1
|
||||||
|
|
||||||
# Added by cargo
|
# Added by cargo
|
||||||
/target
|
/target
|
||||||
|
|
1398
Cargo.lock
generated
1398
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
|
@ -5,6 +5,6 @@ members = [
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
rust_socketio = { git = "https://github.com/shenjackyuanjie/rust-socketio.git", branch = "main" }
|
# rust_socketio = { git = "https://github.com/shenjackyuanjie/rust-socketio.git", branch = "message_pack" }
|
||||||
# rust_socketio = { path = "../../rust-socketio/socketio" }
|
# rust_socketio = { path = "../../rust-socketio/socketio" }
|
||||||
# pyo3 = { git = "https://github.com/PyO3/pyo3.git", branch = "main" }
|
# pyo3 = { git = "https://github.com/PyO3/pyo3.git", branch = "main" }
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ica-rs"
|
name = "ica-rs"
|
||||||
version = "0.9.0"
|
version = "0.7.2"
|
||||||
edition = "2024"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
@ -25,8 +25,8 @@ ed25519-dalek = { version = "2.1", optional = true }
|
||||||
hex = { version = "0.4", optional = true }
|
hex = { version = "0.4", optional = true }
|
||||||
|
|
||||||
# tailchat
|
# tailchat
|
||||||
reqwest = { version = "0.12", optional = true, features = ["multipart"] }
|
reqwest = { version = "0.12.4", optional = true, features = ["multipart"] }
|
||||||
md-5 = { version = "0.10", optional = true }
|
md-5 = { version = "0.10.6", optional = true }
|
||||||
|
|
||||||
# ica & tailchat (socketio)
|
# ica & tailchat (socketio)
|
||||||
rust_socketio = { version = "0.6.0", features = ["async"], optional = true }
|
rust_socketio = { version = "0.6.0", features = ["async"], optional = true }
|
||||||
|
@ -36,19 +36,19 @@ serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
toml = "0.8"
|
toml = "0.8"
|
||||||
toml_edit = "0.22"
|
colored = "2.1"
|
||||||
colored = "3.0"
|
|
||||||
|
|
||||||
# runtime
|
# runtime
|
||||||
tokio = { version = "1.43", features = ["rt-multi-thread", "time", "signal", "macros"] }
|
tokio = { version = "1.37", features = ["full"] }
|
||||||
futures-util = "0.3"
|
futures-util = "0.3.30"
|
||||||
pyo3 = { version = "0.24", features = ["experimental-async"] }
|
pyo3 = { version = "0.22.2", features = ["experimental-async", "py-clone"] }
|
||||||
anyhow = { version = "1.0", features = ["backtrace"] }
|
anyhow = { version = "1.0", features = ["backtrace"] }
|
||||||
# async 这玩意以后在搞
|
# async 这玩意以后在搞
|
||||||
# pyo3-async = "0.3.2"
|
# pyo3-async = "0.3.2"
|
||||||
# pyo3-asyncio = { version = "0.20.0", features = ["attributes", "tokio-runtime"] }
|
# pyo3-asyncio = { version = "0.20.0", features = ["attributes", "tokio-runtime"] }
|
||||||
|
|
||||||
# log
|
# log
|
||||||
tracing = "0.1"
|
tracing = "0.1.40"
|
||||||
tracing-subscriber = { version = "0.3", features = ["time"] }
|
tracing-subscriber = { version = "0.3.18", features = ["time"] }
|
||||||
foldhash = "0.1.4"
|
thiserror = "1.0.63"
|
||||||
|
toml_edit = "0.22.20"
|
||||||
|
|
|
@ -21,5 +21,3 @@ use_field_init_shorthand = true
|
||||||
color = "Always"
|
color = "Always"
|
||||||
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
# 这样不用 nightly 也可以使用 unstable 特性
|
|
||||||
unstable_features = true
|
|
||||||
|
|
|
@ -102,7 +102,7 @@ impl BotConfig {
|
||||||
pub fn new_from_cli() -> Self {
|
pub fn new_from_cli() -> Self {
|
||||||
// let config_file_path = env::args().nth(1).expect("No config path given");
|
// let config_file_path = env::args().nth(1).expect("No config path given");
|
||||||
// -c <config_file_path>
|
// -c <config_file_path>
|
||||||
let mut config_file_path = "./config.toml".to_string();
|
let mut config_file_path = String::new();
|
||||||
let mut args = env::args();
|
let mut args = env::args();
|
||||||
while let Some(arg) = args.next() {
|
while let Some(arg) = args.next() {
|
||||||
if arg == "-c" {
|
if arg == "-c" {
|
||||||
|
|
|
@ -13,9 +13,7 @@ pub type MessageId = String;
|
||||||
|
|
||||||
#[allow(unused)]
|
#[allow(unused)]
|
||||||
pub trait RoomIdTrait {
|
pub trait RoomIdTrait {
|
||||||
/// 判断是否是群聊
|
|
||||||
fn is_room(&self) -> bool;
|
fn is_room(&self) -> bool;
|
||||||
/// 判断是否是私聊
|
|
||||||
fn is_chat(&self) -> bool { !self.is_room() }
|
fn is_chat(&self) -> bool { !self.is_room() }
|
||||||
fn as_room_id(&self) -> RoomId;
|
fn as_room_id(&self) -> RoomId;
|
||||||
fn as_chat_id(&self) -> RoomId;
|
fn as_chat_id(&self) -> RoomId;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
use crate::data_struct::ica::messages::{At, LastMessage, SendMessage};
|
use crate::data_struct::ica::messages::{At, LastMessage};
|
||||||
use crate::data_struct::ica::{RoomId, UserId};
|
use crate::data_struct::ica::RoomId;
|
||||||
|
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use serde_json::{Number, Value as JsonValue};
|
use serde_json::Value as JsonValue;
|
||||||
|
|
||||||
/// export default interface Room {
|
/// export default interface Room {
|
||||||
/// roomId: number
|
/// roomId: number
|
||||||
|
@ -32,30 +32,14 @@ pub struct Room {
|
||||||
// pub users: JsonValue,
|
// pub users: JsonValue,
|
||||||
pub at: At,
|
pub at: At,
|
||||||
pub last_message: LastMessage,
|
pub last_message: LastMessage,
|
||||||
// 这俩都没啥用
|
pub auto_download: Option<String>,
|
||||||
// pub auto_download: Option<String>,
|
pub download_path: Option<String>,
|
||||||
// pub download_path: Option<String>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Room {
|
impl Room {
|
||||||
pub fn new_from_json(raw_json: &JsonValue) -> Self {
|
pub fn new_from_json(json: &JsonValue) -> Self {
|
||||||
let mut parse_json = raw_json.clone();
|
let inner = serde_json::from_value::<InnerRoom>(json.clone()).unwrap();
|
||||||
// 手动 patch 一下 roomId
|
let at = At::new_from_json(&json["at"]);
|
||||||
// ica issue: https://github.com/Icalingua-plus-plus/Icalingua-plus-plus/issues/793
|
|
||||||
if parse_json.get("roomId").is_none_or(|id| id.is_null()) {
|
|
||||||
use tracing::warn;
|
|
||||||
warn!("Room::new_from_json roomId is None, patching it to -1, raw: {:?}", raw_json);
|
|
||||||
parse_json["roomId"] = JsonValue::Number(Number::from(-1));
|
|
||||||
}
|
|
||||||
// 现在 fix 了
|
|
||||||
|
|
||||||
let inner = match serde_json::from_value::<InnerRoom>(parse_json) {
|
|
||||||
Ok(data) => data,
|
|
||||||
Err(e) => {
|
|
||||||
panic!("Room::new_from_json error: {}, raw: {:#?}", e, raw_json);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
let at = At::new_from_json(&raw_json["at"]);
|
|
||||||
Self {
|
Self {
|
||||||
room_id: inner.room_id,
|
room_id: inner.room_id,
|
||||||
room_name: inner.room_name,
|
room_name: inner.room_name,
|
||||||
|
@ -66,19 +50,15 @@ impl Room {
|
||||||
// users: inner.users,
|
// users: inner.users,
|
||||||
at,
|
at,
|
||||||
last_message: inner.last_message,
|
last_message: inner.last_message,
|
||||||
// download_path: inner.download_path,
|
auto_download: inner.auto_download,
|
||||||
|
download_path: inner.download_path,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn new_message_to(&self, content: String) -> SendMessage {
|
|
||||||
SendMessage::new(content, self.room_id, None)
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
fn room_id_default() -> RoomId { -1 }
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, Deserialize, Serialize)]
|
#[derive(Debug, Clone, Deserialize, Serialize)]
|
||||||
struct InnerRoom {
|
struct InnerRoom {
|
||||||
#[serde(rename = "roomId", default = "room_id_default")]
|
#[serde(rename = "roomId")]
|
||||||
pub room_id: RoomId,
|
pub room_id: RoomId,
|
||||||
#[serde(rename = "roomName")]
|
#[serde(rename = "roomName")]
|
||||||
pub room_name: String,
|
pub room_name: String,
|
||||||
|
@ -95,43 +75,8 @@ struct InnerRoom {
|
||||||
// 忽略 at
|
// 忽略 at
|
||||||
#[serde(rename = "lastMessage")]
|
#[serde(rename = "lastMessage")]
|
||||||
pub last_message: LastMessage,
|
pub last_message: LastMessage,
|
||||||
// 这俩都没啥用
|
#[serde(rename = "autoDownload")]
|
||||||
// #[serde(rename = "autoDownload")]
|
pub auto_download: Option<String>,
|
||||||
// pub auto_download: Option<String>,
|
#[serde(rename = "downloadPath")]
|
||||||
// #[serde(rename = "downloadPath")]
|
pub download_path: Option<String>,
|
||||||
// pub download_path: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// ```json
|
|
||||||
/// {
|
|
||||||
/// "comment": "问题:从哪里了解到的本群\n答案:aaa",
|
|
||||||
/// "flag": "e4cd5a892ba34bed063196a0cc47a8",
|
|
||||||
/// "group_id": xxxxx,
|
|
||||||
/// "group_name": "Nuitka 和 Python 打包",
|
|
||||||
/// "nickname": "jashcken",
|
|
||||||
/// "post_type": "request",
|
|
||||||
/// "request_type": "group",
|
|
||||||
/// "self_id": 45620725,
|
|
||||||
/// "sub_type": "add",
|
|
||||||
/// "time": 1743372872,
|
|
||||||
/// "tips": "",
|
|
||||||
/// "user_id": 3838663305
|
|
||||||
/// }
|
|
||||||
/// ```
|
|
||||||
#[derive(Debug, Clone, Deserialize, Serialize)]
|
|
||||||
pub struct JoinRequestRoom {
|
|
||||||
/// 问题+答案
|
|
||||||
pub comment: String,
|
|
||||||
pub group_id: RoomId,
|
|
||||||
pub group_name: String,
|
|
||||||
pub user_id: UserId,
|
|
||||||
pub nickname: String,
|
|
||||||
|
|
||||||
// 剩下的应该没用了……吧?
|
|
||||||
pub request_type: String,
|
|
||||||
pub post_type: String,
|
|
||||||
pub sub_type: String,
|
|
||||||
pub time: i64,
|
|
||||||
pub tips: String,
|
|
||||||
pub flag: String,
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ use crate::data_struct::ica::{MessageId, RoomId, UserId};
|
||||||
|
|
||||||
use chrono::DateTime;
|
use chrono::DateTime;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use serde_json::{Value as JsonValue, json};
|
use serde_json::{json, Value as JsonValue};
|
||||||
use tracing::warn;
|
use tracing::warn;
|
||||||
|
|
||||||
pub mod msg_trait;
|
pub mod msg_trait;
|
||||||
|
@ -41,9 +41,8 @@ pub struct LastMessage {
|
||||||
pub content: Option<String>,
|
pub content: Option<String>,
|
||||||
pub timestamp: Option<String>,
|
pub timestamp: Option<String>,
|
||||||
pub username: Option<String>,
|
pub username: Option<String>,
|
||||||
// 因为这玩意可能返回 raw buffer, 所以先不解析了
|
#[serde(rename = "userId")]
|
||||||
// #[serde(rename = "userId")]
|
pub user_id: Option<i64>,
|
||||||
// pub user_id: Option<i64>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
|
||||||
|
@ -331,7 +330,7 @@ impl SendMessage {
|
||||||
/// file_type: 图片类型(MIME) (image/png; image/jpeg)
|
/// file_type: 图片类型(MIME) (image/png; image/jpeg)
|
||||||
pub fn set_img(&mut self, file: &Vec<u8>, file_type: &str, as_sticker: bool) {
|
pub fn set_img(&mut self, file: &Vec<u8>, file_type: &str, as_sticker: bool) {
|
||||||
self.sticker = as_sticker;
|
self.sticker = as_sticker;
|
||||||
use base64::{Engine as _, engine::general_purpose};
|
use base64::{engine::general_purpose, Engine as _};
|
||||||
let base64_data = general_purpose::STANDARD.encode(file);
|
let base64_data = general_purpose::STANDARD.encode(file);
|
||||||
self.file_data = Some(format!("data:{};base64,{}", file_type, base64_data));
|
self.file_data = Some(format!("data:{};base64,{}", file_type, base64_data));
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,9 +4,9 @@ use chrono::DateTime;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use serde_json::Value as JsonValue;
|
use serde_json::Value as JsonValue;
|
||||||
|
|
||||||
use crate::MainStatus;
|
|
||||||
use crate::data_struct::ica::messages::{At, Message, NewMessage};
|
use crate::data_struct::ica::messages::{At, Message, NewMessage};
|
||||||
use crate::data_struct::ica::{MessageId, UserId};
|
use crate::data_struct::ica::{MessageId, UserId};
|
||||||
|
use crate::MainStatus;
|
||||||
|
|
||||||
impl Serialize for At {
|
impl Serialize for At {
|
||||||
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
||||||
|
@ -88,26 +88,7 @@ impl<'de> Deserialize<'de> for Message {
|
||||||
|
|
||||||
impl Display for Message {
|
impl Display for Message {
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
if !self.content.is_empty() && !self.content.trim().is_empty() {
|
|
||||||
write!(f, "{}|{}|{}|{}", self.msg_id(), self.sender_id, self.sender_name, self.content)
|
write!(f, "{}|{}|{}|{}", self.msg_id(), self.sender_id, self.sender_name, self.content)
|
||||||
} else if !self.files.is_empty() {
|
|
||||||
write!(
|
|
||||||
f,
|
|
||||||
"{}|{}|{}|{:?}",
|
|
||||||
self.msg_id(),
|
|
||||||
self.sender_id,
|
|
||||||
self.sender_name,
|
|
||||||
self.files[0].name
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
write!(
|
|
||||||
f,
|
|
||||||
"{}|{}|{}|empty content & empty files",
|
|
||||||
self.msg_id(),
|
|
||||||
self.sender_id,
|
|
||||||
self.sender_name
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -133,32 +114,14 @@ impl MessageTrait for NewMessage {
|
||||||
|
|
||||||
impl Display for NewMessage {
|
impl Display for NewMessage {
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
if !self.msg.content.trim().is_empty() {
|
|
||||||
write!(
|
write!(
|
||||||
f,
|
f,
|
||||||
"{}|{}|{}|{}|{}",
|
"{}|{}|{}|{}|{}",
|
||||||
self.msg.msg_id,
|
self.msg_id(),
|
||||||
self.room_id,
|
self.room_id,
|
||||||
self.msg.sender_id,
|
self.msg.sender_id,
|
||||||
self.msg.sender_name,
|
self.msg.sender_name,
|
||||||
self.msg.content
|
self.msg.content
|
||||||
)
|
)
|
||||||
} else if !self.msg.files.is_empty() {
|
|
||||||
write!(
|
|
||||||
f,
|
|
||||||
"{}|{}|{}|{}|{:?}",
|
|
||||||
self.msg.msg_id,
|
|
||||||
self.room_id,
|
|
||||||
self.msg.sender_id,
|
|
||||||
self.msg.sender_name,
|
|
||||||
self.msg.files[0]
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
write!(
|
|
||||||
f,
|
|
||||||
"{}|{}|{}|{}|empty content & empty files",
|
|
||||||
self.msg.msg_id, self.room_id, self.msg.sender_id, self.msg.sender_name
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
use std::fmt::Display;
|
use std::fmt::Display;
|
||||||
|
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use serde_json::{Value as JsonValue, json};
|
use serde_json::{json, Value as JsonValue};
|
||||||
|
|
||||||
use crate::data_struct::tailchat::{ConverseId, GroupId, MessageId, UserId};
|
use crate::data_struct::tailchat::{ConverseId, GroupId, MessageId, UserId};
|
||||||
|
|
||||||
|
|
|
@ -51,13 +51,11 @@ pub struct UpdateDMConverse {
|
||||||
#[allow(unused)]
|
#[allow(unused)]
|
||||||
pub type Writeable<T> = Arc<RwLock<T>>;
|
pub type Writeable<T> = Arc<RwLock<T>>;
|
||||||
|
|
||||||
#[allow(unused)]
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct BotStatus {
|
pub struct BotStatus {
|
||||||
user_id: UserId,
|
user_id: UserId,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unused)]
|
|
||||||
impl BotStatus {
|
impl BotStatus {
|
||||||
pub fn new(user_id: UserId) -> Self { Self { user_id } }
|
pub fn new(user_id: UserId) -> Self { Self { user_id } }
|
||||||
|
|
||||||
|
|
|
@ -33,8 +33,6 @@ pub enum PyPluginError {
|
||||||
/// 插件内函数调用错误
|
/// 插件内函数调用错误
|
||||||
/// pyerr, func_name, module_name
|
/// pyerr, func_name, module_name
|
||||||
FuncCallError(pyo3::PyErr, String, String),
|
FuncCallError(pyo3::PyErr, String, String),
|
||||||
/// 插件停不下来!
|
|
||||||
PluginNotStopped,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<rust_socketio::Error> for IcaError {
|
impl From<rust_socketio::Error> for IcaError {
|
||||||
|
@ -83,9 +81,6 @@ impl std::fmt::Display for PyPluginError {
|
||||||
PyPluginError::FuncCallError(py_err, name, module) => {
|
PyPluginError::FuncCallError(py_err, name, module) => {
|
||||||
write!(f, "插件内函数调用错误: {:#?}|{} in {}", py_err, name, module)
|
write!(f, "插件内函数调用错误: {:#?}|{} in {}", py_err, name, module)
|
||||||
}
|
}
|
||||||
PyPluginError::PluginNotStopped => {
|
|
||||||
write!(f, "插件未停止")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -116,7 +111,6 @@ impl std::error::Error for PyPluginError {
|
||||||
PyPluginError::CouldNotGetFunc(e, _, _) => Some(e),
|
PyPluginError::CouldNotGetFunc(e, _, _) => Some(e),
|
||||||
PyPluginError::FuncNotCallable(_, _) => None,
|
PyPluginError::FuncNotCallable(_, _) => None,
|
||||||
PyPluginError::FuncCallError(e, _, _) => Some(e),
|
PyPluginError::FuncCallError(e, _, _) => Some(e),
|
||||||
PyPluginError::PluginNotStopped => None,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,46 +1,17 @@
|
||||||
pub mod client;
|
pub mod client;
|
||||||
pub mod events;
|
pub mod events;
|
||||||
|
|
||||||
// use std::sync::OnceLock;
|
|
||||||
|
|
||||||
use colored::Colorize;
|
|
||||||
use rust_socketio::asynchronous::{Client, ClientBuilder};
|
use rust_socketio::asynchronous::{Client, ClientBuilder};
|
||||||
use rust_socketio::{Event, Payload, TransportType};
|
|
||||||
use rust_socketio::{async_any_callback, async_callback};
|
use rust_socketio::{async_any_callback, async_callback};
|
||||||
use tracing::{Level, event, span};
|
use rust_socketio::{Event, Payload, TransportType};
|
||||||
|
use tracing::{event, span, Level};
|
||||||
|
|
||||||
use crate::config::IcaConfig;
|
use crate::config::IcaConfig;
|
||||||
use crate::error::{ClientResult, IcaError};
|
use crate::error::{ClientResult, IcaError};
|
||||||
use crate::{StopGetter, version_str};
|
use crate::{version_str, StopGetter};
|
||||||
|
|
||||||
/// icalingua 客户端的兼容版本号
|
/// icalingua 客户端的兼容版本号
|
||||||
pub const ICA_PROTOCOL_VERSION: &str = "2.12.28";
|
pub const ICA_PROTOCOL_VERSION: &str = "2.12.12";
|
||||||
|
|
||||||
// mod status {
|
|
||||||
// use crate::data_struct::ica::all_rooms::Room;
|
|
||||||
// pub use crate::data_struct::ica::online_data::OnlineData;
|
|
||||||
|
|
||||||
// #[derive(Debug, Clone)]
|
|
||||||
// pub struct MainStatus {
|
|
||||||
// /// 是否启用 ica
|
|
||||||
// pub enable: bool,
|
|
||||||
// /// qq 是否登录
|
|
||||||
// pub qq_login: bool,
|
|
||||||
// /// 当前已加载的消息数量
|
|
||||||
// pub current_loaded_messages_count: u64,
|
|
||||||
// /// 房间数据
|
|
||||||
// pub rooms: Vec<Room>,
|
|
||||||
// /// 在线数据 (Icalingua 信息)
|
|
||||||
// pub online_status: OnlineData,
|
|
||||||
// }
|
|
||||||
|
|
||||||
// impl MainStatus {
|
|
||||||
// pub fn update_rooms(&mut self, room: Vec<Room>) { self.rooms = room; }
|
|
||||||
// pub fn update_online_status(&mut self, status: OnlineData) { self.online_status = status; }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// static ICA_STATUS: OnceLock<status::MainStatus> = OnceLock::new();
|
|
||||||
|
|
||||||
pub async fn start_ica(config: &IcaConfig, stop_reciver: StopGetter) -> ClientResult<(), IcaError> {
|
pub async fn start_ica(config: &IcaConfig, stop_reciver: StopGetter) -> ClientResult<(), IcaError> {
|
||||||
let span = span!(Level::INFO, "Icalingua Client");
|
let span = span!(Level::INFO, "Icalingua Client");
|
||||||
|
@ -48,7 +19,6 @@ pub async fn start_ica(config: &IcaConfig, stop_reciver: StopGetter) -> ClientRe
|
||||||
|
|
||||||
event!(Level::INFO, "ica-async-rs v{} initing", crate::ICA_VERSION);
|
event!(Level::INFO, "ica-async-rs v{} initing", crate::ICA_VERSION);
|
||||||
|
|
||||||
let start_connect_time = std::time::Instant::now();
|
|
||||||
let socket = match ClientBuilder::new(config.host.clone())
|
let socket = match ClientBuilder::new(config.host.clone())
|
||||||
.transport_type(TransportType::Websocket)
|
.transport_type(TransportType::Websocket)
|
||||||
.on_any(async_any_callback!(events::any_event))
|
.on_any(async_any_callback!(events::any_event))
|
||||||
|
@ -63,16 +33,11 @@ pub async fn start_ica(config: &IcaConfig, stop_reciver: StopGetter) -> ClientRe
|
||||||
.on("setMessages", async_callback!(events::set_messages))
|
.on("setMessages", async_callback!(events::set_messages))
|
||||||
.on("addMessage", async_callback!(events::add_message))
|
.on("addMessage", async_callback!(events::add_message))
|
||||||
.on("deleteMessage", async_callback!(events::delete_message))
|
.on("deleteMessage", async_callback!(events::delete_message))
|
||||||
.on("handleRequest", async_callback!(events::join_request))
|
|
||||||
.connect()
|
.connect()
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
Ok(client) => {
|
Ok(client) => {
|
||||||
event!(
|
event!(Level::INFO, "socketio connected");
|
||||||
Level::INFO,
|
|
||||||
"{}",
|
|
||||||
format!("socketio connected time: {:?}", start_connect_time.elapsed()).on_cyan()
|
|
||||||
);
|
|
||||||
client
|
client
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
|
@ -101,12 +66,11 @@ pub async fn start_ica(config: &IcaConfig, stop_reciver: StopGetter) -> ClientRe
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 等待停止信号
|
// 等待停止信号
|
||||||
event!(Level::INFO, "{}", "ica client waiting for stop signal".purple());
|
|
||||||
stop_reciver.await.ok();
|
stop_reciver.await.ok();
|
||||||
event!(Level::INFO, "{}", "socketio client stopping".yellow());
|
event!(Level::INFO, "socketio client stopping");
|
||||||
match socket.disconnect().await {
|
match socket.disconnect().await {
|
||||||
Ok(_) => {
|
Ok(_) => {
|
||||||
event!(Level::INFO, "{}", "socketio client stopped".green());
|
event!(Level::INFO, "socketio client stopped");
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
|
@ -114,7 +78,7 @@ pub async fn start_ica(config: &IcaConfig, stop_reciver: StopGetter) -> ClientRe
|
||||||
match e {
|
match e {
|
||||||
rust_socketio::Error::IncompleteResponseFromEngineIo(inner_e) => {
|
rust_socketio::Error::IncompleteResponseFromEngineIo(inner_e) => {
|
||||||
if inner_e.to_string().contains("AlreadyClosed") {
|
if inner_e.to_string().contains("AlreadyClosed") {
|
||||||
event!(Level::INFO, "{}", "socketio client stopped".green());
|
event!(Level::INFO, "socketio client stopped");
|
||||||
Ok(())
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
event!(Level::ERROR, "socketio 客户端出现了 Error: {:?}", inner_e);
|
event!(Level::ERROR, "socketio 客户端出现了 Error: {:?}", inner_e);
|
||||||
|
|
|
@ -1,52 +1,50 @@
|
||||||
use crate::MainStatus;
|
|
||||||
use crate::data_struct::ica::messages::{DeleteMessage, SendMessage};
|
use crate::data_struct::ica::messages::{DeleteMessage, SendMessage};
|
||||||
use crate::data_struct::ica::{RoomId, RoomIdTrait, UserId};
|
|
||||||
use crate::error::{ClientResult, IcaError};
|
use crate::error::{ClientResult, IcaError};
|
||||||
|
use crate::MainStatus;
|
||||||
|
|
||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
use ed25519_dalek::{Signature, Signer, SigningKey};
|
use ed25519_dalek::{Signature, Signer, SigningKey};
|
||||||
use rust_socketio::Payload;
|
|
||||||
use rust_socketio::asynchronous::Client;
|
use rust_socketio::asynchronous::Client;
|
||||||
use serde_json::{Value, json};
|
use rust_socketio::Payload;
|
||||||
use tracing::{Level, event, span};
|
use serde_json::Value;
|
||||||
|
use tracing::{debug, event, span, warn, Level};
|
||||||
|
|
||||||
/// "安全" 的 发送一条消息
|
/// "安全" 的 发送一条消息
|
||||||
pub async fn send_message(client: &Client, message: &SendMessage) -> bool {
|
pub async fn send_message(client: &Client, message: &SendMessage) -> bool {
|
||||||
let value = message.as_value();
|
let value = message.as_value();
|
||||||
match client.emit("sendMessage", value).await {
|
match client.emit("sendMessage", value).await {
|
||||||
Ok(_) => {
|
Ok(_) => {
|
||||||
event!(Level::INFO, "send_message {}", format!("{:#?}", message).cyan());
|
debug!("send_message {}", format!("{:#?}", message).cyan());
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
event!(Level::WARN, "send_message faild:{}", format!("{:#?}", e).red());
|
warn!("send_message faild:{}", format!("{:#?}", e).red());
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// "安全" 的 删除一条消息
|
/// "安全" 的 删除一条消息
|
||||||
pub async fn delete_message(client: &Client, message: &DeleteMessage) -> bool {
|
pub async fn delete_message(client: &Client, message: &DeleteMessage) -> bool {
|
||||||
let value = message.as_value();
|
let value = message.as_value();
|
||||||
match client.emit("deleteMessage", value).await {
|
match client.emit("deleteMessage", value).await {
|
||||||
Ok(_) => {
|
Ok(_) => {
|
||||||
event!(Level::DEBUG, "delete_message {}", format!("{:#?}", message).yellow());
|
debug!("delete_message {}", format!("{:#?}", message).yellow());
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
event!(Level::WARN, "delete_message faild:{}", format!("{:#?}", e).red());
|
warn!("delete_message faild:{}", format!("{:#?}", e).red());
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// "安全" 的 获取历史消息
|
/// "安全" 的 获取历史消息
|
||||||
/// ```typescript
|
/// ```typescript
|
||||||
/// async fetchHistory(messageId: string, roomId: number, currentLoadedMessagesCount: number)
|
/// async fetchHistory(messageId: string, roomId: number, currentLoadedMessagesCount: number)
|
||||||
/// ```
|
/// ```
|
||||||
// #[allow(dead_code)]
|
// #[allow(dead_code)]
|
||||||
// pub async fn fetch_history(client: &Client, roomd_id: RoomId) -> bool { false }
|
// pub async fn fetch_history(client: &Client, roomd_id: RoomId) -> bool { false }
|
||||||
async fn inner_sign(payload: Payload, client: &Client) -> ClientResult<(), IcaError> {
|
|
||||||
|
async fn inner_sign(payload: Payload, client: Client) -> ClientResult<(), IcaError> {
|
||||||
let span = span!(Level::INFO, "signing icalingua");
|
let span = span!(Level::INFO, "signing icalingua");
|
||||||
let _guard = span.enter();
|
let _guard = span.enter();
|
||||||
|
|
||||||
|
@ -71,8 +69,7 @@ async fn inner_sign(payload: Payload, client: &Client) -> ClientResult<(), IcaEr
|
||||||
.as_str()
|
.as_str()
|
||||||
.unwrap_or("unknow");
|
.unwrap_or("unknow");
|
||||||
if server_protocol_version != crate::ica::ICA_PROTOCOL_VERSION {
|
if server_protocol_version != crate::ica::ICA_PROTOCOL_VERSION {
|
||||||
event!(
|
warn!(
|
||||||
Level::WARN,
|
|
||||||
"服务器版本与兼容版本不一致\n服务器协议版本:{:?}\n兼容版本:{}",
|
"服务器版本与兼容版本不一致\n服务器协议版本:{:?}\n兼容版本:{}",
|
||||||
version.get("protocolVersion"),
|
version.get("protocolVersion"),
|
||||||
crate::ica::ICA_PROTOCOL_VERSION
|
crate::ica::ICA_PROTOCOL_VERSION
|
||||||
|
@ -104,41 +101,5 @@ async fn inner_sign(payload: Payload, client: &Client) -> ClientResult<(), IcaEr
|
||||||
/// 签名回调
|
/// 签名回调
|
||||||
/// 失败的时候得 panic
|
/// 失败的时候得 panic
|
||||||
pub async fn sign_callback(payload: Payload, client: Client) {
|
pub async fn sign_callback(payload: Payload, client: Client) {
|
||||||
inner_sign(payload, &client).await.expect("Faild to sign");
|
inner_sign(payload, client).await.expect("Faild to sign");
|
||||||
}
|
|
||||||
|
|
||||||
/// 向指定群发送签到信息
|
|
||||||
///
|
|
||||||
/// 只能是群啊, 不能是私聊
|
|
||||||
pub async fn send_room_sign_in(client: &Client, room_id: RoomId) -> bool {
|
|
||||||
if room_id.is_chat() {
|
|
||||||
event!(Level::WARN, "不能向私聊发送签到信息");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
let data = json!(room_id.abs());
|
|
||||||
match client.emit("sendGroupSign", data).await {
|
|
||||||
Ok(_) => {
|
|
||||||
event!(Level::INFO, "已向群 {} 发送签到信息", room_id);
|
|
||||||
true
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::ERROR, "向群 {} 发送签到信息失败: {}", room_id, e);
|
|
||||||
false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 向某个群/私聊的某个人发送戳一戳
|
|
||||||
pub async fn send_poke(client: &Client, room_id: RoomId, target: UserId) -> bool {
|
|
||||||
let data = vec![json!(room_id), json!(target)];
|
|
||||||
match client.emit("sendGroupPoke", data).await {
|
|
||||||
Ok(_) => {
|
|
||||||
event!(Level::INFO, "已向 {} 的 {} 发送戳一戳", room_id, target);
|
|
||||||
true
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::ERROR, "向 {} 的 {} 发送戳一戳失败: {}", room_id, target, e);
|
|
||||||
false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
use rust_socketio::asynchronous::Client;
|
use rust_socketio::asynchronous::Client;
|
||||||
use rust_socketio::{Event, Payload};
|
use rust_socketio::{Event, Payload};
|
||||||
use serde_json::json;
|
use tracing::{event, info, span, warn, Level};
|
||||||
use tracing::{Level, event, info, span, warn};
|
|
||||||
|
|
||||||
use crate::data_struct::ica::RoomId;
|
use crate::data_struct::ica::all_rooms::Room;
|
||||||
use crate::data_struct::ica::all_rooms::{JoinRequestRoom, Room};
|
|
||||||
use crate::data_struct::ica::messages::{Message, MessageTrait, NewMessage};
|
use crate::data_struct::ica::messages::{Message, MessageTrait, NewMessage};
|
||||||
use crate::data_struct::ica::online_data::OnlineData;
|
use crate::data_struct::ica::online_data::OnlineData;
|
||||||
use crate::ica::client::send_message;
|
use crate::ica::client::send_message;
|
||||||
use crate::{MainStatus, VERSION, client_id, help_msg, py, version_str};
|
use crate::{client_id, help_msg, py, version_str, MainStatus, VERSION};
|
||||||
|
|
||||||
/// 获取在线数据
|
/// 获取在线数据
|
||||||
pub async fn get_online_data(payload: Payload, _client: Client) {
|
pub async fn get_online_data(payload: Payload, _client: Client) {
|
||||||
|
@ -32,7 +32,7 @@ pub async fn add_message(payload: Payload, client: Client) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
println!("new_msg {}", message.to_string().cyan());
|
event!(Level::INFO, "new_msg {}", message.to_string().cyan());
|
||||||
// 就在这里处理掉最基本的消息
|
// 就在这里处理掉最基本的消息
|
||||||
// 之后的处理交给插件
|
// 之后的处理交给插件
|
||||||
if !message.is_from_self() && !message.is_reply() {
|
if !message.is_from_self() && !message.is_reply() {
|
||||||
|
@ -55,16 +55,6 @@ pub async fn add_message(payload: Payload, client: Client) {
|
||||||
let reply = message.reply_with(&help_msg());
|
let reply = message.reply_with(&help_msg());
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
}
|
}
|
||||||
// else if message.content() == "/bot-uptime" {
|
|
||||||
// let duration = match start_up_time().elapsed() {
|
|
||||||
// Ok(d) => format!("{:?}", d),
|
|
||||||
// Err(e) => format!("出问题啦 {:?}", e),
|
|
||||||
// };
|
|
||||||
// let reply = message.reply_with(&format!(
|
|
||||||
// "shenbot 已运行: {}", duration
|
|
||||||
// ));
|
|
||||||
// send_message(&client, &reply).await;
|
|
||||||
// }
|
|
||||||
if MainStatus::global_config().ica().admin_list.contains(&message.sender_id()) {
|
if MainStatus::global_config().ica().admin_list.contains(&message.sender_id()) {
|
||||||
// admin 区
|
// admin 区
|
||||||
// 先判定是否为 admin
|
// 先判定是否为 admin
|
||||||
|
@ -72,7 +62,8 @@ pub async fn add_message(payload: Payload, client: Client) {
|
||||||
if message.content().starts_with(&format!("/bot-enable-{}", client_id)) {
|
if message.content().starts_with(&format!("/bot-enable-{}", client_id)) {
|
||||||
// 尝试获取后面的信息
|
// 尝试获取后面的信息
|
||||||
if let Some((_, name)) = message.content().split_once(" ") {
|
if let Some((_, name)) = message.content().split_once(" ") {
|
||||||
match py::PyStatus::get().get_status(name) {
|
let path_name = PathBuf::from(name);
|
||||||
|
match py::PyStatus::get_status(&path_name) {
|
||||||
None => {
|
None => {
|
||||||
let reply = message.reply_with("未找到插件");
|
let reply = message.reply_with("未找到插件");
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
|
@ -82,7 +73,7 @@ pub async fn add_message(payload: Payload, client: Client) {
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
}
|
}
|
||||||
Some(false) => {
|
Some(false) => {
|
||||||
py::PyStatus::get_mut().set_status(name, true);
|
py::PyStatus::set_status(&path_name, true);
|
||||||
let reply = message.reply_with("启用插件完成");
|
let reply = message.reply_with("启用插件完成");
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
}
|
}
|
||||||
|
@ -91,7 +82,8 @@ pub async fn add_message(payload: Payload, client: Client) {
|
||||||
} else if message.content().starts_with(&format!("/bot-disable-{}", client_id))
|
} else if message.content().starts_with(&format!("/bot-disable-{}", client_id))
|
||||||
{
|
{
|
||||||
if let Some((_, name)) = message.content().split_once(" ") {
|
if let Some((_, name)) = message.content().split_once(" ") {
|
||||||
match py::PyStatus::get().get_status(name) {
|
let path_name = PathBuf::from(name);
|
||||||
|
match py::PyStatus::get_status(&path_name) {
|
||||||
None => {
|
None => {
|
||||||
let reply = message.reply_with("未找到插件");
|
let reply = message.reply_with("未找到插件");
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
|
@ -101,16 +93,12 @@ pub async fn add_message(payload: Payload, client: Client) {
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
}
|
}
|
||||||
Some(true) => {
|
Some(true) => {
|
||||||
py::PyStatus::get_mut().set_status(name, false);
|
py::PyStatus::set_status(&path_name, false);
|
||||||
let reply = message.reply_with("禁用插件完成");
|
let reply = message.reply_with("禁用插件完成");
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if message.content() == "/bot-fetch" {
|
|
||||||
let reply = message.reply_with("正在更新当前群消息");
|
|
||||||
send_message(&client, &reply).await;
|
|
||||||
fetch_messages(&client, message.room_id).await;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -175,41 +163,6 @@ pub async fn failed_message(payload: Payload, _client: Client) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 处理加群申请
|
|
||||||
///
|
|
||||||
/// add: 2.0.1
|
|
||||||
pub async fn join_request(payload: Payload, _client: Client) {
|
|
||||||
if let Payload::Text(values) = payload {
|
|
||||||
if let Some(value) = values.first() {
|
|
||||||
match serde_json::from_value::<JoinRequestRoom>(value.clone()) {
|
|
||||||
Ok(join_room) => {
|
|
||||||
event!(Level::INFO, "{}", format!("收到加群申请 {:?}", join_room).on_blue());
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"呼叫 shenjack! JoinRequestRoom 的 serde 没写好! {}\nraw: {:#?}",
|
|
||||||
e,
|
|
||||||
value
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn fetch_history(client: Client, room: RoomId) { let mut request_body = json!(room); }
|
|
||||||
|
|
||||||
pub async fn fetch_messages(client: &Client, room: RoomId) {
|
|
||||||
let mut request_body = json!(room);
|
|
||||||
match client.emit("fetchMessages", request_body).await {
|
|
||||||
Ok(_) => {}
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::WARN, "fetch_messages {}", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 所有
|
/// 所有
|
||||||
pub async fn any_event(event: Event, payload: Payload, _client: Client) {
|
pub async fn any_event(event: Event, payload: Payload, _client: Client) {
|
||||||
let handled = vec![
|
let handled = vec![
|
||||||
|
@ -223,19 +176,18 @@ pub async fn any_event(event: Event, payload: Payload, _client: Client) {
|
||||||
"deleteMessage",
|
"deleteMessage",
|
||||||
"setAllRooms",
|
"setAllRooms",
|
||||||
"setMessages",
|
"setMessages",
|
||||||
"handleRequest", // 处理验证消息 (加入请求之类的)
|
|
||||||
// 也许以后会用到
|
// 也许以后会用到
|
||||||
"messageSuccess",
|
"messageSuccess",
|
||||||
"messageFailed",
|
"messageFailed",
|
||||||
"setAllChatGroups",
|
"setAllChatGroups",
|
||||||
|
"handleRequest", // 处理验证消息 (加入请求之类的)
|
||||||
// 忽略的
|
// 忽略的
|
||||||
"notify",
|
"notify",
|
||||||
"setShutUp", // 禁言
|
|
||||||
"syncRead", // 同步已读
|
"syncRead", // 同步已读
|
||||||
"closeLoading", // 发送消息/加载新聊天 有一个 loading
|
"closeLoading", // 发送消息/加载新聊天 有一个 loading
|
||||||
"renewMessage", // 我也不确定到底是啥事件
|
"renewMessage", // 我也不确定到底是啥事件
|
||||||
"requestSetup", // 需要登录
|
"requestSetup", // 需要登录
|
||||||
"updateRoom", // 更新房间
|
"updateRoom",
|
||||||
];
|
];
|
||||||
match &event {
|
match &event {
|
||||||
Event::Custom(event_name) => {
|
Event::Custom(event_name) => {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
use std::{
|
use std::{
|
||||||
hash::{DefaultHasher, Hash, Hasher},
|
hash::{DefaultHasher, Hash, Hasher},
|
||||||
sync::OnceLock,
|
time::Duration,
|
||||||
time::{Duration, SystemTime},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
mod config;
|
mod config;
|
||||||
|
@ -9,22 +8,20 @@ mod data_struct;
|
||||||
mod error;
|
mod error;
|
||||||
mod py;
|
mod py;
|
||||||
mod status;
|
mod status;
|
||||||
mod wasms;
|
|
||||||
|
|
||||||
#[cfg(feature = "ica")]
|
#[cfg(feature = "ica")]
|
||||||
mod ica;
|
mod ica;
|
||||||
#[cfg(feature = "tailchat")]
|
#[cfg(feature = "tailchat")]
|
||||||
mod tailchat;
|
mod tailchat;
|
||||||
|
|
||||||
use colored::Colorize;
|
|
||||||
use config::BotConfig;
|
use config::BotConfig;
|
||||||
use error::PyPluginError;
|
use tracing::{event, span, Level};
|
||||||
use tracing::{Level, event, span};
|
|
||||||
|
|
||||||
pub static mut MAIN_STATUS: status::BotStatus = status::BotStatus {
|
pub static mut MAIN_STATUS: status::BotStatus = status::BotStatus {
|
||||||
config: None,
|
config: None,
|
||||||
ica_status: None,
|
ica_status: None,
|
||||||
tailchat_status: None,
|
tailchat_status: None,
|
||||||
|
startup_time: None,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub type MainStatus = status::BotStatus;
|
pub type MainStatus = status::BotStatus;
|
||||||
|
@ -32,8 +29,8 @@ pub type MainStatus = status::BotStatus;
|
||||||
pub type StopGetter = tokio::sync::oneshot::Receiver<()>;
|
pub type StopGetter = tokio::sync::oneshot::Receiver<()>;
|
||||||
|
|
||||||
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||||
pub const ICA_VERSION: &str = "2.0.1";
|
pub const ICA_VERSION: &str = "1.6.3";
|
||||||
pub const TAILCHAT_VERSION: &str = "2.0.0";
|
pub const TAILCHAT_VERSION: &str = "1.2.3";
|
||||||
|
|
||||||
const HELP_MSG: &str = r#"/bot-rs
|
const HELP_MSG: &str = r#"/bot-rs
|
||||||
展示 rust 侧信息
|
展示 rust 侧信息
|
||||||
|
@ -49,19 +46,13 @@ const HELP_MSG: &str = r#"/bot-rs
|
||||||
by shenjackyuanjie"#;
|
by shenjackyuanjie"#;
|
||||||
|
|
||||||
/// 获取帮助信息
|
/// 获取帮助信息
|
||||||
pub fn help_msg() -> String {
|
pub fn help_msg() -> String { format!("{}\n{}", version_str(), HELP_MSG) }
|
||||||
format!("{}\n{}", version_str(), HELP_MSG).replace("<client-id>", client_id().as_str())
|
|
||||||
}
|
|
||||||
|
|
||||||
static STARTUP_TIME: OnceLock<SystemTime> = OnceLock::new();
|
|
||||||
|
|
||||||
pub fn start_up_time() -> SystemTime { *STARTUP_TIME.get().expect("WTF, why did you panic?") }
|
|
||||||
|
|
||||||
/// 获得当前客户端的 id
|
/// 获得当前客户端的 id
|
||||||
/// 防止串号
|
/// 防止串号
|
||||||
pub fn client_id() -> String {
|
pub fn client_id() -> String {
|
||||||
let mut hasher = DefaultHasher::new();
|
let mut hasher = DefaultHasher::new();
|
||||||
start_up_time().hash(&mut hasher);
|
MainStatus::get_startup_time().hash(&mut hasher);
|
||||||
let data = hasher.finish();
|
let data = hasher.finish();
|
||||||
// 取后6位
|
// 取后6位
|
||||||
format!("{:06}", data % 1_000_000)
|
format!("{:06}", data % 1_000_000)
|
||||||
|
@ -82,7 +73,7 @@ pub fn version_str() -> String {
|
||||||
|
|
||||||
/// 是否为稳定版本
|
/// 是否为稳定版本
|
||||||
/// 会在 release 的时候设置为 true
|
/// 会在 release 的时候设置为 true
|
||||||
pub const STABLE: bool = false;
|
pub const STABLE: bool = true;
|
||||||
|
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! async_callback_with_state {
|
macro_rules! async_callback_with_state {
|
||||||
|
@ -104,32 +95,15 @@ macro_rules! async_any_callback_with_state {
|
||||||
}};
|
}};
|
||||||
}
|
}
|
||||||
|
|
||||||
const CLI_HELP_MSG: &str = r#"{VERSION}
|
#[tokio::main]
|
||||||
-d
|
async fn main() -> anyhow::Result<()> { inner_main().await }
|
||||||
debug 模式
|
|
||||||
-t
|
|
||||||
trace 模式
|
|
||||||
-h
|
|
||||||
显示帮助信息
|
|
||||||
-env <env>
|
|
||||||
指定虚拟环境路径
|
|
||||||
-c <config_file_path>
|
|
||||||
指定配置文件路径
|
|
||||||
"#;
|
|
||||||
|
|
||||||
fn main() -> anyhow::Result<()> {
|
|
||||||
let start_up_time = SystemTime::now();
|
|
||||||
STARTUP_TIME.set(start_up_time).expect("WTF, why did you panic?");
|
|
||||||
|
|
||||||
|
async fn inner_main() -> anyhow::Result<()> {
|
||||||
// -d -> debug
|
// -d -> debug
|
||||||
// none -> info
|
// none -> info
|
||||||
|
let level = {
|
||||||
let args = std::env::args();
|
let args = std::env::args();
|
||||||
let args = args.collect::<Vec<String>>();
|
let args = args.collect::<Vec<String>>();
|
||||||
if args.contains(&"-h".to_string()) {
|
|
||||||
println!("{}", CLI_HELP_MSG.replace("{VERSION}", version_str().as_str()));
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
let level = {
|
|
||||||
if args.contains(&"-d".to_string()) {
|
if args.contains(&"-d".to_string()) {
|
||||||
Level::DEBUG
|
Level::DEBUG
|
||||||
} else if args.contains(&"-t".to_string()) {
|
} else if args.contains(&"-t".to_string()) {
|
||||||
|
@ -140,35 +114,7 @@ fn main() -> anyhow::Result<()> {
|
||||||
};
|
};
|
||||||
|
|
||||||
tracing_subscriber::fmt().with_max_level(level).init();
|
tracing_subscriber::fmt().with_max_level(level).init();
|
||||||
|
let span = span!(Level::INFO, "Shenbot Main");
|
||||||
let rt = tokio::runtime::Builder::new_multi_thread()
|
|
||||||
.enable_all()
|
|
||||||
.thread_name("shenbot-rs")
|
|
||||||
.worker_threads(10)
|
|
||||||
.build()
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
let result = rt.block_on(inner_main());
|
|
||||||
|
|
||||||
event!(Level::INFO, "shenbot-rs v{} exiting", VERSION);
|
|
||||||
|
|
||||||
match result {
|
|
||||||
Ok(_) => {}
|
|
||||||
Err(e) => {
|
|
||||||
if let Some(PyPluginError::PluginNotStopped) = e.downcast_ref::<PyPluginError>() {
|
|
||||||
event!(Level::WARN, "Python 插件停不下来, 3s 后终止 tokio rt");
|
|
||||||
rt.shutdown_timeout(Duration::from_secs(3));
|
|
||||||
} else {
|
|
||||||
event!(Level::ERROR, "shenbot-rs v{} exiting with error: {}", VERSION, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn inner_main() -> anyhow::Result<()> {
|
|
||||||
let span = span!(Level::INFO, "bot-main");
|
|
||||||
let _enter = span.enter();
|
let _enter = span.enter();
|
||||||
|
|
||||||
event!(Level::INFO, "shenbot-rs v{} starting", VERSION);
|
event!(Level::INFO, "shenbot-rs v{} starting", VERSION);
|
||||||
|
@ -185,43 +131,43 @@ async fn inner_main() -> anyhow::Result<()> {
|
||||||
}
|
}
|
||||||
|
|
||||||
// 准备一个用于停止 socket 的变量
|
// 准备一个用于停止 socket 的变量
|
||||||
|
event!(Level::INFO, "启动 ICA");
|
||||||
let (ica_send, ica_recv) = tokio::sync::oneshot::channel::<()>();
|
let (ica_send, ica_recv) = tokio::sync::oneshot::channel::<()>();
|
||||||
|
|
||||||
if bot_config.check_ica() {
|
if bot_config.check_ica() {
|
||||||
event!(Level::INFO, "{}", "开始启动 ICA".green());
|
event!(Level::INFO, "启动 ica");
|
||||||
let config = bot_config.ica();
|
let config = bot_config.ica();
|
||||||
tokio::spawn(async move {
|
tokio::spawn(async move {
|
||||||
ica::start_ica(&config, ica_recv).await.unwrap();
|
ica::start_ica(&config, ica_recv).await.unwrap();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
event!(Level::INFO, "{}", "ica 未启用, 不管他".cyan());
|
event!(Level::INFO, "未启用 ica");
|
||||||
}
|
}
|
||||||
|
|
||||||
let (tailchat_send, tailchat_recv) = tokio::sync::oneshot::channel::<()>();
|
let (tailchat_send, tailchat_recv) = tokio::sync::oneshot::channel::<()>();
|
||||||
|
|
||||||
if bot_config.check_tailchat() {
|
if bot_config.check_tailchat() {
|
||||||
event!(Level::INFO, "{}", "开始启动 tailchat".green());
|
event!(Level::INFO, "启动 Tailchat");
|
||||||
let config = bot_config.tailchat();
|
let config = bot_config.tailchat();
|
||||||
tokio::spawn(async move {
|
tokio::spawn(async move {
|
||||||
tailchat::start_tailchat(config, tailchat_recv).await.unwrap();
|
tailchat::start_tailchat(config, tailchat_recv).await.unwrap();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
event!(Level::INFO, "{}", "tailchat 未启用, 不管他".bright_magenta());
|
event!(Level::INFO, "未启用 Tailchat");
|
||||||
}
|
}
|
||||||
|
|
||||||
tokio::time::sleep(Duration::from_secs(1)).await;
|
tokio::time::sleep(Duration::from_secs(2)).await;
|
||||||
// 等待一个输入
|
// 等待一个输入
|
||||||
event!(Level::INFO, "Press ctrl+c to exit, second ctrl+c to force exit");
|
event!(Level::INFO, "Press any key to exit");
|
||||||
tokio::signal::ctrl_c().await.ok();
|
let mut input = String::new();
|
||||||
|
std::io::stdin().read_line(&mut input).unwrap();
|
||||||
|
|
||||||
ica_send.send(()).ok();
|
ica_send.send(()).ok();
|
||||||
tailchat_send.send(()).ok();
|
tailchat_send.send(()).ok();
|
||||||
|
|
||||||
event!(Level::INFO, "Disconnected");
|
event!(Level::INFO, "Disconnected");
|
||||||
|
|
||||||
py::post_py().await?;
|
py::post_py()?;
|
||||||
|
|
||||||
event!(Level::INFO, "Shenbot-rs exiting");
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -233,8 +179,8 @@ async fn test_macro() {
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use tokio::sync::RwLock;
|
use tokio::sync::RwLock;
|
||||||
|
|
||||||
use rust_socketio::Payload;
|
|
||||||
use rust_socketio::asynchronous::{Client, ClientBuilder};
|
use rust_socketio::asynchronous::{Client, ClientBuilder};
|
||||||
|
use rust_socketio::Payload;
|
||||||
|
|
||||||
/// 一个简单的例子
|
/// 一个简单的例子
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
|
|
|
@ -1,84 +1,13 @@
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::sync::LazyLock;
|
|
||||||
|
|
||||||
use pyo3::prelude::*;
|
use pyo3::prelude::*;
|
||||||
use rust_socketio::asynchronous::Client;
|
use rust_socketio::asynchronous::Client;
|
||||||
use tokio::sync::Mutex;
|
use tracing::{event, info, warn, Level};
|
||||||
use tracing::{Level, event, info, warn};
|
|
||||||
|
|
||||||
use crate::MainStatus;
|
|
||||||
use crate::data_struct::{ica, tailchat};
|
use crate::data_struct::{ica, tailchat};
|
||||||
use crate::error::PyPluginError;
|
use crate::error::PyPluginError;
|
||||||
use crate::py::consts::events_func;
|
use crate::py::{class, PyPlugin, PyStatus};
|
||||||
use crate::py::{PyPlugin, PyStatus, class};
|
use crate::MainStatus;
|
||||||
|
|
||||||
pub struct PyTasks {
|
|
||||||
pub ica_new_message: Vec<tokio::task::JoinHandle<()>>,
|
|
||||||
pub ica_delete_message: Vec<tokio::task::JoinHandle<()>>,
|
|
||||||
pub tailchat_new_message: Vec<tokio::task::JoinHandle<()>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl PyTasks {
|
|
||||||
pub fn push_ica_new_message(&mut self, handle: tokio::task::JoinHandle<()>) {
|
|
||||||
self.ica_new_message.push(handle);
|
|
||||||
self.ica_new_message.retain(|handle| !handle.is_finished());
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn push_ica_delete_message(&mut self, handle: tokio::task::JoinHandle<()>) {
|
|
||||||
self.ica_delete_message.push(handle);
|
|
||||||
self.ica_delete_message.retain(|handle| !handle.is_finished());
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn push_tailchat_new_message(&mut self, handle: tokio::task::JoinHandle<()>) {
|
|
||||||
self.tailchat_new_message.push(handle);
|
|
||||||
self.tailchat_new_message.retain(|handle| !handle.is_finished());
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn join_all(&mut self) {
|
|
||||||
for handle in self.ica_new_message.drain(..) {
|
|
||||||
let _ = handle.await;
|
|
||||||
}
|
|
||||||
for handle in self.ica_delete_message.drain(..) {
|
|
||||||
let _ = handle.await;
|
|
||||||
}
|
|
||||||
for handle in self.tailchat_new_message.drain(..) {
|
|
||||||
let _ = handle.await;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn len_check(&mut self) -> usize {
|
|
||||||
self.ica_delete_message.retain(|handle| !handle.is_finished());
|
|
||||||
self.ica_new_message.retain(|handle| !handle.is_finished());
|
|
||||||
self.tailchat_new_message.retain(|handle| !handle.is_finished());
|
|
||||||
self.ica_new_message.len() + self.ica_delete_message.len() + self.tailchat_new_message.len()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn len(&self) -> usize {
|
|
||||||
self.ica_new_message.len() + self.ica_delete_message.len() + self.tailchat_new_message.len()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn is_empty(&self) -> bool { self.len() == 0 }
|
|
||||||
|
|
||||||
pub fn cancel_all(&mut self) {
|
|
||||||
for handle in self.ica_new_message.drain(..) {
|
|
||||||
handle.abort();
|
|
||||||
}
|
|
||||||
for handle in self.ica_delete_message.drain(..) {
|
|
||||||
handle.abort();
|
|
||||||
}
|
|
||||||
for handle in self.tailchat_new_message.drain(..) {
|
|
||||||
handle.abort();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub static PY_TASKS: LazyLock<Mutex<PyTasks>> = LazyLock::new(|| {
|
|
||||||
Mutex::new(PyTasks {
|
|
||||||
ica_new_message: Vec::new(),
|
|
||||||
ica_delete_message: Vec::new(),
|
|
||||||
tailchat_new_message: Vec::new(),
|
|
||||||
})
|
|
||||||
});
|
|
||||||
|
|
||||||
pub fn get_func<'py>(
|
pub fn get_func<'py>(
|
||||||
py_module: &Bound<'py, PyAny>,
|
py_module: &Bound<'py, PyAny>,
|
||||||
|
@ -135,18 +64,10 @@ pub fn verify_and_reload_plugins() {
|
||||||
let mut need_reload_files: Vec<PathBuf> = Vec::new();
|
let mut need_reload_files: Vec<PathBuf> = Vec::new();
|
||||||
let plugin_path = MainStatus::global_config().py().plugin_path.clone();
|
let plugin_path = MainStatus::global_config().py().plugin_path.clone();
|
||||||
|
|
||||||
// 先检查是否有插件被删除
|
|
||||||
for path in PyStatus::get().files.keys() {
|
|
||||||
if !path.exists() {
|
|
||||||
event!(Level::INFO, "Python 插件: {:?} 已被删除", path);
|
|
||||||
PyStatus::get_mut().delete_file(path);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for entry in std::fs::read_dir(plugin_path).unwrap().flatten() {
|
for entry in std::fs::read_dir(plugin_path).unwrap().flatten() {
|
||||||
let path = entry.path();
|
let path = entry.path();
|
||||||
if let Some(ext) = path.extension() {
|
if let Some(ext) = path.extension() {
|
||||||
if ext == "py" && !PyStatus::get().verify_file(&path) {
|
if ext == "py" && !PyStatus::verify_file(&path) {
|
||||||
need_reload_files.push(path);
|
need_reload_files.push(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -155,16 +76,16 @@ pub fn verify_and_reload_plugins() {
|
||||||
if need_reload_files.is_empty() {
|
if need_reload_files.is_empty() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
event!(Level::INFO, "更改列表: {:?}", need_reload_files);
|
info!("file change list: {:?}", need_reload_files);
|
||||||
let plugins = PyStatus::get_mut();
|
let exist_plugins = PyStatus::get_map_mut();
|
||||||
for reload_file in need_reload_files {
|
for reload_file in need_reload_files {
|
||||||
if let Some(plugin) = plugins.files.get_mut(&reload_file) {
|
if let Some(plugin) = exist_plugins.get_mut(&reload_file) {
|
||||||
plugin.reload_from_file();
|
plugin.reload_from_file();
|
||||||
event!(Level::INFO, "重载 Python 插件: {:?} 完成", reload_file);
|
event!(Level::INFO, "重载 Python 插件: {:?} 完成", reload_file);
|
||||||
} else {
|
} else {
|
||||||
match PyPlugin::new_from_path(&reload_file) {
|
match PyPlugin::new_from_path(&reload_file) {
|
||||||
Some(plugin) => {
|
Some(plugin) => {
|
||||||
plugins.add_file(reload_file.clone(), plugin);
|
PyStatus::add_file(reload_file.clone(), plugin);
|
||||||
info!("加载 Python 插件: {:?} 完成", reload_file);
|
info!("加载 Python 插件: {:?} 完成", reload_file);
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
|
@ -175,6 +96,11 @@ pub fn verify_and_reload_plugins() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub const ICA_NEW_MESSAGE_FUNC: &str = "on_ica_message";
|
||||||
|
pub const ICA_DELETE_MESSAGE_FUNC: &str = "on_ica_delete_message";
|
||||||
|
|
||||||
|
pub const TAILCHAT_NEW_MESSAGE_FUNC: &str = "on_tailchat_message";
|
||||||
|
|
||||||
macro_rules! call_py_func {
|
macro_rules! call_py_func {
|
||||||
($args:expr, $plugin:expr, $plugin_path:expr, $func_name:expr, $client:expr) => {
|
($args:expr, $plugin:expr, $plugin_path:expr, $func_name:expr, $client:expr) => {
|
||||||
tokio::spawn(async move {
|
tokio::spawn(async move {
|
||||||
|
@ -193,7 +119,7 @@ macro_rules! call_py_func {
|
||||||
e,
|
e,
|
||||||
// 获取 traceback
|
// 获取 traceback
|
||||||
match &e {
|
match &e {
|
||||||
PyPluginError::FuncCallError(py_err, _, _) => match py_err.traceback(py) {
|
PyPluginError::FuncCallError(py_err, _, _) => match py_err.traceback_bound(py) {
|
||||||
Some(traceback) => match traceback.format() {
|
Some(traceback) => match traceback.format() {
|
||||||
Ok(trace) => trace,
|
Ok(trace) => trace,
|
||||||
Err(trace_e) => format!("failed to format traceback: {:?}", trace_e),
|
Err(trace_e) => format!("failed to format traceback: {:?}", trace_e),
|
||||||
|
@ -215,26 +141,25 @@ pub async fn ica_new_message_py(message: &ica::messages::NewMessage, client: &Cl
|
||||||
// 验证插件是否改变
|
// 验证插件是否改变
|
||||||
verify_and_reload_plugins();
|
verify_and_reload_plugins();
|
||||||
|
|
||||||
let plugins = PyStatus::get();
|
let plugins = PyStatus::get_map();
|
||||||
for (path, plugin) in plugins.files.iter().filter(|(_, plugin)| plugin.enabled) {
|
for (path, plugin) in plugins.iter().filter(|(_, plugin)| plugin.enabled) {
|
||||||
let msg = class::ica::NewMessagePy::new(message);
|
let msg = class::ica::NewMessagePy::new(message);
|
||||||
let client = class::ica::IcaClientPy::new(client);
|
let client = class::ica::IcaClientPy::new(client);
|
||||||
let args = (msg, client);
|
let args = (msg, client);
|
||||||
let task = call_py_func!(args, plugin, path, events_func::ICA_NEW_MESSAGE, client);
|
// 甚至实际上压根不需要await这个spawn, 直接让他自己跑就好了(离谱)
|
||||||
PY_TASKS.lock().await.push_ica_new_message(task);
|
call_py_func!(args, plugin, path, ICA_NEW_MESSAGE_FUNC, client);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn ica_delete_message_py(msg_id: ica::MessageId, client: &Client) {
|
pub async fn ica_delete_message_py(msg_id: ica::MessageId, client: &Client) {
|
||||||
verify_and_reload_plugins();
|
verify_and_reload_plugins();
|
||||||
|
|
||||||
let plugins = PyStatus::get();
|
let plugins = PyStatus::get_map();
|
||||||
for (path, plugin) in plugins.files.iter().filter(|(_, plugin)| plugin.enabled) {
|
for (path, plugin) in plugins.iter().filter(|(_, plugin)| plugin.enabled) {
|
||||||
let msg_id = msg_id.clone();
|
let msg_id = msg_id.clone();
|
||||||
let client = class::ica::IcaClientPy::new(client);
|
let client = class::ica::IcaClientPy::new(client);
|
||||||
let args = (msg_id.clone(), client);
|
let args = (msg_id.clone(), client);
|
||||||
let task = call_py_func!(args, plugin, path, events_func::ICA_DELETE_MESSAGE, client);
|
call_py_func!(args, plugin, path, ICA_DELETE_MESSAGE_FUNC, client);
|
||||||
PY_TASKS.lock().await.push_ica_delete_message(task);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -244,12 +169,11 @@ pub async fn tailchat_new_message_py(
|
||||||
) {
|
) {
|
||||||
verify_and_reload_plugins();
|
verify_and_reload_plugins();
|
||||||
|
|
||||||
let plugins = PyStatus::get();
|
let plugins = PyStatus::get_map();
|
||||||
for (path, plugin) in plugins.files.iter().filter(|(_, plugin)| plugin.enabled) {
|
for (path, plugin) in plugins.iter().filter(|(_, plugin)| plugin.enabled) {
|
||||||
let msg = class::tailchat::TailchatReceiveMessagePy::from_recive_message(message);
|
let msg = class::tailchat::TailchatReceiveMessagePy::from_recive_message(message);
|
||||||
let client = class::tailchat::TailchatClientPy::new(client);
|
let client = class::tailchat::TailchatClientPy::new(client);
|
||||||
let args = (msg, client);
|
let args = (msg, client);
|
||||||
let task = call_py_func!(args, plugin, path, events_func::TAILCHAT_NEW_MESSAGE, client);
|
call_py_func!(args, plugin, path, TAILCHAT_NEW_MESSAGE_FUNC, client);
|
||||||
PY_TASKS.lock().await.push_tailchat_new_message(task);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +1,23 @@
|
||||||
pub mod commander;
|
|
||||||
pub mod config;
|
|
||||||
pub mod ica;
|
pub mod ica;
|
||||||
pub mod schdule;
|
|
||||||
pub mod tailchat;
|
pub mod tailchat;
|
||||||
|
|
||||||
use pyo3::{
|
use pyo3::prelude::*;
|
||||||
Bound, IntoPyObject, PyAny, PyRef, PyResult, pyclass, pymethods, pymodule,
|
|
||||||
types::{PyBool, PyModule, PyModuleMethods, PyString},
|
|
||||||
};
|
|
||||||
use toml::Value as TomlValue;
|
use toml::Value as TomlValue;
|
||||||
use tracing::{Level, event};
|
|
||||||
|
|
||||||
// #[derive(Clone)]
|
#[derive(Clone)]
|
||||||
|
#[pyclass]
|
||||||
|
#[pyo3(name = "ConfigRequest")]
|
||||||
|
pub struct ConfigRequestPy {
|
||||||
|
pub path: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[pymethods]
|
||||||
|
impl ConfigRequestPy {
|
||||||
|
#[new]
|
||||||
|
pub fn py_new(path: String) -> Self { Self { path } }
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
#[pyclass]
|
#[pyclass]
|
||||||
#[pyo3(name = "ConfigData")]
|
#[pyo3(name = "ConfigData")]
|
||||||
pub struct ConfigDataPy {
|
pub struct ConfigDataPy {
|
||||||
|
@ -20,24 +26,21 @@ pub struct ConfigDataPy {
|
||||||
|
|
||||||
#[pymethods]
|
#[pymethods]
|
||||||
impl ConfigDataPy {
|
impl ConfigDataPy {
|
||||||
pub fn __getitem__(self_: PyRef<'_, Self>, key: String) -> Option<Bound<PyAny>> {
|
pub fn __getitem__(self_: PyRef<'_, Self>, key: String) -> Option<Py<PyAny>> {
|
||||||
match self_.data.get(&key) {
|
match self_.data.get(&key) {
|
||||||
Some(value) => match value {
|
Some(value) => match value {
|
||||||
TomlValue::String(s) => Some(PyString::new(self_.py(), s).into_any()),
|
TomlValue::String(s) => Some(s.into_py(self_.py())),
|
||||||
TomlValue::Integer(i) => Some(i.into_pyobject(self_.py()).unwrap().into_any()),
|
TomlValue::Integer(i) => Some(i.into_py(self_.py())),
|
||||||
TomlValue::Float(f) => Some(f.into_pyobject(self_.py()).unwrap().into_any()),
|
TomlValue::Float(f) => Some(f.into_py(self_.py())),
|
||||||
TomlValue::Boolean(b) => {
|
TomlValue::Boolean(b) => Some(b.into_py(self_.py())),
|
||||||
let py_value = PyBool::new(self_.py(), *b);
|
|
||||||
Some(py_value.as_any().clone())
|
|
||||||
}
|
|
||||||
TomlValue::Array(a) => {
|
TomlValue::Array(a) => {
|
||||||
let new_self = Self::new(TomlValue::Array(a.clone()));
|
let new_self = Self::new(TomlValue::Array(a.clone()));
|
||||||
let py_value = new_self.into_pyobject(self_.py()).unwrap().into_any();
|
let py_value = new_self.into_py(self_.py());
|
||||||
Some(py_value)
|
Some(py_value)
|
||||||
}
|
}
|
||||||
TomlValue::Table(t) => {
|
TomlValue::Table(t) => {
|
||||||
let new_self = Self::new(TomlValue::Table(t.clone()));
|
let new_self = Self::new(TomlValue::Table(t.clone()));
|
||||||
let py_value = new_self.into_pyobject(self_.py()).unwrap().into_any();
|
let py_value = new_self.into_py(self_.py());
|
||||||
Some(py_value)
|
Some(py_value)
|
||||||
}
|
}
|
||||||
_ => None,
|
_ => None,
|
||||||
|
@ -51,35 +54,3 @@ impl ConfigDataPy {
|
||||||
impl ConfigDataPy {
|
impl ConfigDataPy {
|
||||||
pub fn new(data: TomlValue) -> Self { Self { data } }
|
pub fn new(data: TomlValue) -> Self { Self { data } }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Rust 侧向 Python 侧提供的 api
|
|
||||||
#[pymodule]
|
|
||||||
#[pyo3(name = "shenbot_api")]
|
|
||||||
fn rs_api_module(m: &Bound<'_, PyModule>) -> PyResult<()> {
|
|
||||||
m.add("__version__", crate::VERSION)?;
|
|
||||||
m.add("_version_", crate::VERSION)?;
|
|
||||||
m.add("_ica_version_", crate::ICA_VERSION)?;
|
|
||||||
m.add("_tailchat_version_", crate::TAILCHAT_VERSION)?;
|
|
||||||
m.add_class::<ConfigDataPy>()?;
|
|
||||||
m.add_class::<config::ConfigStoragePy>()?;
|
|
||||||
m.add_class::<schdule::SchedulerPy>()?;
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 在 python 初始化之前注册所有需要的类
|
|
||||||
///
|
|
||||||
/// WARNING: 这个函数需要在 Python 初始化之前调用,否则会导致报错
|
|
||||||
///
|
|
||||||
/// (pyo3 提供的宏会检查一遍, 不过我这里就直接用原始形式了)
|
|
||||||
pub fn regist_class() {
|
|
||||||
event!(Level::INFO, "向 Python 注册 Rust 侧模块/函数");
|
|
||||||
unsafe {
|
|
||||||
// 单纯没用 macro 而已
|
|
||||||
pyo3::ffi::PyImport_AppendInittab(
|
|
||||||
rs_api_module::__PYO3_NAME.as_ptr(),
|
|
||||||
Some(rs_api_module::__pyo3_init),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
event!(Level::INFO, "注册完成");
|
|
||||||
}
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
|
|
|
@ -1,343 +0,0 @@
|
||||||
use std::collections::HashMap;
|
|
||||||
|
|
||||||
use pyo3::{
|
|
||||||
Bound, PyAny, PyResult, pyclass, pymethods,
|
|
||||||
types::{
|
|
||||||
PyAnyMethods, PyBool, PyBoolMethods, PyDict, PyDictMethods, PyFloat, PyInt, PyList,
|
|
||||||
PyListMethods, PyString, PyStringMethods, PyTypeMethods,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
use tracing::{Level, event};
|
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
|
||||||
pub enum ConfigItem {
|
|
||||||
None,
|
|
||||||
String(String),
|
|
||||||
Int(i64),
|
|
||||||
Float(f64),
|
|
||||||
Bool(bool),
|
|
||||||
Array(Vec<ConfigItemPy>),
|
|
||||||
Table(HashMap<String, ConfigItemPy>),
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
|
||||||
#[pyclass]
|
|
||||||
#[pyo3(name = "ConfigItem")]
|
|
||||||
pub struct ConfigItemPy {
|
|
||||||
pub item: ConfigItem,
|
|
||||||
pub default_value: ConfigItem,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ConfigItemPy {
|
|
||||||
pub fn new(item: ConfigItem, default_value: ConfigItem) -> Self {
|
|
||||||
Self {
|
|
||||||
item,
|
|
||||||
default_value,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn new_uninit(default_value: ConfigItem) -> Self {
|
|
||||||
Self {
|
|
||||||
item: ConfigItem::None,
|
|
||||||
default_value,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone)]
|
|
||||||
#[pyclass]
|
|
||||||
#[pyo3(name = "ConfigStorage")]
|
|
||||||
pub struct ConfigStoragePy {
|
|
||||||
pub keys: HashMap<String, ConfigItemPy>,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Storage 里允许的最大层级深度
|
|
||||||
///
|
|
||||||
/// 我也不知道为啥就突然有这玩意了(
|
|
||||||
pub const MAX_CFG_DEPTH: usize = 10;
|
|
||||||
|
|
||||||
fn parse_py_string(obj: &Bound<'_, PyAny>) -> PyResult<String> {
|
|
||||||
let py_str = obj.downcast::<PyString>()?;
|
|
||||||
let value = py_str.to_str()?;
|
|
||||||
Ok(value.to_string())
|
|
||||||
}
|
|
||||||
|
|
||||||
fn parse_py_bool(obj: &Bound<'_, PyAny>) -> PyResult<bool> {
|
|
||||||
let py_bool = obj.downcast::<PyBool>()?;
|
|
||||||
Ok(py_bool.is_true())
|
|
||||||
}
|
|
||||||
|
|
||||||
fn parse_py_int(obj: &Bound<'_, PyAny>) -> PyResult<i64> {
|
|
||||||
let py_int = obj.downcast::<PyInt>()?;
|
|
||||||
py_int.extract::<i64>()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn parse_py_float(obj: &Bound<'_, PyAny>) -> PyResult<f64> {
|
|
||||||
let py_float = obj.downcast::<PyFloat>()?;
|
|
||||||
py_float.extract::<f64>()
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ConfigStoragePy {
|
|
||||||
/// 递归 list 解析配置
|
|
||||||
///
|
|
||||||
/// 用个 Result 来标记递归过深
|
|
||||||
fn parse_py_list(
|
|
||||||
args: &Bound<'_, PyList>,
|
|
||||||
list: &mut Vec<ConfigItemPy>,
|
|
||||||
current_deepth: usize,
|
|
||||||
) -> Result<(), usize> {
|
|
||||||
if current_deepth > MAX_CFG_DEPTH {
|
|
||||||
return Err(current_deepth);
|
|
||||||
} else {
|
|
||||||
for value in args.iter() {
|
|
||||||
// 匹配 item
|
|
||||||
let value_type = value.get_type();
|
|
||||||
if value_type.is_instance_of::<PyDict>() {
|
|
||||||
let py_dict = value.downcast::<PyDict>().unwrap();
|
|
||||||
let mut new_map = HashMap::new();
|
|
||||||
match Self::parse_py_dict(py_dict, &mut new_map, current_deepth + 1) {
|
|
||||||
Ok(_) => {
|
|
||||||
list.push(ConfigItemPy::new_uninit(ConfigItem::Table(new_map)));
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"value(dict) 解析时出现错误: {}\nraw: {}",
|
|
||||||
e,
|
|
||||||
value
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if value_type.is_instance_of::<PyList>() {
|
|
||||||
let py_list = value.downcast::<PyList>().unwrap();
|
|
||||||
let mut new_list = Vec::new();
|
|
||||||
match Self::parse_py_list(py_list, &mut new_list, current_deepth + 1) {
|
|
||||||
Ok(_) => {
|
|
||||||
list.push(ConfigItemPy::new_uninit(ConfigItem::Array(new_list)));
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"value(list) 解析时出现错误: {}\nraw: {}",
|
|
||||||
e,
|
|
||||||
value
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if value_type.is_instance_of::<PyString>() {
|
|
||||||
match parse_py_string(&value) {
|
|
||||||
Ok(value) => {
|
|
||||||
list.push(ConfigItemPy::new_uninit(ConfigItem::String(value)));
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"value(string) 解析时出现错误: {}\nraw: {}",
|
|
||||||
e,
|
|
||||||
value
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if value_type.is_instance_of::<PyBool>() {
|
|
||||||
match parse_py_bool(&value) {
|
|
||||||
Ok(value) => {
|
|
||||||
list.push(ConfigItemPy::new_uninit(ConfigItem::Bool(value)));
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"value(bool) 解析时出现错误: {}\nraw: {}",
|
|
||||||
e,
|
|
||||||
value
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if value_type.is_instance_of::<PyInt>() {
|
|
||||||
match parse_py_int(&value) {
|
|
||||||
Ok(value) => {
|
|
||||||
list.push(ConfigItemPy::new_uninit(ConfigItem::Int(value)));
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::WARN, "value(int) 解析时出现错误: {}\nraw: {}", e, value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if value_type.is_instance_of::<PyFloat>() {
|
|
||||||
match parse_py_float(&value) {
|
|
||||||
Ok(value) => {
|
|
||||||
list.push(ConfigItemPy::new_uninit(ConfigItem::Float(value)));
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"value(float) 解析时出现错误: {}\nraw: {}",
|
|
||||||
e,
|
|
||||||
value
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// 先丢个 warning 出去
|
|
||||||
match value_type.name() {
|
|
||||||
Ok(type_name) => {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"value 为不支持的 {} 类型\nraw: {}",
|
|
||||||
type_name,
|
|
||||||
value
|
|
||||||
)
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"value 为不支持的类型 (获取类型名失败: {})\nraw: {}",
|
|
||||||
e,
|
|
||||||
value
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 递归 dict 解析配置
|
|
||||||
///
|
|
||||||
/// 用个 Result 来标记递归过深
|
|
||||||
fn parse_py_dict(
|
|
||||||
kwargs: &Bound<'_, PyDict>,
|
|
||||||
map: &mut HashMap<String, ConfigItemPy>,
|
|
||||||
current_deepth: usize,
|
|
||||||
) -> Result<(), usize> {
|
|
||||||
if current_deepth > MAX_CFG_DEPTH {
|
|
||||||
Err(current_deepth)
|
|
||||||
} else {
|
|
||||||
for (key, value) in kwargs.iter() {
|
|
||||||
if let Ok(name) = key.downcast::<PyString>() {
|
|
||||||
let name = name.to_string();
|
|
||||||
// 匹配 item
|
|
||||||
let value_type = value.get_type();
|
|
||||||
if value_type.is_instance_of::<PyDict>() {
|
|
||||||
let py_dict = value.downcast::<PyDict>().unwrap();
|
|
||||||
let mut new_map = HashMap::new();
|
|
||||||
match Self::parse_py_dict(py_dict, &mut new_map, current_deepth + 1) {
|
|
||||||
Ok(_) => {
|
|
||||||
map.insert(
|
|
||||||
name.clone(),
|
|
||||||
ConfigItemPy::new_uninit(ConfigItem::Table(new_map)),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::WARN, "value(dict) {} 解析时出现错误: {}", name, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if value_type.is_instance_of::<PyList>() {
|
|
||||||
let py_list = value.downcast::<PyList>().unwrap();
|
|
||||||
let mut new_list = Vec::new();
|
|
||||||
match Self::parse_py_list(py_list, &mut new_list, current_deepth + 1) {
|
|
||||||
Ok(_) => {
|
|
||||||
map.insert(
|
|
||||||
name.clone(),
|
|
||||||
ConfigItemPy::new_uninit(ConfigItem::Array(new_list)),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::WARN, "value(list) {} 解析时出现错误: {}", name, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if value_type.is_instance_of::<PyString>() {
|
|
||||||
match parse_py_string(&value) {
|
|
||||||
Ok(value) => {
|
|
||||||
map.insert(
|
|
||||||
name.clone(),
|
|
||||||
ConfigItemPy::new_uninit(ConfigItem::String(value)),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::WARN, "value(string) {} 解析时出现错误: {}", name, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if value_type.is_instance_of::<PyBool>() {
|
|
||||||
match parse_py_bool(&value) {
|
|
||||||
Ok(value) => {
|
|
||||||
map.insert(
|
|
||||||
name.clone(),
|
|
||||||
ConfigItemPy::new_uninit(ConfigItem::Bool(value)),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::WARN, "value(bool) {} 解析时出现错误: {}", name, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if value_type.is_instance_of::<PyInt>() {
|
|
||||||
match parse_py_int(&value) {
|
|
||||||
Ok(value) => {
|
|
||||||
map.insert(
|
|
||||||
name.clone(),
|
|
||||||
ConfigItemPy::new_uninit(ConfigItem::Int(value)),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::WARN, "value(int) {} 解析时出现错误: {}", name, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if value_type.is_instance_of::<PyFloat>() {
|
|
||||||
match parse_py_float(&value) {
|
|
||||||
Ok(value) => {
|
|
||||||
map.insert(
|
|
||||||
name.clone(),
|
|
||||||
ConfigItemPy::new_uninit(ConfigItem::Float(value)),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::WARN, "value(float) {} 解析时出现错误: {}", name, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// 先丢个 warning 出去
|
|
||||||
match value_type.name() {
|
|
||||||
Ok(type_name) => {
|
|
||||||
event!(Level::WARN, "value {} 为不支持的 {} 类型", name, type_name)
|
|
||||||
}
|
|
||||||
Err(e) => event!(
|
|
||||||
Level::WARN,
|
|
||||||
"value {} 为不支持的类型 (获取类型名失败: {})",
|
|
||||||
name,
|
|
||||||
e
|
|
||||||
),
|
|
||||||
}
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[pymethods]
|
|
||||||
impl ConfigStoragePy {
|
|
||||||
#[new]
|
|
||||||
#[pyo3(signature = (**kwargs))]
|
|
||||||
pub fn new(kwargs: Option<&Bound<'_, PyDict>>) -> PyResult<Self> {
|
|
||||||
match kwargs {
|
|
||||||
Some(kwargs) => {
|
|
||||||
let mut keys = HashMap::new();
|
|
||||||
// 解析 kwargs
|
|
||||||
Self::parse_py_dict(kwargs, &mut keys, 0).map_err(|e| {
|
|
||||||
event!(Level::ERROR, "配置解析过深: {}", e);
|
|
||||||
pyo3::exceptions::PyValueError::new_err(format!("配置解析过深: {}", e))
|
|
||||||
})?;
|
|
||||||
// 解析完成
|
|
||||||
Ok(Self { keys })
|
|
||||||
}
|
|
||||||
None => Ok(Self {
|
|
||||||
keys: HashMap::new(),
|
|
||||||
}),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[getter]
|
|
||||||
/// 获取最大允许的层级深度
|
|
||||||
pub fn get_max_allowed_depth(&self) -> usize { MAX_CFG_DEPTH }
|
|
||||||
}
|
|
|
@ -1,17 +1,16 @@
|
||||||
use std::time::SystemTime;
|
use std::time::SystemTime;
|
||||||
|
|
||||||
use pyo3::{pyclass, pymethods};
|
use pyo3::prelude::*;
|
||||||
use rust_socketio::asynchronous::Client;
|
use rust_socketio::asynchronous::Client;
|
||||||
use tokio::runtime::Runtime;
|
use tokio::runtime::Runtime;
|
||||||
use tracing::{Level, event};
|
use tracing::{debug, info, warn};
|
||||||
|
|
||||||
use crate::MainStatus;
|
|
||||||
use crate::data_struct::ica::messages::{
|
use crate::data_struct::ica::messages::{
|
||||||
DeleteMessage, MessageTrait, NewMessage, ReplyMessage, SendMessage,
|
DeleteMessage, MessageTrait, NewMessage, ReplyMessage, SendMessage,
|
||||||
};
|
};
|
||||||
use crate::data_struct::ica::{MessageId, RoomId, RoomIdTrait, UserId};
|
use crate::data_struct::ica::{MessageId, RoomId, RoomIdTrait};
|
||||||
use crate::ica::client::{delete_message, send_message, send_poke, send_room_sign_in};
|
use crate::ica::client::{delete_message, send_message};
|
||||||
use crate::py::PyStatus;
|
use crate::MainStatus;
|
||||||
|
|
||||||
#[pyclass]
|
#[pyclass]
|
||||||
#[pyo3(name = "IcaStatus")]
|
#[pyo3(name = "IcaStatus")]
|
||||||
|
@ -63,27 +62,6 @@ impl IcaStatusPy {
|
||||||
pub fn get_load(&self) -> String {
|
pub fn get_load(&self) -> String {
|
||||||
MainStatus::global_ica_status().online_status.icalingua_info.load.clone()
|
MainStatus::global_ica_status().online_status.icalingua_info.load.clone()
|
||||||
}
|
}
|
||||||
#[getter]
|
|
||||||
/// 获取当前用户加入的所有房间
|
|
||||||
///
|
|
||||||
/// 添加自 2.0.1
|
|
||||||
pub fn get_rooms(&self) -> Vec<IcaRoomPy> {
|
|
||||||
MainStatus::global_ica_status().rooms.iter().map(|r| r.into()).collect()
|
|
||||||
}
|
|
||||||
#[getter]
|
|
||||||
/// 获取所有管理员
|
|
||||||
///
|
|
||||||
/// 添加自 2.0.1
|
|
||||||
pub fn get_admins(&self) -> Vec<UserId> { MainStatus::global_config().ica().admin_list.clone() }
|
|
||||||
#[getter]
|
|
||||||
/// 获取所有被屏蔽的人
|
|
||||||
///
|
|
||||||
/// (好像没啥用就是了, 反正被过滤的不会给到插件)
|
|
||||||
///
|
|
||||||
/// 添加自 2.0.1
|
|
||||||
pub fn get_filtered(&self) -> Vec<UserId> {
|
|
||||||
MainStatus::global_config().ica().filter_list.clone()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for IcaStatusPy {
|
impl Default for IcaStatusPy {
|
||||||
|
@ -94,47 +72,6 @@ impl IcaStatusPy {
|
||||||
pub fn new() -> Self { Self {} }
|
pub fn new() -> Self { Self {} }
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone)]
|
|
||||||
#[pyclass]
|
|
||||||
#[pyo3(name = "IcaRoom")]
|
|
||||||
/// Room api
|
|
||||||
///
|
|
||||||
/// 添加自 2.0.1
|
|
||||||
pub struct IcaRoomPy {
|
|
||||||
pub inner: crate::data_struct::ica::all_rooms::Room,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<crate::data_struct::ica::all_rooms::Room> for IcaRoomPy {
|
|
||||||
fn from(inner: crate::data_struct::ica::all_rooms::Room) -> Self { Self { inner } }
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<&crate::data_struct::ica::all_rooms::Room> for IcaRoomPy {
|
|
||||||
fn from(inner: &crate::data_struct::ica::all_rooms::Room) -> Self {
|
|
||||||
Self {
|
|
||||||
inner: inner.clone(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[pymethods]
|
|
||||||
impl IcaRoomPy {
|
|
||||||
#[getter]
|
|
||||||
pub fn get_room_id(&self) -> i64 { self.inner.room_id }
|
|
||||||
#[getter]
|
|
||||||
pub fn get_room_name(&self) -> String { self.inner.room_name.clone() }
|
|
||||||
#[getter]
|
|
||||||
pub fn get_unread_count(&self) -> u64 { self.inner.unread_count }
|
|
||||||
#[getter]
|
|
||||||
pub fn get_priority(&self) -> u8 { self.inner.priority }
|
|
||||||
#[getter]
|
|
||||||
pub fn get_utime(&self) -> i64 { self.inner.utime }
|
|
||||||
pub fn is_group(&self) -> bool { self.inner.room_id.is_room() }
|
|
||||||
pub fn is_chat(&self) -> bool { self.inner.room_id.is_chat() }
|
|
||||||
pub fn new_message_to(&self, content: String) -> SendMessagePy {
|
|
||||||
SendMessagePy::new(self.inner.new_message_to(content))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
#[pyclass]
|
#[pyclass]
|
||||||
#[pyo3(name = "NewMessage")]
|
#[pyo3(name = "NewMessage")]
|
||||||
|
@ -208,18 +145,10 @@ impl SendMessagePy {
|
||||||
pub fn get_content(&self) -> String { self.msg.content.clone() }
|
pub fn get_content(&self) -> String { self.msg.content.clone() }
|
||||||
#[setter]
|
#[setter]
|
||||||
pub fn set_content(&mut self, content: String) { self.msg.content = content; }
|
pub fn set_content(&mut self, content: String) { self.msg.content = content; }
|
||||||
#[getter]
|
|
||||||
pub fn get_room_id(&self) -> RoomId { self.msg.room_id }
|
|
||||||
#[setter]
|
|
||||||
pub fn set_room_id(&mut self, room_id: RoomId) { self.msg.room_id = room_id; }
|
|
||||||
/// 设置消息图片
|
/// 设置消息图片
|
||||||
pub fn set_img(&mut self, file: Vec<u8>, file_type: String, as_sticker: bool) {
|
pub fn set_img(&mut self, file: Vec<u8>, file_type: String, as_sticker: bool) {
|
||||||
self.msg.set_img(&file, &file_type, as_sticker);
|
self.msg.set_img(&file, &file_type, as_sticker);
|
||||||
}
|
}
|
||||||
pub fn remove_reply(&mut self) -> Self {
|
|
||||||
self.msg.reply_to = None;
|
|
||||||
self.clone()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl SendMessagePy {
|
impl SendMessagePy {
|
||||||
|
@ -251,26 +180,6 @@ pub struct IcaClientPy {
|
||||||
|
|
||||||
#[pymethods]
|
#[pymethods]
|
||||||
impl IcaClientPy {
|
impl IcaClientPy {
|
||||||
/// 签到
|
|
||||||
///
|
|
||||||
/// 添加自 1.6.5 版本
|
|
||||||
pub fn send_room_sign_in(&self, room_id: RoomId) -> bool {
|
|
||||||
tokio::task::block_in_place(|| {
|
|
||||||
let rt = Runtime::new().unwrap();
|
|
||||||
rt.block_on(send_room_sign_in(&self.client, room_id))
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 戳一戳
|
|
||||||
///
|
|
||||||
/// 添加自 1.6.5 版本
|
|
||||||
pub fn send_poke(&self, room_id: RoomId, user_id: UserId) -> bool {
|
|
||||||
tokio::task::block_in_place(|| {
|
|
||||||
let rt = Runtime::new().unwrap();
|
|
||||||
rt.block_on(send_poke(&self.client, room_id, user_id))
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn send_message(&self, message: SendMessagePy) -> bool {
|
pub fn send_message(&self, message: SendMessagePy) -> bool {
|
||||||
tokio::task::block_in_place(|| {
|
tokio::task::block_in_place(|| {
|
||||||
let rt = Runtime::new().unwrap();
|
let rt = Runtime::new().unwrap();
|
||||||
|
@ -279,7 +188,7 @@ impl IcaClientPy {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn send_and_warn(&self, message: SendMessagePy) -> bool {
|
pub fn send_and_warn(&self, message: SendMessagePy) -> bool {
|
||||||
event!(Level::WARN, message.msg.content);
|
warn!(message.msg.content);
|
||||||
self.send_message(message)
|
self.send_message(message)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -315,48 +224,16 @@ impl IcaClientPy {
|
||||||
#[getter]
|
#[getter]
|
||||||
pub fn get_ica_version(&self) -> String { crate::ICA_VERSION.to_string() }
|
pub fn get_ica_version(&self) -> String { crate::ICA_VERSION.to_string() }
|
||||||
#[getter]
|
#[getter]
|
||||||
pub fn get_startup_time(&self) -> SystemTime { crate::start_up_time() }
|
pub fn get_startup_time(&self) -> SystemTime { crate::MainStatus::get_startup_time() }
|
||||||
|
|
||||||
#[getter]
|
|
||||||
pub fn get_py_tasks_count(&self) -> usize {
|
|
||||||
tokio::task::block_in_place(|| {
|
|
||||||
let rt = Runtime::new().unwrap();
|
|
||||||
rt.block_on(async { crate::py::call::PY_TASKS.lock().await.len_check() })
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 重新加载插件状态
|
|
||||||
/// 返回是否成功
|
|
||||||
pub fn reload_plugin_status(&self) -> bool { PyStatus::get_mut().config.reload_from_default() }
|
|
||||||
|
|
||||||
/// 设置某个插件的状态
|
|
||||||
pub fn set_plugin_status(&self, plugin_name: String, status: bool) {
|
|
||||||
PyStatus::get_mut().set_status(&plugin_name, status);
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_plugin_status(&self, plugin_name: String) -> Option<bool> {
|
|
||||||
PyStatus::get().get_status(&plugin_name)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 同步状态到配置文件
|
|
||||||
/// 这样关闭的时候就会保存状态
|
|
||||||
pub fn sync_status_to_config(&self) { PyStatus::get_mut().config.sync_status_to_config(); }
|
|
||||||
|
|
||||||
/// 重新加载插件
|
|
||||||
///
|
|
||||||
/// 返回是否成功
|
|
||||||
pub fn reload_plugin(&self, plugin_name: String) -> bool {
|
|
||||||
PyStatus::get_mut().reload_plugin(&plugin_name)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn debug(&self, content: String) {
|
pub fn debug(&self, content: String) {
|
||||||
event!(Level::DEBUG, "{}", content);
|
debug!("{}", content);
|
||||||
}
|
}
|
||||||
pub fn info(&self, content: String) {
|
pub fn info(&self, content: String) {
|
||||||
event!(Level::INFO, "{}", content);
|
info!("{}", content);
|
||||||
}
|
}
|
||||||
pub fn warn(&self, content: String) {
|
pub fn warn(&self, content: String) {
|
||||||
event!(Level::WARN, "{}", content);
|
warn!("{}", content);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,59 +0,0 @@
|
||||||
use std::time::Duration;
|
|
||||||
|
|
||||||
use pyo3::{Bound, Py, PyTraverseError, PyVisit, Python, pyclass, pymethods, types::PyFunction};
|
|
||||||
use tracing::{Level, event};
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
#[pyclass]
|
|
||||||
#[pyo3(name = "Scheduler")]
|
|
||||||
/// 用于计划任务的类
|
|
||||||
///
|
|
||||||
/// 给 Python 侧使用
|
|
||||||
///
|
|
||||||
/// add: 0.9.0
|
|
||||||
pub struct SchedulerPy {
|
|
||||||
/// 回调函数
|
|
||||||
///
|
|
||||||
/// 你最好不要把他清理掉
|
|
||||||
pub callback: Py<PyFunction>,
|
|
||||||
/// 预计等待时间
|
|
||||||
pub schdule_time: Duration,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[pymethods]
|
|
||||||
impl SchedulerPy {
|
|
||||||
fn __traverse__(&self, visit: PyVisit<'_>) -> Result<(), PyTraverseError> {
|
|
||||||
visit.call(&self.callback)?;
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
#[new]
|
|
||||||
pub fn new(func: Bound<'_, PyFunction>, schdule_time: Duration) -> Self {
|
|
||||||
Self {
|
|
||||||
callback: func.unbind(),
|
|
||||||
schdule_time,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 开始
|
|
||||||
pub fn start(&self, py: Python<'_>) {
|
|
||||||
let wait = self.schdule_time;
|
|
||||||
let cb = self.callback.clone_ref(py);
|
|
||||||
tokio::spawn(async move {
|
|
||||||
let second = Duration::from_secs(1);
|
|
||||||
if wait > second {
|
|
||||||
let big_sleep = wait.checked_sub(second).unwrap();
|
|
||||||
tokio::time::sleep(big_sleep).await;
|
|
||||||
tokio::time::sleep(second).await;
|
|
||||||
} else {
|
|
||||||
tokio::time::sleep(wait).await;
|
|
||||||
}
|
|
||||||
Python::with_gil(|py| {
|
|
||||||
event!(Level::INFO, "正在调用计划 {:?}", wait);
|
|
||||||
if let Err(e) = cb.call0(py) {
|
|
||||||
event!(Level::WARN, "调用时出现错误 {}", e);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -3,12 +3,10 @@ use std::time::SystemTime;
|
||||||
use pyo3::prelude::*;
|
use pyo3::prelude::*;
|
||||||
|
|
||||||
use rust_socketio::asynchronous::Client;
|
use rust_socketio::asynchronous::Client;
|
||||||
use tokio::runtime::Runtime;
|
|
||||||
use tracing::{debug, info, warn};
|
use tracing::{debug, info, warn};
|
||||||
|
|
||||||
use crate::data_struct::tailchat::messages::{ReceiveMessage, SendingFile, SendingMessage};
|
use crate::data_struct::tailchat::messages::{ReceiveMessage, SendingFile, SendingMessage};
|
||||||
use crate::data_struct::tailchat::{ConverseId, GroupId, MessageId, UserId};
|
use crate::data_struct::tailchat::{ConverseId, GroupId, MessageId, UserId};
|
||||||
use crate::py::PyStatus;
|
|
||||||
use crate::tailchat::client::send_message;
|
use crate::tailchat::client::send_message;
|
||||||
|
|
||||||
#[pyclass]
|
#[pyclass]
|
||||||
|
@ -73,51 +71,7 @@ impl TailchatClientPy {
|
||||||
#[getter]
|
#[getter]
|
||||||
pub fn get_tailchat_version(&self) -> String { crate::TAILCHAT_VERSION.to_string() }
|
pub fn get_tailchat_version(&self) -> String { crate::TAILCHAT_VERSION.to_string() }
|
||||||
#[getter]
|
#[getter]
|
||||||
pub fn get_startup_time(&self) -> SystemTime { crate::start_up_time() }
|
pub fn get_startup_time(&self) -> SystemTime { crate::MainStatus::get_startup_time() }
|
||||||
|
|
||||||
#[getter]
|
|
||||||
pub fn get_py_tasks_count(&self) -> usize {
|
|
||||||
tokio::task::block_in_place(|| {
|
|
||||||
let rt = Runtime::new().unwrap();
|
|
||||||
rt.block_on(async { crate::py::call::PY_TASKS.lock().await.len_check() })
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 重新加载插件状态
|
|
||||||
/// 返回是否成功
|
|
||||||
pub fn reload_plugin_status(&self) -> bool { PyStatus::get_mut().config.reload_from_default() }
|
|
||||||
|
|
||||||
/// 设置某个插件的状态
|
|
||||||
pub fn set_plugin_status(&self, plugin_name: String, status: bool) {
|
|
||||||
PyStatus::get_mut().set_status(&plugin_name, status);
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_plugin_status(&self, plugin_name: String) -> Option<bool> {
|
|
||||||
PyStatus::get().get_status(&plugin_name)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 同步状态到配置文件
|
|
||||||
/// 这样关闭的时候就会保存状态
|
|
||||||
pub fn sync_status_to_config(&self) { PyStatus::get_mut().config.sync_status_to_config(); }
|
|
||||||
|
|
||||||
/// 重新加载插件
|
|
||||||
///
|
|
||||||
/// 返回是否成功
|
|
||||||
pub fn reload_plugin(&self, plugin_name: String) -> bool {
|
|
||||||
PyStatus::get_mut().reload_plugin(&plugin_name)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[pyo3(signature = (content, converse_id, group_id = None))]
|
|
||||||
pub fn new_message(
|
|
||||||
&self,
|
|
||||||
content: String,
|
|
||||||
converse_id: ConverseId,
|
|
||||||
group_id: Option<GroupId>,
|
|
||||||
) -> TailchatSendingMessagePy {
|
|
||||||
TailchatSendingMessagePy {
|
|
||||||
message: SendingMessage::new(content, converse_id, group_id, None),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
pub fn debug(&self, content: String) {
|
pub fn debug(&self, content: String) {
|
||||||
debug!("{}", content);
|
debug!("{}", content);
|
||||||
}
|
}
|
||||||
|
@ -178,10 +132,6 @@ impl TailchatSendingMessagePy {
|
||||||
self.message.content = content;
|
self.message.content = content;
|
||||||
self.clone()
|
self.clone()
|
||||||
}
|
}
|
||||||
pub fn clear_meta(&mut self) -> Self {
|
|
||||||
self.message.meta = None;
|
|
||||||
self.clone()
|
|
||||||
}
|
|
||||||
pub fn set_img(&mut self, file: Vec<u8>, file_name: String) {
|
pub fn set_img(&mut self, file: Vec<u8>, file_name: String) {
|
||||||
let file = SendingFile::Image {
|
let file = SendingFile::Image {
|
||||||
file,
|
file,
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
use std::{path::Path, str::FromStr};
|
use std::{
|
||||||
|
path::{Path, PathBuf},
|
||||||
|
str::FromStr,
|
||||||
|
};
|
||||||
|
|
||||||
use colored::Colorize;
|
use toml_edit::{value, DocumentMut, Key, Table, TomlError, Value};
|
||||||
use toml_edit::{DocumentMut, Key, Table, TomlError, Value, value};
|
use tracing::{event, Level};
|
||||||
use tracing::{Level, event};
|
|
||||||
|
|
||||||
use crate::MainStatus;
|
|
||||||
use crate::py::PyStatus;
|
use crate::py::PyStatus;
|
||||||
|
|
||||||
/// ```toml
|
/// ```toml
|
||||||
|
@ -28,41 +29,16 @@ pub const DEFAULT_CONFIG: &str = r#"
|
||||||
[plugins]
|
[plugins]
|
||||||
"#;
|
"#;
|
||||||
|
|
||||||
#[allow(unused)]
|
|
||||||
impl PluginConfigFile {
|
impl PluginConfigFile {
|
||||||
pub fn from_str(data: &str) -> Result<Self, TomlError> {
|
pub fn from_str(data: &str) -> Result<Self, TomlError> {
|
||||||
let mut data = DocumentMut::from_str(data)?;
|
let data = DocumentMut::from_str(data)?;
|
||||||
if data.get(CONFIG_KEY).is_none() {
|
|
||||||
event!(Level::WARN, "插件配置文件缺少 plugins 字段, 正在初始化");
|
|
||||||
data.insert_formatted(
|
|
||||||
&Key::from_str(CONFIG_KEY).unwrap(),
|
|
||||||
toml_edit::Item::Table(Table::new()),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Ok(Self { data })
|
Ok(Self { data })
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn default_init() -> anyhow::Result<Self> {
|
|
||||||
let config_path = MainStatus::global_config().py().config_path.clone();
|
|
||||||
let path = Path::new(&config_path);
|
|
||||||
Self::from_config_path(path)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn reload_from_default(&mut self) -> bool {
|
|
||||||
let new_config = Self::default_init();
|
|
||||||
if let Err(e) = new_config {
|
|
||||||
event!(Level::ERROR, "从配置文件重加载时遇到错误: {}", e);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
let new_config = new_config.unwrap();
|
|
||||||
self.data = new_config.data;
|
|
||||||
true
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn from_config_path(path: &Path) -> anyhow::Result<Self> {
|
pub fn from_config_path(path: &Path) -> anyhow::Result<Self> {
|
||||||
let config_path = path.join(CONFIG_FILE_NAME);
|
let config_path = path.join(CONFIG_FILE_NAME);
|
||||||
if !config_path.exists() {
|
if !config_path.exists() {
|
||||||
event!(Level::WARN, "插件配置文件不存在, 正在创建");
|
event!(Level::INFO, "插件配置文件不存在, 正在创建");
|
||||||
std::fs::write(&config_path, DEFAULT_CONFIG)?;
|
std::fs::write(&config_path, DEFAULT_CONFIG)?;
|
||||||
Ok(Self::from_str(DEFAULT_CONFIG)?)
|
Ok(Self::from_str(DEFAULT_CONFIG)?)
|
||||||
} else {
|
} else {
|
||||||
|
@ -71,20 +47,23 @@ impl PluginConfigFile {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_table(&self) -> Option<&Table> {
|
pub fn verify_and_init(&mut self) {
|
||||||
self.data.get(CONFIG_KEY).and_then(|item| item.as_table())
|
if self.data.get(CONFIG_KEY).is_none() {
|
||||||
|
event!(Level::INFO, "插件配置文件缺少 plugins 字段, 正在初始化");
|
||||||
|
self.data.insert_formatted(
|
||||||
|
&Key::from_str(CONFIG_KEY).unwrap(),
|
||||||
|
toml_edit::Item::Table(Table::new()),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_table_mut(&mut self) -> Option<&mut Table> {
|
|
||||||
self.data.get_mut(CONFIG_KEY).and_then(|item| item.as_table_mut())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 获取插件状态
|
/// 获取插件状态
|
||||||
/// 默认为 true
|
/// 默认为 true
|
||||||
pub fn get_status(&self, plugin_id: &str) -> bool {
|
pub fn get_status(&self, path: &Path) -> bool {
|
||||||
|
let path_str = path.to_str().unwrap();
|
||||||
if let Some(item) = self.data.get(CONFIG_KEY) {
|
if let Some(item) = self.data.get(CONFIG_KEY) {
|
||||||
if let Some(table) = item.as_table() {
|
if let Some(table) = item.as_table() {
|
||||||
if let Some(item) = table.get(plugin_id) {
|
if let Some(item) = table.get(path_str) {
|
||||||
if let Some(bool) = item.as_bool() {
|
if let Some(bool) = item.as_bool() {
|
||||||
return bool;
|
return bool;
|
||||||
}
|
}
|
||||||
|
@ -94,25 +73,9 @@ impl PluginConfigFile {
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 删掉一个状态
|
|
||||||
pub fn remove_status(&mut self, path: &Path) -> Option<bool> {
|
|
||||||
let path_str = path.to_str().unwrap();
|
|
||||||
if let Some(table) = self.get_table_mut() {
|
|
||||||
if let Some(item) = table.get_mut(path_str) {
|
|
||||||
if let Some(bool) = item.as_bool() {
|
|
||||||
table.remove(path_str);
|
|
||||||
return Some(bool);
|
|
||||||
} else {
|
|
||||||
table.remove(path_str);
|
|
||||||
return Some(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
None
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 设置插件状态
|
/// 设置插件状态
|
||||||
pub fn set_status(&mut self, path: &Path, status: bool) {
|
pub fn set_status(&mut self, path: &Path, status: bool) {
|
||||||
|
self.verify_and_init();
|
||||||
let path_str = path.to_str().unwrap();
|
let path_str = path.to_str().unwrap();
|
||||||
let table = self.data.get_mut(CONFIG_KEY).unwrap().as_table_mut().unwrap();
|
let table = self.data.get_mut(CONFIG_KEY).unwrap().as_table_mut().unwrap();
|
||||||
if table.contains_key(path_str) {
|
if table.contains_key(path_str) {
|
||||||
|
@ -127,64 +90,27 @@ impl PluginConfigFile {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 从默认文件读取状态
|
pub fn sync_status_from_config(&mut self) {
|
||||||
///
|
let plugins = PyStatus::get_map_mut();
|
||||||
/// 返回是否成功
|
self.verify_and_init();
|
||||||
pub fn read_status_from_default(&mut self) -> bool {
|
plugins.iter_mut().for_each(|(path, status)| {
|
||||||
if !self.reload_from_default() {
|
let config_status = self.get_status(path);
|
||||||
return false;
|
event!(Level::INFO, "插件状态: {:?} {} -> {}", path, status.enabled, config_status);
|
||||||
}
|
|
||||||
event!(Level::INFO, "同步插件状态");
|
|
||||||
let plugins = PyStatus::get_mut();
|
|
||||||
|
|
||||||
fn fmt_bool(b: bool) -> String {
|
|
||||||
if b {
|
|
||||||
"启用".green().to_string()
|
|
||||||
} else {
|
|
||||||
"禁用".red().to_string()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
plugins.files.iter_mut().for_each(|(path, status)| {
|
|
||||||
let plugin_id = status.get_id();
|
|
||||||
let config_status = self.get_status(&plugin_id);
|
|
||||||
if config_status != status.enabled {
|
|
||||||
event!(
|
|
||||||
Level::INFO,
|
|
||||||
"插件状态: {} {} -> {}",
|
|
||||||
status.get_id(),
|
|
||||||
fmt_bool(status.enabled),
|
|
||||||
fmt_bool(config_status)
|
|
||||||
);
|
|
||||||
status.enabled = config_status;
|
status.enabled = config_status;
|
||||||
} else {
|
|
||||||
event!(
|
|
||||||
Level::INFO,
|
|
||||||
"插件状态: {} {} (没变)",
|
|
||||||
status.get_id(),
|
|
||||||
fmt_bool(status.enabled)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn sync_status_to_config(&mut self) {
|
pub fn sync_status_to_config(&mut self) {
|
||||||
let plugins = PyStatus::get();
|
let plugins = PyStatus::get_map();
|
||||||
|
self.verify_and_init();
|
||||||
let table = self.data.get_mut(CONFIG_KEY).unwrap().as_table_mut().unwrap();
|
let table = self.data.get_mut(CONFIG_KEY).unwrap().as_table_mut().unwrap();
|
||||||
table.clear();
|
table.clear();
|
||||||
plugins.files.iter().for_each(|(_, status)| {
|
plugins.iter().for_each(|(path, status)| {
|
||||||
table.insert(&status.get_id(), value(status.enabled));
|
table.insert(path.to_str().unwrap(), value(status.enabled));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn write_to_default(&self) -> Result<(), std::io::Error> {
|
pub fn write_to_file(&self, path: &PathBuf) -> Result<(), std::io::Error> {
|
||||||
let config_path = MainStatus::global_config().py().config_path.clone();
|
|
||||||
let config_path = Path::new(&config_path);
|
|
||||||
self.write_to_file(config_path)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn write_to_file(&self, path: &Path) -> Result<(), std::io::Error> {
|
|
||||||
let config_path = path.join(CONFIG_FILE_NAME);
|
let config_path = path.join(CONFIG_FILE_NAME);
|
||||||
std::fs::write(config_path, self.data.to_string())?;
|
std::fs::write(config_path, self.data.to_string())?;
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
pub mod events_func {
|
|
||||||
|
|
||||||
/// icalingua 的 加群请求
|
|
||||||
///
|
|
||||||
/// added: 2.0.1
|
|
||||||
pub const ICA_JOIN_REQUEST: &str = "on_ica_join_request";
|
|
||||||
/// icalingua 的 新消息
|
|
||||||
pub const ICA_NEW_MESSAGE: &str = "on_ica_message";
|
|
||||||
/// icalingua 的 消息撤回
|
|
||||||
pub const ICA_DELETE_MESSAGE: &str = "on_ica_delete_message";
|
|
||||||
|
|
||||||
/// tailchat 的 新消息
|
|
||||||
pub const TAILCHAT_NEW_MESSAGE: &str = "on_tailchat_message";
|
|
||||||
}
|
|
||||||
|
|
||||||
pub mod config_func {
|
|
||||||
/// 请求配置用的函数
|
|
||||||
pub const REQUIRE_CONFIG: &str = "require_config";
|
|
||||||
/// 接受配置用的函数
|
|
||||||
pub const ON_CONFIG: &str = "on_config";
|
|
||||||
}
|
|
|
@ -1,108 +1,120 @@
|
||||||
pub mod call;
|
pub mod call;
|
||||||
pub mod class;
|
pub mod class;
|
||||||
pub mod config;
|
pub mod config;
|
||||||
pub mod consts;
|
|
||||||
|
|
||||||
use std::ffi::CString;
|
|
||||||
use std::fmt::Display;
|
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
use std::sync::OnceLock;
|
|
||||||
use std::time::SystemTime;
|
use std::time::SystemTime;
|
||||||
use std::{collections::HashMap, path::PathBuf};
|
use std::{collections::HashMap, path::PathBuf};
|
||||||
|
|
||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
use pyo3::{
|
use pyo3::prelude::*;
|
||||||
Bound, Py, PyErr, PyResult, Python,
|
use pyo3::types::PyTuple;
|
||||||
exceptions::PyTypeError,
|
use tracing::{event, info, span, warn, Level};
|
||||||
intern,
|
|
||||||
types::{PyAnyMethods, PyModule, PyTracebackMethods, PyTuple},
|
|
||||||
};
|
|
||||||
use tracing::{Level, event, span, warn};
|
|
||||||
|
|
||||||
use crate::MainStatus;
|
use crate::MainStatus;
|
||||||
use crate::error::PyPluginError;
|
|
||||||
|
|
||||||
use consts::config_func;
|
#[derive(Debug, Clone)]
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub struct PyStatus {
|
pub struct PyStatus {
|
||||||
pub files: PyPlugins,
|
pub files: Option<PyPlugins>,
|
||||||
pub config: config::PluginConfigFile,
|
pub config: Option<config::PluginConfigFile>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub type PyPlugins = HashMap<PathBuf, PyPlugin>;
|
pub type PyPlugins = HashMap<PathBuf, PyPlugin>;
|
||||||
pub type RawPyPlugin = (PathBuf, Option<SystemTime>, String);
|
pub type RawPyPlugin = (PathBuf, Option<SystemTime>, String);
|
||||||
|
|
||||||
#[allow(non_upper_case_globals)]
|
|
||||||
static mut PyPluginStatus: OnceLock<PyStatus> = OnceLock::new();
|
|
||||||
|
|
||||||
#[allow(static_mut_refs)]
|
|
||||||
impl PyStatus {
|
impl PyStatus {
|
||||||
pub fn init() {
|
pub fn init() {
|
||||||
let config =
|
unsafe {
|
||||||
config::PluginConfigFile::default_init().expect("初始化 Python 插件配置文件失败");
|
if PYSTATUS.files.is_none() {
|
||||||
let status = PyStatus {
|
PYSTATUS.files = Some(HashMap::new());
|
||||||
files: HashMap::new(),
|
|
||||||
config,
|
|
||||||
};
|
|
||||||
let _ = unsafe { PyPluginStatus.get_or_init(|| status) };
|
|
||||||
}
|
}
|
||||||
|
if PYSTATUS.config.is_none() {
|
||||||
pub fn get() -> &'static PyStatus { unsafe { PyPluginStatus.get().unwrap() } }
|
let plugin_path = MainStatus::global_config().py().config_path.clone();
|
||||||
|
let mut config =
|
||||||
pub fn get_mut() -> &'static mut PyStatus { unsafe { PyPluginStatus.get_mut().unwrap() } }
|
config::PluginConfigFile::from_config_path(&PathBuf::from(plugin_path))
|
||||||
|
.unwrap();
|
||||||
/// 添加一个插件
|
config.verify_and_init();
|
||||||
pub fn add_file(&mut self, path: PathBuf, plugin: PyPlugin) { self.files.insert(path, plugin); }
|
PYSTATUS.config = Some(config);
|
||||||
|
|
||||||
/// 重新加载一个插件
|
|
||||||
pub fn reload_plugin(&mut self, plugin_name: &str) -> bool {
|
|
||||||
let plugin = self.files.iter_mut().find_map(|(_, plugin)| {
|
|
||||||
if plugin.get_id() == plugin_name {
|
|
||||||
Some(plugin)
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
}
|
||||||
});
|
|
||||||
if let Some(plugin) = plugin {
|
|
||||||
plugin.reload_from_file()
|
|
||||||
} else {
|
|
||||||
event!(Level::WARN, "没有找到插件: {}", plugin_name);
|
|
||||||
false
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 删除一个插件
|
pub fn add_file(path: PathBuf, plugin: PyPlugin) { Self::get_map_mut().insert(path, plugin); }
|
||||||
pub fn delete_file(&mut self, path: &PathBuf) -> Option<PyPlugin> { self.files.remove(path) }
|
|
||||||
|
|
||||||
pub fn get_status(&self, pluging_id: &str) -> Option<bool> {
|
pub fn verify_file(path: &PathBuf) -> bool {
|
||||||
self.files.iter().find_map(|(_, plugin)| {
|
Self::get_map().get(path).map_or(false, |plugin| plugin.verifiy())
|
||||||
if plugin.get_id() == pluging_id {
|
|
||||||
return Some(plugin.enabled);
|
|
||||||
}
|
|
||||||
None
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_status(&mut self, pluging_id: &str, status: bool) {
|
pub fn get_map() -> &'static PyPlugins {
|
||||||
self.files.iter_mut().for_each(|(_, plugin)| {
|
unsafe {
|
||||||
if plugin.get_id() == pluging_id {
|
match PYSTATUS.files.as_ref() {
|
||||||
|
Some(files) => files,
|
||||||
|
None => {
|
||||||
|
Self::init();
|
||||||
|
PYSTATUS.files.as_ref().unwrap()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_map_mut() -> &'static mut PyPlugins {
|
||||||
|
unsafe {
|
||||||
|
match PYSTATUS.files.as_mut() {
|
||||||
|
Some(files) => files,
|
||||||
|
None => {
|
||||||
|
Self::init();
|
||||||
|
PYSTATUS.files.as_mut().unwrap()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_config() -> &'static config::PluginConfigFile {
|
||||||
|
unsafe {
|
||||||
|
match PYSTATUS.config.as_ref() {
|
||||||
|
Some(config) => config,
|
||||||
|
None => {
|
||||||
|
Self::init();
|
||||||
|
PYSTATUS.config.as_ref().unwrap()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_config_mut() -> &'static mut config::PluginConfigFile {
|
||||||
|
unsafe {
|
||||||
|
match PYSTATUS.config.as_mut() {
|
||||||
|
Some(config) => config,
|
||||||
|
None => {
|
||||||
|
Self::init();
|
||||||
|
PYSTATUS.config.as_mut().unwrap()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// 获取某个插件的状态
|
||||||
|
/// 以 config 优先
|
||||||
|
pub fn get_status(path: &PathBuf) -> Option<bool> {
|
||||||
|
Self::get_config_mut().sync_status_from_config();
|
||||||
|
Self::get_map().get(path).map(|plugin| plugin.enabled)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn set_status(path: &Path, status: bool) {
|
||||||
|
let cfg = Self::get_config_mut();
|
||||||
|
cfg.set_status(path, status);
|
||||||
|
let map = Self::get_map_mut();
|
||||||
|
if let Some(plugin) = map.get_mut(path) {
|
||||||
plugin.enabled = status;
|
plugin.enabled = status;
|
||||||
}
|
}
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn verify_file(&self, path: &PathBuf) -> bool {
|
|
||||||
self.files.get(path).is_some_and(|plugin| plugin.verifiy())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn display() -> String {
|
pub fn display() -> String {
|
||||||
|
let map = Self::get_map();
|
||||||
format!(
|
format!(
|
||||||
"Python 插件 {{ {} }}",
|
"Python 插件 {{ {} }}",
|
||||||
Self::get()
|
map.iter()
|
||||||
.files
|
.map(|(k, v)| format!("{:?}-{}", k, v.enabled))
|
||||||
.values()
|
|
||||||
.map(|v| v.to_string())
|
|
||||||
.collect::<Vec<String>>()
|
.collect::<Vec<String>>()
|
||||||
.join("\n")
|
.join("\n")
|
||||||
)
|
)
|
||||||
|
@ -110,7 +122,7 @@ impl PyStatus {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_py_err_traceback(py_err: &PyErr) -> String {
|
pub fn get_py_err_traceback(py_err: &PyErr) -> String {
|
||||||
Python::with_gil(|py| match py_err.traceback(py) {
|
Python::with_gil(|py| match py_err.traceback_bound(py) {
|
||||||
Some(traceback) => match traceback.format() {
|
Some(traceback) => match traceback.format() {
|
||||||
Ok(trace) => trace,
|
Ok(trace) => trace,
|
||||||
Err(e) => format!("{:?}", e),
|
Err(e) => format!("{:?}", e),
|
||||||
|
@ -121,24 +133,15 @@ pub fn get_py_err_traceback(py_err: &PyErr) -> String {
|
||||||
.to_string()
|
.to_string()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct PyPlugin {
|
pub struct PyPlugin {
|
||||||
pub file_path: PathBuf,
|
pub file_path: PathBuf,
|
||||||
pub modify_time: Option<SystemTime>,
|
pub changed_time: Option<SystemTime>,
|
||||||
pub py_module: Py<PyModule>,
|
pub py_module: Py<PyAny>,
|
||||||
pub enabled: bool,
|
pub enabled: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl PyPlugin {
|
impl PyPlugin {
|
||||||
pub fn new(path: PathBuf, modify_time: Option<SystemTime>, module: Py<PyModule>) -> Self {
|
|
||||||
PyPlugin {
|
|
||||||
file_path: path.clone(),
|
|
||||||
modify_time,
|
|
||||||
py_module: module,
|
|
||||||
enabled: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// 从文件创建一个新的
|
/// 从文件创建一个新的
|
||||||
pub fn new_from_path(path: &PathBuf) -> Option<Self> {
|
pub fn new_from_path(path: &PathBuf) -> Option<Self> {
|
||||||
let raw_file = load_py_file(path);
|
let raw_file = load_py_file(path);
|
||||||
|
@ -163,16 +166,15 @@ impl PyPlugin {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 从文件更新
|
/// 从文件更新
|
||||||
pub fn reload_from_file(&mut self) -> bool {
|
pub fn reload_from_file(&mut self) {
|
||||||
let raw_file = load_py_file(&self.file_path);
|
let raw_file = load_py_file(&self.file_path);
|
||||||
match raw_file {
|
match raw_file {
|
||||||
Ok(raw_file) => match Self::try_from(raw_file) {
|
Ok(raw_file) => match Self::try_from(raw_file) {
|
||||||
Ok(plugin) => {
|
Ok(plugin) => {
|
||||||
self.py_module = plugin.py_module;
|
self.py_module = plugin.py_module;
|
||||||
self.modify_time = plugin.modify_time;
|
self.changed_time = plugin.changed_time;
|
||||||
self.enabled = PyStatus::get().config.get_status(&self.get_id());
|
self.enabled = PyStatus::get_config().get_status(self.file_path.as_path());
|
||||||
event!(Level::INFO, "更新 Python 插件文件 {:?} 完成", self.file_path);
|
event!(Level::INFO, "更新 Python 插件文件 {:?} 完成", self.file_path);
|
||||||
true
|
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
warn!(
|
warn!(
|
||||||
|
@ -181,12 +183,10 @@ impl PyPlugin {
|
||||||
e,
|
e,
|
||||||
get_py_err_traceback(&e)
|
get_py_err_traceback(&e)
|
||||||
);
|
);
|
||||||
false
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
warn!("更新插件 {:?}: {:?} 失败", self.file_path, e);
|
warn!("更新插件 {:?}: {:?} 失败", self.file_path, e);
|
||||||
false
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -196,7 +196,7 @@ impl PyPlugin {
|
||||||
match get_change_time(&self.file_path) {
|
match get_change_time(&self.file_path) {
|
||||||
None => false,
|
None => false,
|
||||||
Some(time) => {
|
Some(time) => {
|
||||||
if let Some(changed_time) = self.modify_time {
|
if let Some(changed_time) = self.changed_time {
|
||||||
time.eq(&changed_time)
|
time.eq(&changed_time)
|
||||||
} else {
|
} else {
|
||||||
true
|
true
|
||||||
|
@ -204,159 +204,15 @@ impl PyPlugin {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_id(&self) -> String { plugin_path_as_id(&self.file_path) }
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Display for PyPlugin {
|
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
||||||
write!(f, "{}({:?})-{}", self.get_id(), self.file_path, self.enabled)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub const CONFIG_DATA_NAME: &str = "CONFIG_DATA";
|
pub const CONFIG_DATA_NAME: &str = "CONFIG_DATA";
|
||||||
|
|
||||||
fn set_str_cfg_default_plugin(
|
|
||||||
module: &Bound<'_, PyModule>,
|
|
||||||
default: String,
|
|
||||||
path: String,
|
|
||||||
) -> PyResult<()> {
|
|
||||||
let base_path = MainStatus::global_config().py().config_path;
|
|
||||||
|
|
||||||
let mut base_path: PathBuf = PathBuf::from(base_path);
|
|
||||||
|
|
||||||
if !base_path.exists() {
|
|
||||||
event!(Level::WARN, "python 插件路径不存在, 创建: {:?}", base_path);
|
|
||||||
std::fs::create_dir_all(&base_path)?;
|
|
||||||
}
|
|
||||||
base_path.push(&path);
|
|
||||||
|
|
||||||
let config_str: String = if base_path.exists() {
|
|
||||||
event!(Level::INFO, "加载 {:?} 的配置文件 {:?} 中", path, base_path);
|
|
||||||
match std::fs::read_to_string(&base_path) {
|
|
||||||
Ok(v) => v,
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::WARN, "配置文件 {:?} 读取失败 {}, 创建默认配置", base_path, e);
|
|
||||||
// 写入默认配置
|
|
||||||
std::fs::write(&base_path, &default)?;
|
|
||||||
default
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
event!(Level::WARN, "配置文件 {:?} 不存在, 创建默认配置", base_path);
|
|
||||||
// 写入默认配置
|
|
||||||
std::fs::write(base_path, &default)?;
|
|
||||||
default
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Err(e) = module.setattr(intern!(module.py(), CONFIG_DATA_NAME), &config_str) {
|
|
||||||
event!(Level::WARN, "Python 插件 {:?} 的配置文件信息设置失败:{:?}", path, e);
|
|
||||||
return Err(PyTypeError::new_err(format!(
|
|
||||||
"Python 插件 {:?} 的配置文件信息设置失败:{:?}",
|
|
||||||
path, e
|
|
||||||
)));
|
|
||||||
}
|
|
||||||
|
|
||||||
// 给到 on config
|
|
||||||
if let Ok(attr) = module.getattr(intern!(module.py(), config_func::ON_CONFIG)) {
|
|
||||||
if !attr.is_callable() {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"Python 插件 {:?} 的 {} 函数不是 Callable",
|
|
||||||
path,
|
|
||||||
config_func::ON_CONFIG
|
|
||||||
);
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
let args = (config_str.as_bytes(),);
|
|
||||||
if let Err(e) = attr.call1(args) {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"Python 插件 {:?} 的 {} 函数返回了一个报错 {}",
|
|
||||||
path,
|
|
||||||
config_func::ON_CONFIG,
|
|
||||||
e
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
fn set_bytes_cfg_default_plugin(
|
|
||||||
module: &Bound<'_, PyModule>,
|
|
||||||
default: Vec<u8>,
|
|
||||||
path: String,
|
|
||||||
) -> PyResult<()> {
|
|
||||||
let base_path = MainStatus::global_config().py().config_path;
|
|
||||||
|
|
||||||
let mut base_path: PathBuf = PathBuf::from(base_path);
|
|
||||||
|
|
||||||
if !base_path.exists() {
|
|
||||||
event!(Level::WARN, "python 插件路径不存在, 创建: {:?}", base_path);
|
|
||||||
std::fs::create_dir_all(&base_path)?;
|
|
||||||
}
|
|
||||||
base_path.push(&path);
|
|
||||||
|
|
||||||
let config_vec: Vec<u8> = if base_path.exists() {
|
|
||||||
event!(Level::INFO, "加载 {:?} 的配置文件 {:?} 中", path, base_path);
|
|
||||||
match std::fs::read(&base_path) {
|
|
||||||
Ok(v) => v,
|
|
||||||
Err(e) => {
|
|
||||||
event!(Level::WARN, "配置文件 {:?} 读取失败 {}, 创建默认配置", base_path, e);
|
|
||||||
// 写入默认配置
|
|
||||||
std::fs::write(&base_path, &default)?;
|
|
||||||
default
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
event!(Level::WARN, "配置文件 {:?} 不存在, 创建默认配置", base_path);
|
|
||||||
// 写入默认配置
|
|
||||||
std::fs::write(base_path, &default)?;
|
|
||||||
default
|
|
||||||
};
|
|
||||||
|
|
||||||
match module.setattr(intern!(module.py(), CONFIG_DATA_NAME), &config_vec) {
|
|
||||||
Ok(()) => (),
|
|
||||||
Err(e) => {
|
|
||||||
warn!("Python 插件 {:?} 的配置文件信息设置失败:{:?}", path, e);
|
|
||||||
return Err(PyTypeError::new_err(format!(
|
|
||||||
"Python 插件 {:?} 的配置文件信息设置失败:{:?}",
|
|
||||||
path, e
|
|
||||||
)));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 给到 on config
|
|
||||||
if let Ok(attr) = module.getattr(intern!(module.py(), config_func::ON_CONFIG)) {
|
|
||||||
if !attr.is_callable() {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"Python 插件 {:?} 的 {} 函数不是 Callable",
|
|
||||||
path,
|
|
||||||
config_func::ON_CONFIG
|
|
||||||
);
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
let args = (&config_vec,);
|
|
||||||
if let Err(e) = attr.call1(args) {
|
|
||||||
event!(
|
|
||||||
Level::WARN,
|
|
||||||
"Python 插件 {:?} 的 {} 函数返回了一个报错 {}",
|
|
||||||
path,
|
|
||||||
config_func::ON_CONFIG,
|
|
||||||
e
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
impl TryFrom<RawPyPlugin> for PyPlugin {
|
impl TryFrom<RawPyPlugin> for PyPlugin {
|
||||||
type Error = PyErr;
|
type Error = PyErr;
|
||||||
fn try_from(value: RawPyPlugin) -> Result<Self, Self::Error> {
|
fn try_from(value: RawPyPlugin) -> Result<Self, Self::Error> {
|
||||||
let (path, modify_time, content) = value;
|
let (path, changed_time, content) = value;
|
||||||
let py_module: Py<PyModule> = match py_module_from_code(&content, &path) {
|
let py_module = match py_module_from_code(&content, &path) {
|
||||||
Ok(module) => module,
|
Ok(module) => module,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
warn!("加载 Python 插件: {:?} 失败", e);
|
warn!("加载 Python 插件: {:?} 失败", e);
|
||||||
|
@ -365,37 +221,110 @@ impl TryFrom<RawPyPlugin> for PyPlugin {
|
||||||
};
|
};
|
||||||
Python::with_gil(|py| {
|
Python::with_gil(|py| {
|
||||||
let module = py_module.bind(py);
|
let module = py_module.bind(py);
|
||||||
if let Ok(config_func) = call::get_func(module, config_func::REQUIRE_CONFIG) {
|
if let Ok(config_func) = call::get_func(module, "on_config") {
|
||||||
match config_func.call0() {
|
match config_func.call0() {
|
||||||
Ok(config) => {
|
Ok(config) => {
|
||||||
if config.is_instance_of::<PyTuple>() {
|
if config.is_instance_of::<PyTuple>() {
|
||||||
// let (config, default) = config.extract::<(String, Vec<u8>)>().unwrap();
|
let (config, default) = config.extract::<(String, String)>().unwrap();
|
||||||
// let (config, default) = config.extract::<(String, String)>().unwrap();
|
let base_path = MainStatus::global_config().py().config_path;
|
||||||
if let Ok((config, default)) = config.extract::<(String, String)>() {
|
|
||||||
set_str_cfg_default_plugin(module, default, config)?;
|
let mut base_path: PathBuf = PathBuf::from(base_path);
|
||||||
} else if let Ok((config, default)) =
|
|
||||||
config.extract::<(String, Vec<u8>)>()
|
if !base_path.exists() {
|
||||||
{
|
warn!("python 插件路径不存在, 创建: {:?}", base_path);
|
||||||
set_bytes_cfg_default_plugin(module, default, config)?;
|
std::fs::create_dir_all(&base_path)?;
|
||||||
} else {
|
}
|
||||||
warn!(
|
base_path.push(&config);
|
||||||
"加载 Python 插件 {:?} 的配置文件信息时失败:返回的不是 [str, bytes | str]",
|
|
||||||
path
|
let config_value = if base_path.exists() {
|
||||||
);
|
info!("加载 {:?} 的配置文件 {:?} 中", path, base_path);
|
||||||
return Err(PyTypeError::new_err(
|
let content = std::fs::read_to_string(&base_path)?;
|
||||||
"返回的不是 [str, bytes | str]".to_string(),
|
toml::from_str(&content)
|
||||||
));
|
} else {
|
||||||
|
warn!("配置文件 {:?} 不存在, 创建默认配置", base_path);
|
||||||
|
// 写入默认配置
|
||||||
|
std::fs::write(base_path, &default)?;
|
||||||
|
toml::from_str(&default)
|
||||||
|
};
|
||||||
|
match config_value {
|
||||||
|
Ok(config) => {
|
||||||
|
let py_config =
|
||||||
|
Bound::new(py, class::ConfigDataPy::new(config));
|
||||||
|
if let Err(e) = py_config {
|
||||||
|
warn!("添加配置文件信息失败: {:?}", e);
|
||||||
|
return Err(e);
|
||||||
|
}
|
||||||
|
let py_config = py_config.unwrap();
|
||||||
|
// 先判定一下原来有没有
|
||||||
|
if let Ok(true) = module.hasattr(CONFIG_DATA_NAME) {
|
||||||
|
// get 过来, 后面直接覆盖, 这里用于发个警告
|
||||||
|
match module.getattr(CONFIG_DATA_NAME) {
|
||||||
|
Ok(old_config) => {
|
||||||
|
// 先判断是不是 None, 直接忽略掉 None
|
||||||
|
// 毕竟有可能有占位
|
||||||
|
if !old_config.is_none() {
|
||||||
|
warn!(
|
||||||
|
"Python 插件 {:?} 的配置文件信息已经存在\n原始内容: {}",
|
||||||
|
path, old_config
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Err(e) => {
|
||||||
|
warn!(
|
||||||
|
"Python 插件 {:?} 的配置文件信息已经存在, 但获取失败:{:?}",
|
||||||
|
path, e
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
match module.setattr(CONFIG_DATA_NAME, py_config) {
|
||||||
|
Ok(()) => Ok(PyPlugin {
|
||||||
|
file_path: path,
|
||||||
|
changed_time,
|
||||||
|
py_module: module.into_py(py),
|
||||||
|
enabled: true,
|
||||||
|
}),
|
||||||
|
Err(e) => {
|
||||||
|
warn!(
|
||||||
|
"Python 插件 {:?} 的配置文件信息设置失败:{:?}",
|
||||||
|
path, e
|
||||||
|
);
|
||||||
|
Err(PyErr::new::<pyo3::exceptions::PyTypeError, _>(
|
||||||
|
format!(
|
||||||
|
"Python 插件 {:?} 的配置文件信息设置失败:{:?}",
|
||||||
|
path, e
|
||||||
|
),
|
||||||
|
))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Err(e) => {
|
||||||
|
warn!(
|
||||||
|
"加载 Python 插件 {:?} 的配置文件信息时失败:{:?}",
|
||||||
|
path, e
|
||||||
|
);
|
||||||
|
Err(PyErr::new::<pyo3::exceptions::PyTypeError, _>(format!(
|
||||||
|
"加载 Python 插件 {:?} 的配置文件信息时失败:{:?}",
|
||||||
|
path, e
|
||||||
|
)))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Ok(PyPlugin::new(path, modify_time, module.clone().unbind()))
|
|
||||||
} else if config.is_none() {
|
} else if config.is_none() {
|
||||||
// 没有配置文件
|
// 没有配置文件
|
||||||
Ok(PyPlugin::new(path, modify_time, module.clone().unbind()))
|
Ok(PyPlugin {
|
||||||
|
file_path: path,
|
||||||
|
changed_time,
|
||||||
|
py_module: module.into_py(py),
|
||||||
|
enabled: true,
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
warn!(
|
warn!(
|
||||||
"加载 Python 插件 {:?} 的配置文件信息时失败:返回的不是 [str, str]",
|
"加载 Python 插件 {:?} 的配置文件信息时失败:返回的不是 [str, str]",
|
||||||
path
|
path
|
||||||
);
|
);
|
||||||
Err(PyTypeError::new_err("返回的不是 [str, str]".to_string()))
|
Err(PyErr::new::<pyo3::exceptions::PyTypeError, _>(
|
||||||
|
"返回的不是 [str, str]".to_string(),
|
||||||
|
))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
|
@ -404,23 +333,23 @@ impl TryFrom<RawPyPlugin> for PyPlugin {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
Ok(PyPlugin::new(path, modify_time, module.clone().unbind()))
|
Ok(PyPlugin {
|
||||||
|
file_path: path,
|
||||||
|
changed_time,
|
||||||
|
py_module: module.into_py(py),
|
||||||
|
enabled: true,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 插件路径转换为 id
|
pub static mut PYSTATUS: PyStatus = PyStatus {
|
||||||
pub fn plugin_path_as_id(path: &Path) -> String {
|
files: None,
|
||||||
path.file_name()
|
config: None,
|
||||||
.unwrap_or_default()
|
};
|
||||||
.to_str()
|
|
||||||
.unwrap_or("decode-failed")
|
|
||||||
.to_string()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn load_py_plugins(path: &PathBuf) {
|
pub fn load_py_plugins(path: &PathBuf) {
|
||||||
let plugins = PyStatus::get_mut();
|
|
||||||
if path.exists() {
|
if path.exists() {
|
||||||
event!(Level::INFO, "找到位于 {:?} 的插件", path);
|
event!(Level::INFO, "找到位于 {:?} 的插件", path);
|
||||||
// 搜索所有的 py 文件 和 文件夹单层下面的 py 文件
|
// 搜索所有的 py 文件 和 文件夹单层下面的 py 文件
|
||||||
|
@ -435,7 +364,7 @@ pub fn load_py_plugins(path: &PathBuf) {
|
||||||
if let Some(ext) = path.extension() {
|
if let Some(ext) = path.extension() {
|
||||||
if ext == "py" {
|
if ext == "py" {
|
||||||
if let Some(plugin) = PyPlugin::new_from_path(&path) {
|
if let Some(plugin) = PyPlugin::new_from_path(&path) {
|
||||||
plugins.add_file(path, plugin);
|
PyStatus::add_file(path, plugin);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -445,30 +374,28 @@ pub fn load_py_plugins(path: &PathBuf) {
|
||||||
} else {
|
} else {
|
||||||
event!(Level::WARN, "插件加载目录不存在: {:?}", path);
|
event!(Level::WARN, "插件加载目录不存在: {:?}", path);
|
||||||
}
|
}
|
||||||
plugins.config.read_status_from_default();
|
PyStatus::get_config_mut().sync_status_from_config();
|
||||||
plugins.config.sync_status_to_config();
|
|
||||||
event!(
|
event!(
|
||||||
Level::INFO,
|
Level::INFO,
|
||||||
"python 插件目录: {:?} 加载完成, 加载到 {} 个插件",
|
"python 插件目录: {:?} 加载完成, 加载到 {} 个插件",
|
||||||
path,
|
path,
|
||||||
plugins.files.len()
|
PyStatus::get_map().len()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_change_time(path: &Path) -> Option<SystemTime> { path.metadata().ok()?.modified().ok() }
|
pub fn get_change_time(path: &Path) -> Option<SystemTime> { path.metadata().ok()?.modified().ok() }
|
||||||
|
|
||||||
pub fn py_module_from_code(content: &str, path: &Path) -> PyResult<Py<PyModule>> {
|
pub fn py_module_from_code(content: &str, path: &Path) -> PyResult<Py<PyAny>> {
|
||||||
Python::with_gil(|py| -> PyResult<Py<PyModule>> {
|
Python::with_gil(|py| -> PyResult<Py<PyAny>> {
|
||||||
let module = PyModule::from_code(
|
let module: PyResult<Py<PyAny>> = PyModule::from_code_bound(
|
||||||
py,
|
py,
|
||||||
CString::new(content).unwrap().as_c_str(),
|
content,
|
||||||
CString::new(path.to_string_lossy().as_bytes()).unwrap().as_c_str(),
|
&path.to_string_lossy(),
|
||||||
CString::new(path.file_name().unwrap().to_string_lossy().as_bytes())
|
&path.file_name().unwrap().to_string_lossy(),
|
||||||
.unwrap()
|
|
||||||
.as_c_str(),
|
|
||||||
// !!!! 请注意, 一定要给他一个名字, cpython 会自动把后面的重名模块覆盖掉前面的
|
// !!!! 请注意, 一定要给他一个名字, cpython 会自动把后面的重名模块覆盖掉前面的
|
||||||
)?;
|
)
|
||||||
Ok(module.unbind())
|
.map(|module| module.into());
|
||||||
|
module
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -480,122 +407,28 @@ pub fn load_py_file(path: &PathBuf) -> std::io::Result<RawPyPlugin> {
|
||||||
Ok((path.clone(), changed_time, content))
|
Ok((path.clone(), changed_time, content))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn init_py_with_env_path(path: &str) {
|
|
||||||
unsafe {
|
|
||||||
#[cfg(target_os = "windows")]
|
|
||||||
use std::ffi::OsStr;
|
|
||||||
#[cfg(target_os = "windows")]
|
|
||||||
use std::os::windows::ffi::OsStrExt;
|
|
||||||
|
|
||||||
let mut config = std::mem::zeroed::<pyo3::ffi::PyConfig>();
|
|
||||||
let config_ptr = &mut config as *mut pyo3::ffi::PyConfig;
|
|
||||||
// 初始化配置
|
|
||||||
// pyo3::ffi::PyConfig_InitIsolatedConfig(config_ptr);
|
|
||||||
pyo3::ffi::PyConfig_InitPythonConfig(config_ptr);
|
|
||||||
|
|
||||||
#[cfg(target_os = "linux")]
|
|
||||||
let wide_path = path.as_bytes().iter().map(|i| *i as i32).collect::<Vec<i32>>();
|
|
||||||
#[cfg(target_os = "windows")]
|
|
||||||
let wide_path = OsStr::new(path).encode_wide().chain(Some(0)).collect::<Vec<u16>>();
|
|
||||||
|
|
||||||
// 设置 prefix 和 exec_prefix
|
|
||||||
pyo3::ffi::PyConfig_SetString(config_ptr, &mut config.prefix as *mut _, wide_path.as_ptr());
|
|
||||||
pyo3::ffi::PyConfig_SetString(
|
|
||||||
config_ptr,
|
|
||||||
&mut config.exec_prefix as *mut _,
|
|
||||||
wide_path.as_ptr(),
|
|
||||||
);
|
|
||||||
|
|
||||||
// 使用 Py_InitializeFromConfig 初始化 python
|
|
||||||
let status = pyo3::ffi::Py_InitializeFromConfig(&config as *const _);
|
|
||||||
pyo3::ffi::PyEval_SaveThread();
|
|
||||||
// 清理配置
|
|
||||||
pyo3::ffi::PyConfig_Clear(config_ptr);
|
|
||||||
match status._type {
|
|
||||||
pyo3::ffi::_PyStatus_TYPE::_PyStatus_TYPE_OK => {
|
|
||||||
event!(Level::INFO, "根据配置初始化 python 完成");
|
|
||||||
}
|
|
||||||
pyo3::ffi::_PyStatus_TYPE::_PyStatus_TYPE_EXIT => {
|
|
||||||
event!(Level::ERROR, "不对啊, 怎么刚刚初始化 Python 就 EXIT 了");
|
|
||||||
}
|
|
||||||
pyo3::ffi::_PyStatus_TYPE::_PyStatus_TYPE_ERROR => {
|
|
||||||
event!(Level::ERROR, "初始化 python 时发生错误: ERROR");
|
|
||||||
pyo3::ffi::Py_ExitStatusException(status);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Python 侧初始化
|
/// Python 侧初始化
|
||||||
pub fn init_py() {
|
pub fn init_py() {
|
||||||
// 从 全局配置中获取 python 插件路径
|
// 从 全局配置中获取 python 插件路径
|
||||||
let span = span!(Level::INFO, "py init");
|
let span = span!(Level::INFO, "初始化 python 及其插件.ing");
|
||||||
let _enter = span.enter();
|
let _enter = span.enter();
|
||||||
|
|
||||||
event!(Level::INFO, "开始初始化 python");
|
|
||||||
|
|
||||||
// 注册东西
|
|
||||||
class::regist_class();
|
|
||||||
|
|
||||||
let plugin_path = MainStatus::global_config().py().plugin_path;
|
let plugin_path = MainStatus::global_config().py().plugin_path;
|
||||||
|
|
||||||
let cli_args = std::env::args().collect::<Vec<String>>();
|
event!(Level::INFO, "正在初始化 python");
|
||||||
|
|
||||||
if cli_args.contains(&"-env".to_string()) {
|
|
||||||
let env_path = cli_args.iter().find(|&arg| arg != "-env").expect("未找到 -env 参数的值");
|
|
||||||
event!(Level::INFO, "找到 -env 参数: {} 正在初始化", env_path);
|
|
||||||
// 判断一下是否有 VIRTUAL_ENV 环境变量
|
|
||||||
if let Ok(virtual_env) = std::env::var("VIRTUAL_ENV") {
|
|
||||||
event!(Level::WARN, "找到 VIRTUAL_ENV 环境变量: {} 将会被 -env 参数覆盖", virtual_env);
|
|
||||||
}
|
|
||||||
init_py_with_env_path(env_path);
|
|
||||||
} else {
|
|
||||||
// 根据 VIRTUAL_ENV 环境变量 进行一些处理
|
|
||||||
match std::env::var("VIRTUAL_ENV") {
|
|
||||||
Ok(virtual_env) => {
|
|
||||||
event!(Level::INFO, "找到 VIRTUAL_ENV 环境变量: {} 正在初始化", virtual_env);
|
|
||||||
init_py_with_env_path(&virtual_env);
|
|
||||||
}
|
|
||||||
Err(_) => {
|
|
||||||
event!(Level::INFO, "未找到 VIRTUAL_ENV 环境变量, 正常初始化");
|
|
||||||
pyo3::prepare_freethreaded_python();
|
pyo3::prepare_freethreaded_python();
|
||||||
event!(Level::INFO, "prepare_freethreaded_python 完成");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
PyStatus::init();
|
PyStatus::init();
|
||||||
let plugin_path = PathBuf::from(plugin_path);
|
let plugin_path = PathBuf::from(plugin_path);
|
||||||
load_py_plugins(&plugin_path);
|
load_py_plugins(&plugin_path);
|
||||||
event!(Level::DEBUG, "python 插件列表: {}", PyStatus::display());
|
event!(Level::DEBUG, "python 插件列表: {}", PyStatus::display());
|
||||||
|
|
||||||
event!(Level::INFO, "python 初始化完成")
|
info!("python inited")
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn post_py() -> anyhow::Result<()> {
|
pub fn post_py() -> anyhow::Result<()> {
|
||||||
let status = PyStatus::get_mut();
|
PyStatus::get_config_mut().sync_status_to_config();
|
||||||
status.config.sync_status_to_config();
|
PyStatus::get_config()
|
||||||
status.config.write_to_default()?;
|
.write_to_file(&PathBuf::from(MainStatus::global_config().py().config_path))?;
|
||||||
|
|
||||||
stop_tasks().await?;
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn stop_tasks() -> Result<(), PyPluginError> {
|
|
||||||
if call::PY_TASKS.lock().await.is_empty() {
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
let waiter = tokio::spawn(async {
|
|
||||||
call::PY_TASKS.lock().await.join_all().await;
|
|
||||||
});
|
|
||||||
tokio::select! {
|
|
||||||
_ = waiter => {
|
|
||||||
event!(Level::INFO, "Python 任务完成");
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
_ = tokio::signal::ctrl_c() => {
|
|
||||||
event!(Level::WARN, "正在强制结束 Python 任务");
|
|
||||||
Err(PyPluginError::PluginNotStopped)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
use crate::MAIN_STATUS;
|
|
||||||
use crate::config::BotConfig;
|
use crate::config::BotConfig;
|
||||||
|
use crate::MAIN_STATUS;
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct BotStatus {
|
pub struct BotStatus {
|
||||||
pub config: Option<BotConfig>,
|
pub config: Option<BotConfig>,
|
||||||
pub ica_status: Option<ica::MainStatus>,
|
pub ica_status: Option<ica::MainStatus>,
|
||||||
pub tailchat_status: Option<tailchat::MainStatus>,
|
pub tailchat_status: Option<tailchat::MainStatus>,
|
||||||
|
pub startup_time: Option<std::time::SystemTime>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl BotStatus {
|
impl BotStatus {
|
||||||
|
@ -35,40 +36,28 @@ impl BotStatus {
|
||||||
online_status: ica::OnlineData::default(),
|
online_status: ica::OnlineData::default(),
|
||||||
});
|
});
|
||||||
MAIN_STATUS.config = Some(config);
|
MAIN_STATUS.config = Some(config);
|
||||||
|
MAIN_STATUS.startup_time = Some(std::time::SystemTime::now());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn global_config() -> &'static BotConfig {
|
pub fn get_startup_time() -> std::time::SystemTime {
|
||||||
unsafe {
|
unsafe { MAIN_STATUS.startup_time.unwrap() }
|
||||||
let ptr = &raw const MAIN_STATUS.config;
|
|
||||||
(*ptr).as_ref().unwrap()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn global_config() -> &'static BotConfig { unsafe { MAIN_STATUS.config.as_ref().unwrap() } }
|
||||||
|
|
||||||
pub fn global_ica_status() -> &'static ica::MainStatus {
|
pub fn global_ica_status() -> &'static ica::MainStatus {
|
||||||
unsafe {
|
unsafe { MAIN_STATUS.ica_status.as_ref().unwrap() }
|
||||||
let ptr = &raw const MAIN_STATUS.ica_status;
|
|
||||||
(*ptr).as_ref().unwrap()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
pub fn global_tailchat_status() -> &'static tailchat::MainStatus {
|
pub fn global_tailchat_status() -> &'static tailchat::MainStatus {
|
||||||
unsafe {
|
unsafe { MAIN_STATUS.tailchat_status.as_ref().unwrap() }
|
||||||
let ptr = &raw const MAIN_STATUS.tailchat_status;
|
|
||||||
(*ptr).as_ref().unwrap()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn global_ica_status_mut() -> &'static mut ica::MainStatus {
|
pub fn global_ica_status_mut() -> &'static mut ica::MainStatus {
|
||||||
unsafe {
|
unsafe { MAIN_STATUS.ica_status.as_mut().unwrap() }
|
||||||
let ptr = &raw mut MAIN_STATUS.ica_status;
|
|
||||||
(*ptr).as_mut().unwrap()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
pub fn global_tailchat_status_mut() -> &'static mut tailchat::MainStatus {
|
pub fn global_tailchat_status_mut() -> &'static mut tailchat::MainStatus {
|
||||||
unsafe {
|
unsafe { MAIN_STATUS.tailchat_status.as_mut().unwrap() }
|
||||||
let ptr = &raw mut MAIN_STATUS.tailchat_status;
|
|
||||||
(*ptr).as_mut().unwrap()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ use reqwest::ClientBuilder as reqwest_ClientBuilder;
|
||||||
use rust_socketio::async_callback;
|
use rust_socketio::async_callback;
|
||||||
use rust_socketio::asynchronous::{Client, ClientBuilder};
|
use rust_socketio::asynchronous::{Client, ClientBuilder};
|
||||||
use rust_socketio::{Event, Payload, TransportType};
|
use rust_socketio::{Event, Payload, TransportType};
|
||||||
use serde_json::{Value, json};
|
use serde_json::{json, Value};
|
||||||
use tracing::{Level, event, span};
|
use tracing::{event, span, Level};
|
||||||
|
|
||||||
use crate::config::TailchatConfig;
|
use crate::config::TailchatConfig;
|
||||||
use crate::data_struct::tailchat::status::{BotStatus, LoginData};
|
use crate::data_struct::tailchat::status::{BotStatus, LoginData};
|
||||||
use crate::error::{ClientResult, TailchatError};
|
use crate::error::{ClientResult, TailchatError};
|
||||||
use crate::{StopGetter, async_any_callback_with_state, async_callback_with_state, version_str};
|
use crate::{async_any_callback_with_state, async_callback_with_state, version_str, StopGetter};
|
||||||
|
|
||||||
pub async fn start_tailchat(
|
pub async fn start_tailchat(
|
||||||
config: TailchatConfig,
|
config: TailchatConfig,
|
||||||
|
|
|
@ -4,8 +4,8 @@ use crate::data_struct::tailchat::messages::SendingMessage;
|
||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
use reqwest::multipart;
|
use reqwest::multipart;
|
||||||
use rust_socketio::asynchronous::Client;
|
use rust_socketio::asynchronous::Client;
|
||||||
use serde_json::{Value, json};
|
use serde_json::{json, Value};
|
||||||
use tracing::{Level, event, span};
|
use tracing::{event, span, Level};
|
||||||
|
|
||||||
pub async fn send_message(client: &Client, message: &SendingMessage) -> bool {
|
pub async fn send_message(client: &Client, message: &SendingMessage) -> bool {
|
||||||
let span = span!(Level::INFO, "tailchat send message");
|
let span = span!(Level::INFO, "tailchat send message");
|
||||||
|
|
|
@ -1,16 +1,15 @@
|
||||||
|
use std::path::PathBuf;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
use rust_socketio::asynchronous::Client;
|
use rust_socketio::asynchronous::Client;
|
||||||
use rust_socketio::{Event, Payload};
|
use rust_socketio::{Event, Payload};
|
||||||
use tracing::{Level, event, info};
|
use tracing::{event, info, Level};
|
||||||
|
|
||||||
use crate::data_struct::tailchat::messages::ReceiveMessage;
|
use crate::data_struct::tailchat::messages::ReceiveMessage;
|
||||||
use crate::data_struct::tailchat::status::{BotStatus, UpdateDMConverse};
|
use crate::data_struct::tailchat::status::{BotStatus, UpdateDMConverse};
|
||||||
use crate::py::PyStatus;
|
|
||||||
use crate::py::call::tailchat_new_message_py;
|
|
||||||
use crate::tailchat::client::{emit_join_room, send_message};
|
use crate::tailchat::client::{emit_join_room, send_message};
|
||||||
use crate::{MainStatus, VERSION, client_id, help_msg, version_str};
|
use crate::{client_id, help_msg, py, version_str, MainStatus, VERSION};
|
||||||
|
|
||||||
/// 所有
|
/// 所有
|
||||||
pub async fn any_event(event: Event, payload: Payload, _client: Client, _status: Arc<BotStatus>) {
|
pub async fn any_event(event: Event, payload: Payload, _client: Client, _status: Arc<BotStatus>) {
|
||||||
|
@ -87,7 +86,7 @@ pub async fn on_message(payload: Payload, client: Client, _status: Arc<BotStatus
|
||||||
VERSION,
|
VERSION,
|
||||||
client_id(),
|
client_id(),
|
||||||
if MainStatus::global_config().check_py() {
|
if MainStatus::global_config().check_py() {
|
||||||
PyStatus::display()
|
py::PyStatus::display()
|
||||||
} else {
|
} else {
|
||||||
"未启用 Python 插件".to_string()
|
"未启用 Python 插件".to_string()
|
||||||
}
|
}
|
||||||
|
@ -104,7 +103,8 @@ pub async fn on_message(payload: Payload, client: Client, _status: Arc<BotStatus
|
||||||
// 先判定是否为 admin
|
// 先判定是否为 admin
|
||||||
// 尝试获取后面的信息
|
// 尝试获取后面的信息
|
||||||
if let Some((_, name)) = message.content.split_once(" ") {
|
if let Some((_, name)) = message.content.split_once(" ") {
|
||||||
match PyStatus::get().get_status(name) {
|
let path_name = PathBuf::from(name);
|
||||||
|
match py::PyStatus::get_status(&path_name) {
|
||||||
None => {
|
None => {
|
||||||
let reply = message.reply_with("未找到插件");
|
let reply = message.reply_with("未找到插件");
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
|
@ -114,7 +114,7 @@ pub async fn on_message(payload: Payload, client: Client, _status: Arc<BotStatus
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
}
|
}
|
||||||
Some(false) => {
|
Some(false) => {
|
||||||
PyStatus::get_mut().set_status(name, true);
|
py::PyStatus::set_status(&path_name, true);
|
||||||
let reply = message.reply_with("启用插件完成");
|
let reply = message.reply_with("启用插件完成");
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
}
|
}
|
||||||
|
@ -122,7 +122,8 @@ pub async fn on_message(payload: Payload, client: Client, _status: Arc<BotStatus
|
||||||
}
|
}
|
||||||
} else if message.content.starts_with(&format!("/bot-disable-{}", client_id)) {
|
} else if message.content.starts_with(&format!("/bot-disable-{}", client_id)) {
|
||||||
if let Some((_, name)) = message.content.split_once(" ") {
|
if let Some((_, name)) = message.content.split_once(" ") {
|
||||||
match PyStatus::get().get_status(name) {
|
let path_name = PathBuf::from(name);
|
||||||
|
match py::PyStatus::get_status(&path_name) {
|
||||||
None => {
|
None => {
|
||||||
let reply = message.reply_with("未找到插件");
|
let reply = message.reply_with("未找到插件");
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
|
@ -132,7 +133,7 @@ pub async fn on_message(payload: Payload, client: Client, _status: Arc<BotStatus
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
}
|
}
|
||||||
Some(true) => {
|
Some(true) => {
|
||||||
PyStatus::get_mut().set_status(name, false);
|
py::PyStatus::set_status(&path_name, false);
|
||||||
let reply = message.reply_with("禁用插件完成");
|
let reply = message.reply_with("禁用插件完成");
|
||||||
send_message(&client, &reply).await;
|
send_message(&client, &reply).await;
|
||||||
}
|
}
|
||||||
|
@ -141,7 +142,7 @@ pub async fn on_message(payload: Payload, client: Client, _status: Arc<BotStatus
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
tailchat_new_message_py(&message, &client).await;
|
py::call::tailchat_new_message_py(&message, &client).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
|
|
255
news.md
255
news.md
|
@ -1,5 +1,256 @@
|
||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
## [0.9](./news/0-9.md)
|
## 0.7.2
|
||||||
|
|
||||||
## [0.2 ~ 0.8](./news/old.md)
|
- 修复了一些 ica 和 tailchat 表现不一致的问题(捂脸)
|
||||||
|
|
||||||
|
## 0.7.1
|
||||||
|
|
||||||
|
- 两个 api 版本号分别升级到 `1.6.3(ica)` 和 `1.2.3(tailchat)`
|
||||||
|
- 加入了 `client_id`
|
||||||
|
- 用的 startup time hash 一遍取后六位
|
||||||
|
- 以及也有 python 侧的 `client_id` api
|
||||||
|
- 修复了上个版本其实没有写 python 侧 `version_str` api 的问题
|
||||||
|
|
||||||
|
## 0.7.0
|
||||||
|
|
||||||
|
> 我决定叫他 0.7.0
|
||||||
|
> 因为修改太多了.png
|
||||||
|
|
||||||
|
- 加入了 禁用/启用 插件功能
|
||||||
|
- 现在会在插件加载时警告你的插件原来定义了 `CONFIG_DATA` 这一项
|
||||||
|
- `IcaNewMessage` 添加了新的 api
|
||||||
|
- `get_sender_name` 获取发送人昵称
|
||||||
|
- `ica` 兼容版本号 `2.12.11` -> `2.12.12`
|
||||||
|
- 加入了 `STABLE` 信息, 用于标记稳定版本
|
||||||
|
- 不少配置文件项加上了默认值
|
||||||
|
- 添加了 `version_str() -> String` 用于方便的获取版本信息
|
||||||
|
- 同样在 `py` 侧也有 `version_str` 方法
|
||||||
|
- 加入了 `/help` 命令
|
||||||
|
- 用于获取帮助信息
|
||||||
|
- 加入了 `/bot-ls`
|
||||||
|
- 用于展示所有插件的信息
|
||||||
|
- 加入了 `/bot-enable` 和 `/bot-disable`
|
||||||
|
- 用于启用/禁用插件
|
||||||
|
|
||||||
|
## 0.6.10
|
||||||
|
|
||||||
|
- 加了点东西 (?)
|
||||||
|
|
||||||
|
## 0.6.9
|
||||||
|
|
||||||
|
我决定立即发布 0.6.9
|
||||||
|
|
||||||
|
- 添加了 `Client.startup_time() -> datetime` 方法
|
||||||
|
- 用于获取 bot 启动时间
|
||||||
|
- 这样就可以经常吹我 bot 跑了多久了 ( ˘•ω•˘ )
|
||||||
|
- 顺手加上了 `/bot-uptime` 命令
|
||||||
|
- 可以获取 bot 运行时间
|
||||||
|
- 谢谢 GitHub Copilot 的帮助
|
||||||
|
|
||||||
|
## 0.6.8
|
||||||
|
|
||||||
|
- 修复了一堆拼写错误
|
||||||
|
- 太难绷了
|
||||||
|
- `TailchatReciveMessagePy` -> `TailchatReceiveMessagePy`
|
||||||
|
- `ReciveMessage` -> `ReceiveMessage`
|
||||||
|
- `ReceiveMessage::meta`
|
||||||
|
- 从 `JsonValue` 改成 `Option<JsonValue>`
|
||||||
|
- 用来解决发图片的时候没有 `meta` 字段的问题
|
||||||
|
- 去除了自带的两个 macro
|
||||||
|
- `wrap_callback` 和 `wrap_any_callback`
|
||||||
|
- 因为现在他俩已经进到 `rust_socketio` 里啦
|
||||||
|
- 添加了新的 macro
|
||||||
|
- 支持了 `TailchatReceiveMessagePy` 的 `is_from_self` 方法
|
||||||
|
- 用于判断是否是自己发的消息
|
||||||
|
|
||||||
|
## 0.6.7
|
||||||
|
|
||||||
|
游学回来啦
|
||||||
|
|
||||||
|
- 处理了一些 tailchat 的特殊情况
|
||||||
|
- 比如 message 里面的 `GroupId` 实际上是可选的, 在私聊中没有这一项
|
||||||
|
- 忽略了所有的 `__v` (用于数据库记录信息的, bot不需要管)
|
||||||
|
- 作者原话 `不用管。数据库记录版本`
|
||||||
|
- 修复了如果没法解析新的信息, 会 panic 的问题
|
||||||
|
- `ica_typing.py`
|
||||||
|
- 补充了 `TailchatSendingMessage` 的 `group_id` 和 `converse_id` 字段
|
||||||
|
- 把 `group_id` 的设置和返回都改成了 `Optional[GroupId]`
|
||||||
|
- tailchat 的 API 也差点意思就是了(逃)
|
||||||
|
- 处理了 icalingua 的 `renewMessage` 事件 (其实就是直接忽略掉了)
|
||||||
|
|
||||||
|
## 0.6.6
|
||||||
|
|
||||||
|
游学之前最后一次更新
|
||||||
|
其实也就五天
|
||||||
|
|
||||||
|
正式支持了 tailchat 端
|
||||||
|
好耶!
|
||||||
|
|
||||||
|
[!note]
|
||||||
|
```text
|
||||||
|
notice_room = []
|
||||||
|
notice_start = true
|
||||||
|
|
||||||
|
admin_list = []
|
||||||
|
filter_list = []
|
||||||
|
```
|
||||||
|
|
||||||
|
的功能暂时不支持
|
||||||
|
|
||||||
|
## 0.6.5
|
||||||
|
|
||||||
|
怎么就突然 0.6.5 了
|
||||||
|
我也不造啊
|
||||||
|
|
||||||
|
- 反正支持了 tailchat 的信息接受
|
||||||
|
- 但是需要你在对面服务端打开 `DISABLE_MESSAGEPACK` 环境变量
|
||||||
|
- 能用就行
|
||||||
|
|
||||||
|
- 现在 `update_online_data` 不会再以 INFO 级别显示了
|
||||||
|
- `update_all_room` 同上
|
||||||
|
|
||||||
|
## 0.6.2
|
||||||
|
|
||||||
|
- 添加 API
|
||||||
|
- `NewMessage.set_img` 用于设置消息的图片
|
||||||
|
- `IcaSendMessage.set_img` 用于设置消息的图片 (python)
|
||||||
|
|
||||||
|
## 0.6.1
|
||||||
|
|
||||||
|
还是没写完 tailchat 支持
|
||||||
|
因为 rust_socketio 还是没写好 serdelizer 的支持
|
||||||
|
|
||||||
|
- 正在添加发送图片的 api
|
||||||
|
|
||||||
|
## 0.6.0-dev
|
||||||
|
|
||||||
|
- 去除了 matrix 的支持
|
||||||
|
- 淦哦
|
||||||
|
- 去除了相应代码和依赖
|
||||||
|
- 去除了 Python 侧代码
|
||||||
|
- 向 tailchat (typescript 低头)
|
||||||
|
|
||||||
|
- 修复了没法编译的问题(
|
||||||
|
|
||||||
|
## 0.5.3
|
||||||
|
|
||||||
|
修复了 Icalingua 断开时 如果 socketio 已经断开会导致程序 返回 Error 的问题
|
||||||
|
以及还有一些别的修复就是了
|
||||||
|
|
||||||
|
- Python 端修改
|
||||||
|
- `on_message` -> `on_ica_message`
|
||||||
|
- `on_delete_message` -> `on_ica_delete_message`
|
||||||
|
- 添加 `on_matrix_message`
|
||||||
|
|
||||||
|
## 0.5.1/2
|
||||||
|
|
||||||
|
重构了一整波, 还没改 `ica-typing.py` 的代码
|
||||||
|
但至少能用了
|
||||||
|
|
||||||
|
- Ica 版本号 `1.4.0`
|
||||||
|
- Matrix 版本号 `0.1.0`
|
||||||
|
|
||||||
|
## 0.5.0
|
||||||
|
|
||||||
|
准备接入 `Matrix`
|
||||||
|
|
||||||
|
去掉 `pyo3-async` 的依赖
|
||||||
|
|
||||||
|
## 0.4.12
|
||||||
|
|
||||||
|
把 0.4.11 的遗留问题修完了
|
||||||
|
|
||||||
|
## 0.4.11
|
||||||
|
|
||||||
|
这几天就是在刷版本号的感觉
|
||||||
|
|
||||||
|
- 添加
|
||||||
|
- `DeleteMessage` 用于删除消息
|
||||||
|
- `NewMessage.as_delete` 用于将消息转换为删除消息
|
||||||
|
- `client::delete_message` 用于删除消息
|
||||||
|
- `client::fetch_history` 用于获取历史消息 TODO
|
||||||
|
- `py::class::DeleteMessagePy` 用于删除消息 的 Python 侧 API
|
||||||
|
- `py::class::IcaClientPy.delete_message` 用于删除消息 的 Python 侧 API
|
||||||
|
- `IcalinguaStatus.current_loaded_messages_count`
|
||||||
|
- 用于以后加载信息计数
|
||||||
|
- 修改
|
||||||
|
- `py::class::IcaStatusPy`
|
||||||
|
- 大部分方法从手动 `unsafe` + `Option`
|
||||||
|
- 改成直接调用 `IcalinguaStatus` 的方法
|
||||||
|
- `IcalinguaStatus`
|
||||||
|
- 所有方法均改成 直接对着 `IcalinguaStatus` 的方法调用
|
||||||
|
- 补全没有的方法
|
||||||
|
|
||||||
|
## 0.4.10
|
||||||
|
|
||||||
|
好家伙, 我感觉都快能叫 0.5 了
|
||||||
|
修改了一些内部数据结构, 使得插件更加稳定
|
||||||
|
|
||||||
|
添加了 `rustfmt.toml` 用于格式化代码
|
||||||
|
**注意**: 请在提交代码前使用 `cargo +nightly fmt` 格式化代码
|
||||||
|
|
||||||
|
修复了 `Message` 解析 `replyMessage` 字段是 如果是 null 则会解析失败的问题
|
||||||
|
|
||||||
|
## 0.4.9
|
||||||
|
|
||||||
|
修复了 Python 插件运行错误会导致整个程序崩溃的问题
|
||||||
|
|
||||||
|
## 0.4.8
|
||||||
|
|
||||||
|
添加了 `filter_list` 用于过滤特定人的消息
|
||||||
|
|
||||||
|
## 0.4.7
|
||||||
|
|
||||||
|
修复了重载时如果代码有问题会直接 panic 的问题
|
||||||
|
|
||||||
|
## 0.4.6
|
||||||
|
|
||||||
|
现在更适合部署了
|
||||||
|
|
||||||
|
## 0.4.5
|
||||||
|
|
||||||
|
添加 `is_reply` api 到 `NewMessagePy`
|
||||||
|
|
||||||
|
## 0.4.4
|
||||||
|
|
||||||
|
现在正式支持 Python 插件了
|
||||||
|
`/bmcl` 也迁移到了 Python 插件版本
|
||||||
|
|
||||||
|
## 0.4.3
|
||||||
|
|
||||||
|
噫! 好! 我成了!
|
||||||
|
|
||||||
|
## 0.4.2
|
||||||
|
|
||||||
|
现在是 async 版本啦!
|
||||||
|
|
||||||
|
## 0.4.1
|
||||||
|
|
||||||
|
现在能发送登录信息啦
|
||||||
|
|
||||||
|
## 0.4.0
|
||||||
|
|
||||||
|
使用 Rust 从头实现一遍
|
||||||
|
\能登录啦/
|
||||||
|
|
||||||
|
## 0.3.3
|
||||||
|
|
||||||
|
适配 Rust 端的配置文件修改
|
||||||
|
|
||||||
|
## 0.3.1/2
|
||||||
|
|
||||||
|
改进 `/bmcl` 的细节
|
||||||
|
|
||||||
|
## 0.3.0
|
||||||
|
|
||||||
|
合并了 dongdigua 的代码, 把消息处理部分分离
|
||||||
|
现在代码更阳间了(喜
|
||||||
|
|
||||||
|
## 0.2.3
|
||||||
|
|
||||||
|
添加了 `/bmcl` 请求 bmclapi 状态
|
||||||
|
|
||||||
|
## 0.2.2
|
||||||
|
|
||||||
|
重构了一波整体代码
|
||||||
|
|
38
news/0-9.md
38
news/0-9.md
|
@ -1,38 +0,0 @@
|
||||||
# 0.9 更新日志
|
|
||||||
|
|
||||||
## 0.9.0
|
|
||||||
|
|
||||||
- 修复了 Python 插件停不下来就真的停不下来的问题
|
|
||||||
- 让初始化的时候 插件启/禁状态显示更明显了
|
|
||||||
- 有颜色啦!
|
|
||||||
- 加了不少颜色
|
|
||||||
|
|
||||||
### ica 2.0.1
|
|
||||||
|
|
||||||
> 添加了 `Room` 相关的 api
|
|
||||||
|
|
||||||
- `IcaStatus` 添加了 `rooms(self) -> list[IcaRoom]` 方法
|
|
||||||
- 用于获取当前所有的房间
|
|
||||||
|
|
||||||
- 添加了 `IcaRoom` 类
|
|
||||||
- 用于表示一个房间
|
|
||||||
- `room_id -> int` 群号 (i64)
|
|
||||||
|
|
||||||
- `def is_group(self) -> bool` 是否为群聊
|
|
||||||
- `def is_chat(self) -> bool` 是否为私聊
|
|
||||||
|
|
||||||
- `room_name -> int` 群名 (String)
|
|
||||||
- `unread_count -> int` 未读消息数 (u64)
|
|
||||||
- `priority -> int` 优先级 (u8)
|
|
||||||
- `utime -> int` 最后活跃时间 (unix sec * 1000)
|
|
||||||
|
|
||||||
- `def new_message_to(self, content: str) -> IcaSendMessage`
|
|
||||||
- 用于创建一条指向这个房间的消息
|
|
||||||
|
|
||||||
> 添加了 Ica 侧的相关配置获取
|
|
||||||
|
|
||||||
- `IcaStatus` 添加了 `admins(self) -> list[UserId]` 方法
|
|
||||||
- 用于获取当前所有的管理员
|
|
||||||
|
|
||||||
- `IcaStatus` 添加了 `blocked(self) -> list[UserId]` 方法
|
|
||||||
- 用于获取当前所有的被屏蔽的人
|
|
383
news/olds.md
383
news/olds.md
|
@ -1,383 +0,0 @@
|
||||||
# 更新日志 (0.2 ~ 0.8)
|
|
||||||
|
|
||||||
## 0.8.2
|
|
||||||
|
|
||||||
- ica 兼容版本号更新到 `2.12.28`
|
|
||||||
- 现在支持通过读取环境变量里的 `VIRTUAL_ENV` 来获取虚拟环境路径
|
|
||||||
- 用于在虚拟环境中运行插件
|
|
||||||
- 添加了 `-h` 参数
|
|
||||||
- 用于展示帮助信息
|
|
||||||
- 添加了 `-env` 参数
|
|
||||||
- 用于指定 python 插件的虚拟环境路径
|
|
||||||
- 会覆盖环境变量中的 `VIRTUAL_ENV`
|
|
||||||
- 现在加入了默认的配置文件路径 `./config.toml`
|
|
||||||
- 现在会记录所有的 python 运行中 task 了
|
|
||||||
- 也会在退出的时候等待所有的 task 结束
|
|
||||||
- 二次 ctrl-c 会立即退出
|
|
||||||
- 改进了一下 ica 的新消息显示
|
|
||||||
- 添加了 ica 链接用时的显示
|
|
||||||
|
|
||||||
### ica&tailchat 2.0.0
|
|
||||||
|
|
||||||
- BREAKING CHANGE
|
|
||||||
- 现在 `CONFIG_DATA` 为一个 `str | bytes`
|
|
||||||
- 用于存储插件的配置信息
|
|
||||||
- 需要自行解析
|
|
||||||
- 现在 `on_config` 函数签名为 `on_config = Callable[[bytes], None]`
|
|
||||||
- 用于接收配置信息
|
|
||||||
- 现在使用 `require_config = Callable[[None], str, bytes | str]` 函数来请求配置信息
|
|
||||||
- 用于请求配置信息
|
|
||||||
- `str` 为配置文件名
|
|
||||||
- `bytes | str` 为配置文件默认内容
|
|
||||||
- 以 `bytes` 形式或者 `str` 形式均可
|
|
||||||
|
|
||||||
### ica 1.6.7
|
|
||||||
|
|
||||||
- 为 `IcaClinet` 添加了 `py_tasks_count -> int` 属性
|
|
||||||
- 用于获取当前运行中的 python task 数量
|
|
||||||
|
|
||||||
### tailchat 1.2.6
|
|
||||||
|
|
||||||
- 为 `TailchatClient` 添加了 `py_tasks_count -> int` 属性
|
|
||||||
- 用于获取当前运行中的 python task 数量
|
|
||||||
|
|
||||||
## 0.8.1
|
|
||||||
|
|
||||||
- 修复了 Python 插件状态写入的时候写入路径错误的问题
|
|
||||||
- `ica-typing` 加入了 `from __future__ import annotations`
|
|
||||||
- 这样就可以随便用 typing 了
|
|
||||||
- 把 NewType 都扬了
|
|
||||||
|
|
||||||
### ica 1.6.6
|
|
||||||
|
|
||||||
- 修复了 `send_poke` api 的问题
|
|
||||||
- 现在可以正常使用了
|
|
||||||
|
|
||||||
## 0.8.0
|
|
||||||
|
|
||||||
- ica 兼容版本号更新到 ~~`2.12.24`~~ `2.12.26`
|
|
||||||
- 从 `py::PyStatus` 开始进行一个 `static mut` -> `static mut OnceLock` 的改造
|
|
||||||
- 用于看着更舒服(逃)
|
|
||||||
- 部分重构了一下 读取插件启用状态 的配置文件的代码
|
|
||||||
- 现在 `/bot-help` 会直接输出实际的 client id, 而不是给你一个默认的 `<client-id>`
|
|
||||||
|
|
||||||
### ica 1.6.5
|
|
||||||
|
|
||||||
- 添加了 `send_room_sign_in` api
|
|
||||||
- 用于发送群签到信息
|
|
||||||
- socketio event: `sendGroupSign`
|
|
||||||
- 添加了 `send_poke` api
|
|
||||||
- 用于发送戳一戳
|
|
||||||
- 可以指定群的某个人
|
|
||||||
- 或者指定好友
|
|
||||||
- 目前还是有点问题
|
|
||||||
- socketio event: `sendGroupPoke`
|
|
||||||
- 添加了 `reload_plugin_status` api
|
|
||||||
- 用于重新加载插件状态
|
|
||||||
- 添加了 `reload_plugin(plugin_name: str)` api
|
|
||||||
- 用于重新加载指定插件
|
|
||||||
- 添加了 `set_plugin_status(plugin_name: str, status: bool)` api
|
|
||||||
- 用于设置插件的启用状态
|
|
||||||
- 添加了 `get_plugin_status(plugin_name: str) -> bool` api
|
|
||||||
- 用于获取插件的启用状态
|
|
||||||
- 添加了 `sync_status_to_config` api
|
|
||||||
- 用于将内存中的插件状态同步到配置文件中
|
|
||||||
|
|
||||||
### tailchat 1.2.5
|
|
||||||
|
|
||||||
- 添加了 `reload_plugin_status` api
|
|
||||||
- 用于重新加载插件状态
|
|
||||||
- 添加了 `reload_plugin(plugin_name: str)` api
|
|
||||||
- 用于重新加载指定插件
|
|
||||||
- 添加了 `set_plugin_status(plugin_name: str, status: bool)` api
|
|
||||||
- 用于设置插件的启用状态
|
|
||||||
- 添加了 `get_plugin_status(plugin_name: str) -> bool` api
|
|
||||||
- 用于获取插件的启用状态
|
|
||||||
- 添加了 `sync_status_to_config` api
|
|
||||||
- 用于将内存中的插件状态同步到配置文件中
|
|
||||||
|
|
||||||
## 0.7.4
|
|
||||||
|
|
||||||
- ica 兼容版本号更新到 `2.12.23`
|
|
||||||
- 通过一个手动 json patch 修复了因为 icalingua 的奇怪类型问题导致的 bug
|
|
||||||
- [icalingua issue](https://github.com/Icalingua-plus-plus/Icalingua-plus-plus/issues/793)
|
|
||||||
|
|
||||||
## 0.7.3
|
|
||||||
|
|
||||||
- 也许修复了删除插件不会立即生效的问题
|
|
||||||
- ica 兼容版本号更新到 `2.12.21`
|
|
||||||
添加了一些新的 api
|
|
||||||
|
|
||||||
### ica 1.6.4
|
|
||||||
|
|
||||||
- 给 `SendMessagePy`
|
|
||||||
- 添加了 `remove_reply` 方法
|
|
||||||
- 用于取消回复状态
|
|
||||||
- 删除了 `Room` 的 `auto_download` 和 `download_path` 字段
|
|
||||||
- 因为这两个字段也没啥用
|
|
||||||
|
|
||||||
### tailcaht 1.2.4
|
|
||||||
|
|
||||||
- 给 `TailchatClientPy`
|
|
||||||
- 添加了 `new_message` 方法
|
|
||||||
- 用于创建新的消息
|
|
||||||
- 给 `TailchatSendingMessagePy`
|
|
||||||
- 添加了 `clear_meta` 功能
|
|
||||||
- 用于清除 `meta` 字段
|
|
||||||
- 可以用来取消回复状态
|
|
||||||
|
|
||||||
## 0.7.2
|
|
||||||
|
|
||||||
- 修复了一些 ica 和 tailchat 表现不一致的问题(捂脸)
|
|
||||||
|
|
||||||
## 0.7.1
|
|
||||||
|
|
||||||
- 两个 api 版本号分别升级到 `1.6.3(ica)` 和 `1.2.3(tailchat)`
|
|
||||||
- 加入了 `client_id`
|
|
||||||
- 用的 startup time hash 一遍取后六位
|
|
||||||
- 以及也有 python 侧的 `client_id` api
|
|
||||||
- 修复了上个版本其实没有写 python 侧 `version_str` api 的问题
|
|
||||||
|
|
||||||
## 0.7.0
|
|
||||||
|
|
||||||
> 我决定叫他 0.7.0
|
|
||||||
> 因为修改太多了.png
|
|
||||||
|
|
||||||
- 加入了 禁用/启用 插件功能
|
|
||||||
- 现在会在插件加载时警告你的插件原来定义了 `CONFIG_DATA` 这一项
|
|
||||||
- `IcaNewMessage` 添加了新的 api
|
|
||||||
- `get_sender_name` 获取发送人昵称
|
|
||||||
- `ica` 兼容版本号 `2.12.11` -> `2.12.12`
|
|
||||||
- 加入了 `STABLE` 信息, 用于标记稳定版本
|
|
||||||
- 不少配置文件项加上了默认值
|
|
||||||
- 添加了 `version_str() -> String` 用于方便的获取版本信息
|
|
||||||
- 同样在 `py` 侧也有 `version_str` 方法
|
|
||||||
- 加入了 `/help` 命令
|
|
||||||
- 用于获取帮助信息
|
|
||||||
- 加入了 `/bot-ls`
|
|
||||||
- 用于展示所有插件的信息
|
|
||||||
- 加入了 `/bot-enable` 和 `/bot-disable`
|
|
||||||
- 用于启用/禁用插件
|
|
||||||
|
|
||||||
## 0.6.10
|
|
||||||
|
|
||||||
- 加了点东西 (?)
|
|
||||||
|
|
||||||
## 0.6.9
|
|
||||||
|
|
||||||
我决定立即发布 0.6.9
|
|
||||||
|
|
||||||
- 添加了 `Client.startup_time() -> datetime` 方法
|
|
||||||
- 用于获取 bot 启动时间
|
|
||||||
- 这样就可以经常吹我 bot 跑了多久了 ( ˘•ω•˘ )
|
|
||||||
- 顺手加上了 `/bot-uptime` 命令
|
|
||||||
- 可以获取 bot 运行时间
|
|
||||||
- 谢谢 GitHub Copilot 的帮助
|
|
||||||
|
|
||||||
## 0.6.8
|
|
||||||
|
|
||||||
- 修复了一堆拼写错误
|
|
||||||
- 太难绷了
|
|
||||||
- `TailchatReciveMessagePy` -> `TailchatReceiveMessagePy`
|
|
||||||
- `ReciveMessage` -> `ReceiveMessage`
|
|
||||||
- `ReceiveMessage::meta`
|
|
||||||
- 从 `JsonValue` 改成 `Option<JsonValue>`
|
|
||||||
- 用来解决发图片的时候没有 `meta` 字段的问题
|
|
||||||
- 去除了自带的两个 macro
|
|
||||||
- `wrap_callback` 和 `wrap_any_callback`
|
|
||||||
- 因为现在他俩已经进到 `rust_socketio` 里啦
|
|
||||||
- 添加了新的 macro
|
|
||||||
- 支持了 `TailchatReceiveMessagePy` 的 `is_from_self` 方法
|
|
||||||
- 用于判断是否是自己发的消息
|
|
||||||
|
|
||||||
## 0.6.7
|
|
||||||
|
|
||||||
游学回来啦
|
|
||||||
|
|
||||||
- 处理了一些 tailchat 的特殊情况
|
|
||||||
- 比如 message 里面的 `GroupId` 实际上是可选的, 在私聊中没有这一项
|
|
||||||
- 忽略了所有的 `__v` (用于数据库记录信息的, bot不需要管)
|
|
||||||
- 作者原话 `不用管。数据库记录版本`
|
|
||||||
- 修复了如果没法解析新的信息, 会 panic 的问题
|
|
||||||
- `ica_typing.py`
|
|
||||||
- 补充了 `TailchatSendingMessage` 的 `group_id` 和 `converse_id` 字段
|
|
||||||
- 把 `group_id` 的设置和返回都改成了 `Optional[GroupId]`
|
|
||||||
- tailchat 的 API 也差点意思就是了(逃)
|
|
||||||
- 处理了 icalingua 的 `renewMessage` 事件 (其实就是直接忽略掉了)
|
|
||||||
|
|
||||||
## 0.6.6
|
|
||||||
|
|
||||||
游学之前最后一次更新
|
|
||||||
其实也就五天
|
|
||||||
|
|
||||||
正式支持了 tailchat 端
|
|
||||||
好耶!
|
|
||||||
|
|
||||||
[!note]
|
|
||||||
|
|
||||||
```text
|
|
||||||
notice_room = []
|
|
||||||
notice_start = true
|
|
||||||
|
|
||||||
admin_list = []
|
|
||||||
filter_list = []
|
|
||||||
```
|
|
||||||
|
|
||||||
的功能暂时不支持
|
|
||||||
|
|
||||||
## 0.6.5
|
|
||||||
|
|
||||||
怎么就突然 0.6.5 了
|
|
||||||
我也不造啊
|
|
||||||
|
|
||||||
- 反正支持了 tailchat 的信息接受
|
|
||||||
- 但是需要你在对面服务端打开 `DISABLE_MESSAGEPACK` 环境变量
|
|
||||||
- 能用就行
|
|
||||||
|
|
||||||
- 现在 `update_online_data` 不会再以 INFO 级别显示了
|
|
||||||
- `update_all_room` 同上
|
|
||||||
|
|
||||||
## 0.6.2
|
|
||||||
|
|
||||||
- 添加 API
|
|
||||||
- `NewMessage.set_img` 用于设置消息的图片
|
|
||||||
- `IcaSendMessage.set_img` 用于设置消息的图片 (python)
|
|
||||||
|
|
||||||
## 0.6.1
|
|
||||||
|
|
||||||
还是没写完 tailchat 支持
|
|
||||||
因为 rust_socketio 还是没写好 serdelizer 的支持
|
|
||||||
|
|
||||||
- 正在添加发送图片的 api
|
|
||||||
|
|
||||||
## 0.6.0-dev
|
|
||||||
|
|
||||||
- 去除了 matrix 的支持
|
|
||||||
- 淦哦
|
|
||||||
- 去除了相应代码和依赖
|
|
||||||
- 去除了 Python 侧代码
|
|
||||||
- 向 tailchat (typescript 低头)
|
|
||||||
|
|
||||||
- 修复了没法编译的问题(
|
|
||||||
|
|
||||||
## 0.5.3
|
|
||||||
|
|
||||||
修复了 Icalingua 断开时 如果 socketio 已经断开会导致程序 返回 Error 的问题
|
|
||||||
以及还有一些别的修复就是了
|
|
||||||
|
|
||||||
- Python 端修改
|
|
||||||
- `on_message` -> `on_ica_message`
|
|
||||||
- `on_delete_message` -> `on_ica_delete_message`
|
|
||||||
- 添加 `on_matrix_message`
|
|
||||||
|
|
||||||
## 0.5.1/2
|
|
||||||
|
|
||||||
重构了一整波, 还没改 `ica-typing.py` 的代码
|
|
||||||
但至少能用了
|
|
||||||
|
|
||||||
- Ica 版本号 `1.4.0`
|
|
||||||
- Matrix 版本号 `0.1.0`
|
|
||||||
|
|
||||||
## 0.5.0
|
|
||||||
|
|
||||||
准备接入 `Matrix`
|
|
||||||
|
|
||||||
去掉 `pyo3-async` 的依赖
|
|
||||||
|
|
||||||
## 0.4.12
|
|
||||||
|
|
||||||
把 0.4.11 的遗留问题修完了
|
|
||||||
|
|
||||||
## 0.4.11
|
|
||||||
|
|
||||||
这几天就是在刷版本号的感觉
|
|
||||||
|
|
||||||
- 添加
|
|
||||||
- `DeleteMessage` 用于删除消息
|
|
||||||
- `NewMessage.as_delete` 用于将消息转换为删除消息
|
|
||||||
- `client::delete_message` 用于删除消息
|
|
||||||
- `client::fetch_history` 用于获取历史消息 TODO
|
|
||||||
- `py::class::DeleteMessagePy` 用于删除消息 的 Python 侧 API
|
|
||||||
- `py::class::IcaClientPy.delete_message` 用于删除消息 的 Python 侧 API
|
|
||||||
- `IcalinguaStatus.current_loaded_messages_count`
|
|
||||||
- 用于以后加载信息计数
|
|
||||||
- 修改
|
|
||||||
- `py::class::IcaStatusPy`
|
|
||||||
- 大部分方法从手动 `unsafe` + `Option`
|
|
||||||
- 改成直接调用 `IcalinguaStatus` 的方法
|
|
||||||
- `IcalinguaStatus`
|
|
||||||
- 所有方法均改成 直接对着 `IcalinguaStatus` 的方法调用
|
|
||||||
- 补全没有的方法
|
|
||||||
|
|
||||||
## 0.4.10
|
|
||||||
|
|
||||||
好家伙, 我感觉都快能叫 0.5 了
|
|
||||||
修改了一些内部数据结构, 使得插件更加稳定
|
|
||||||
|
|
||||||
添加了 `rustfmt.toml` 用于格式化代码
|
|
||||||
**注意**: 请在提交代码前使用 `cargo +nightly fmt` 格式化代码
|
|
||||||
|
|
||||||
修复了 `Message` 解析 `replyMessage` 字段是 如果是 null 则会解析失败的问题
|
|
||||||
|
|
||||||
## 0.4.9
|
|
||||||
|
|
||||||
修复了 Python 插件运行错误会导致整个程序崩溃的问题
|
|
||||||
|
|
||||||
## 0.4.8
|
|
||||||
|
|
||||||
添加了 `filter_list` 用于过滤特定人的消息
|
|
||||||
|
|
||||||
## 0.4.7
|
|
||||||
|
|
||||||
修复了重载时如果代码有问题会直接 panic 的问题
|
|
||||||
|
|
||||||
## 0.4.6
|
|
||||||
|
|
||||||
现在更适合部署了
|
|
||||||
|
|
||||||
## 0.4.5
|
|
||||||
|
|
||||||
添加 `is_reply` api 到 `NewMessagePy`
|
|
||||||
|
|
||||||
## 0.4.4
|
|
||||||
|
|
||||||
现在正式支持 Python 插件了
|
|
||||||
`/bmcl` 也迁移到了 Python 插件版本
|
|
||||||
|
|
||||||
## 0.4.3
|
|
||||||
|
|
||||||
噫! 好! 我成了!
|
|
||||||
|
|
||||||
## 0.4.2
|
|
||||||
|
|
||||||
现在是 async 版本啦!
|
|
||||||
|
|
||||||
## 0.4.1
|
|
||||||
|
|
||||||
现在能发送登录信息啦
|
|
||||||
|
|
||||||
## 0.4.0
|
|
||||||
|
|
||||||
使用 Rust 从头实现一遍
|
|
||||||
\能登录啦/
|
|
||||||
|
|
||||||
## 0.3.3
|
|
||||||
|
|
||||||
适配 Rust 端的配置文件修改
|
|
||||||
|
|
||||||
## 0.3.1/2
|
|
||||||
|
|
||||||
改进 `/bmcl` 的细节
|
|
||||||
|
|
||||||
## 0.3.0
|
|
||||||
|
|
||||||
合并了 dongdigua 的代码, 把消息处理部分分离
|
|
||||||
现在代码更阳间了(喜
|
|
||||||
|
|
||||||
## 0.2.3
|
|
||||||
|
|
||||||
添加了 `/bmcl` 请求 bmclapi 状态
|
|
||||||
|
|
||||||
## 0.2.2
|
|
||||||
|
|
||||||
重构了一波整体代码
|
|
|
@ -1,8 +1,9 @@
|
||||||
# icalingua bot
|
# icalingua bot
|
||||||
|
|
||||||
这是一个基于 icalingua-bridge 的 bot
|
这是一个基于 icalingua docker 版的 bot
|
||||||
|
|
||||||
[插件市场(确信)](https://github.com/shenjackyuanjie/shenbot-plugins)
|
> 出于某个企鹅, 和保护 作者 和 原项目 ( ica ) 的原因 \
|
||||||
|
> 功能请自行理解
|
||||||
|
|
||||||
## 通用环境准备
|
## 通用环境准备
|
||||||
|
|
||||||
|
@ -14,14 +15,12 @@
|
||||||
choco install python
|
choco install python
|
||||||
# 或者
|
# 或者
|
||||||
scoop install python
|
scoop install python
|
||||||
# 又或者
|
|
||||||
uv venv
|
|
||||||
```
|
```
|
||||||
|
|
||||||
- 启动 icalingua 后端
|
- 启动 icalingua 后端
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 用你自己的方法启动你的 icalingua-bridge
|
# 用你自己的方法启动你的 icalingua 后端
|
||||||
# 例如
|
# 例如
|
||||||
docker start icalingua
|
docker start icalingua
|
||||||
docker-compose up -d
|
docker-compose up -d
|
||||||
|
|
1
rust-toolchain
Normal file
1
rust-toolchain
Normal file
|
@ -0,0 +1 @@
|
||||||
|
nightly
|
|
@ -1,2 +0,0 @@
|
||||||
[toolchain]
|
|
||||||
channel = "stable"
|
|
Loading…
Reference in New Issue
Block a user