#[cfg(feature = "channel-linq")]
#[allow(dead_code)]
mod impl_ {
use crate::channels::helpers;
use crate::{Channel, ChannelMessage, SendMessage};
use async_trait::async_trait;
use std::time::Duration;
super::super::channel_meta!(LINQ_DESCRIPTOR, "linq", "Linq");
const MAX_MESSAGE_LENGTH: usize = 10000;
const POLL_INTERVAL_SECS: u64 = 3;
pub struct LinqChannel {
base_url: String,
api_key: String,
allowed_users: Vec<String>,
client: reqwest::Client,
}
impl LinqChannel {
pub fn new(
base_url: String,
api_key: String,
allowed_users: Vec<String>,
) -> Self {
let client = reqwest::Client::builder()
.timeout(Duration::from_secs(30))
.build()
.expect("reqwest client should build");
Self {
base_url: base_url.trim_end_matches('/').to_string(),
api_key,
allowed_users,
client,
}
}
fn api_url(&self, path: &str) -> String {
format!("{}/api/v1{}", self.base_url, path)
}
}
#[async_trait]
impl Channel for LinqChannel {
fn name(&self) -> &str {
"linq"
}
async fn send(&self, message: &SendMessage) -> anyhow::Result<()> {
let chunks = helpers::split_message(&message.content, MAX_MESSAGE_LENGTH);
for chunk in chunks {
let body = serde_json::json!({
"to": message.recipient,
"text": chunk,
});
let resp = self
.client
.post(self.api_url("/messages"))
.bearer_auth(&self.api_key)
.json(&body)
.send()
.await?;
if !resp.status().is_success() {
let status = resp.status();
let text = resp.text().await.unwrap_or_default();
anyhow::bail!("linq send failed: {status} {text}");
}
}
Ok(())
}
async fn listen(
&self,
tx: tokio::sync::mpsc::Sender<ChannelMessage>,
) -> anyhow::Result<()> {
let mut cursor = String::new();
loop {
let mut url = self.api_url("/messages/poll");
if !cursor.is_empty() {
url.push_str(&format!("?cursor={cursor}"));
}
let resp = match self
.client
.get(&url)
.bearer_auth(&self.api_key)
.send()
.await
{
Ok(r) => r,
Err(e) => {
tracing::error!(error = %e, "linq poll failed");
tokio::time::sleep(Duration::from_secs(2)).await;
continue;
}
};
let json: serde_json::Value = match resp.json().await {
Ok(j) => j,
Err(e) => {
tracing::error!(error = %e, "linq parse failed");
tokio::time::sleep(Duration::from_secs(2)).await;
continue;
}
};
if let Some(c) = json["cursor"].as_str() {
cursor = c.to_string();
}
if let Some(messages) = json["messages"].as_array() {
for msg in messages {
let sender = msg["from"].as_str().unwrap_or("");
if sender.is_empty() {
continue;
}
if !helpers::is_user_allowed(sender, &self.allowed_users) {
continue;
}
let text = msg["text"].as_str().unwrap_or("");
if text.is_empty() {
continue;
}
let channel_msg = ChannelMessage {
id: helpers::new_message_id(),
sender: sender.to_string(),
reply_target: sender.to_string(),
content: text.to_string(),
channel: "linq".to_string(),
timestamp: helpers::now_epoch_secs(),
thread_ts: None,
privacy_boundary: String::new(),
};
if tx.send(channel_msg).await.is_err() {
return Ok(());
}
}
}
tokio::time::sleep(Duration::from_secs(POLL_INTERVAL_SECS)).await;
}
}
async fn health_check(&self) -> bool {
self.client
.get(self.api_url("/health"))
.bearer_auth(&self.api_key)
.send()
.await
.map(|r| r.status().is_success())
.unwrap_or(false)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn linq_channel_name() {
let ch = LinqChannel::new("https://linq.example.com".into(), "key".into(), vec![]);
assert_eq!(ch.name(), "linq");
}
#[test]
fn linq_api_url_format() {
let ch = LinqChannel::new(
"https://linq.example.com/".into(),
"k".into(),
vec![],
);
assert_eq!(
ch.api_url("/messages"),
"https://linq.example.com/api/v1/messages"
);
}
}
}
#[cfg(feature = "channel-linq")]
pub use impl_::*;
#[cfg(not(feature = "channel-linq"))]
super::channel_stub!(LinqChannel, LINQ_DESCRIPTOR, "linq", "Linq");