You've already forked AstralRinth
* chore: fix typo in status message * feat(labrinth): overhaul malware scanner report storage and routes * chore: address some review comments * feat: add Delphi to Docker Compose `with-delphi` profile * chore: fix unused import Clippy lint * feat(labrinth/delphi): use PAT token authorization with project read scopes * chore: expose file IDs in version queries * fix: accept null decompiled source payloads from Delphi * tweak(labrinth): expose base62 file IDs more consistently for Delphi * feat(labrinth/delphi): support new Delphi report severity field * chore(labrinth): run `cargo sqlx prepare` to fix Docker build errors * tweak: add route for fetching Delphi issue type schema, abstract Labrinth away from issue types * chore: run `cargo sqlx prepare` * chore: fix typo on frontend generated state file message * feat: update to use new Delphi issue schema * wip: tech review endpoints * wip: add ToSchema for dependent types * wip: report issues return * wip * wip: returning more data * wip * Fix up db query * Delphi configuration to talk to Labrinth * Get Delphi working with Labrinth * Add Delphi dummy fixture * Better Delphi logging * Improve utoipa for tech review routes * Add more sorting options for tech review queue * Oops join * New routes for fetching issues and reports * Fix which kind of ID is returned in tech review endpoints * Deduplicate tech review report rows * Reduce info sent for projects * Fetch more thread info * Address PR comments * fix ci * fix postgres version mismatch * fix version creation * Implement routes * fix up tech review * Allow adding a moderation comment to Delphi rejections * fix up rebase * exclude rejected projects from tech review * add status change msg to tech review thread * cargo sqlx prepare * also ignore withheld projects * More filtering on issue search * wip: report routes * Fix up for build * cargo sqlx prepare * fix thread message privacy * New tech review search route * submit route * details have statuses now * add default to drid status * dedup issue details * fix sqlx query on empty files * fixes * Dedupe issue detail statuses and message on entering tech rev * Fix qa issues * Fix qa issues * fix review comments * typos * fix ci * feat: tech review frontend (#4781) * chore: fix typo in status message * feat(labrinth): overhaul malware scanner report storage and routes * chore: address some review comments * feat: add Delphi to Docker Compose `with-delphi` profile * chore: fix unused import Clippy lint * feat(labrinth/delphi): use PAT token authorization with project read scopes * chore: expose file IDs in version queries * fix: accept null decompiled source payloads from Delphi * tweak(labrinth): expose base62 file IDs more consistently for Delphi * feat(labrinth/delphi): support new Delphi report severity field * chore(labrinth): run `cargo sqlx prepare` to fix Docker build errors * tweak: add route for fetching Delphi issue type schema, abstract Labrinth away from issue types * chore: run `cargo sqlx prepare` * chore: fix typo on frontend generated state file message * feat: update to use new Delphi issue schema * wip: tech review endpoints * wip: add ToSchema for dependent types * wip: report issues return * wip * wip: returning more data * wip * Fix up db query * Delphi configuration to talk to Labrinth * Get Delphi working with Labrinth * Add Delphi dummy fixture * Better Delphi logging * Improve utoipa for tech review routes * Add more sorting options for tech review queue * Oops join * New routes for fetching issues and reports * Fix which kind of ID is returned in tech review endpoints * Deduplicate tech review report rows * Reduce info sent for projects * Fetch more thread info * Address PR comments * fix ci * fix ci * fix postgres version mismatch * fix version creation * Implement routes * feat: batch scan alert * feat: layout * feat: introduce surface variables * fix: theme selector * feat: rough draft of tech review card * feat: tab switcher * feat: batch scan btn * feat: api-client module for tech review * draft: impl * feat: auto icons * fix: layout issues * feat: fixes to code blocks + flag labels * feat: temp remove mock data * fix: search sort types * fix: intl & lint * chore: re-enable mock data * fix: flag badges + auto open first issue in file tab * feat: update for new routes * fix: more qa issues * feat: lazy load sources * fix: re-enable auth middleware * feat: impl threads * fix: lint & severity * feat: download btn + switch to using NavTabs with new local mode option * feat: re-add toplevel btns * feat: reports page consistency * fix: consistency on project queue * fix: icons + sizing * fix: colors and gaps * fix: impl endpoints * feat: load all flags on file tab * feat: thread generics changes * feat: more qa * feat: fix collapse * fix: qa * feat: msg modal * fix: ISO import * feat: qa fixes * fix: empty state basic * fix: collapsible region * fix: collapse thread by default * feat: rough draft of new process/flow * fix labrinth build * fix thread message privacy * New tech review search route * feat: qa fixes * feat: QA changes * fix: verdict on detail not whole issue * fix: lint + intl * fix: lint * fix: thread message for tech rev verdict * feat: use anim frames * fix: exports + typecheck * polish: qa changes * feat: qa * feat: qa polish * feat: fix malic modal * fix: lint * fix: qa + lint * fix: pagination * fix: lint * fix: qa * intl extract * fix ci --------- Signed-off-by: Calum H. <contact@cal.engineer> Co-authored-by: Alejandro González <me@alegon.dev> Co-authored-by: aecsocket <aecsocket@tutanota.com> --------- Signed-off-by: Calum H. <contact@cal.engineer> Co-authored-by: Alejandro González <me@alegon.dev> Co-authored-by: Calum H. <contact@cal.engineer>
151 lines
4.0 KiB
Rust
151 lines
4.0 KiB
Rust
use crate::database::models::delphi_report_item::DelphiVerdict;
|
|
use crate::models::ids::{
|
|
ImageId, ProjectId, ReportId, ThreadId, ThreadMessageId,
|
|
};
|
|
use crate::models::projects::ProjectStatus;
|
|
use crate::models::users::User;
|
|
use ariadne::ids::UserId;
|
|
use chrono::{DateTime, Utc};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, utoipa::ToSchema)]
|
|
pub struct Thread {
|
|
pub id: ThreadId,
|
|
#[serde(rename = "type")]
|
|
pub type_: ThreadType,
|
|
pub project_id: Option<ProjectId>,
|
|
pub report_id: Option<ReportId>,
|
|
pub messages: Vec<ThreadMessage>,
|
|
pub members: Vec<User>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, utoipa::ToSchema)]
|
|
pub struct ThreadMessage {
|
|
pub id: ThreadMessageId,
|
|
pub author_id: Option<UserId>,
|
|
pub body: MessageBody,
|
|
pub created: DateTime<Utc>,
|
|
pub hide_identity: bool,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, utoipa::ToSchema)]
|
|
#[serde(tag = "type", rename_all = "snake_case")]
|
|
pub enum MessageBody {
|
|
Text {
|
|
body: String,
|
|
#[serde(default)]
|
|
private: bool,
|
|
replying_to: Option<ThreadMessageId>,
|
|
#[serde(default)]
|
|
associated_images: Vec<ImageId>,
|
|
},
|
|
StatusChange {
|
|
new_status: ProjectStatus,
|
|
old_status: ProjectStatus,
|
|
},
|
|
TechReview {
|
|
verdict: DelphiVerdict,
|
|
},
|
|
TechReviewEntered,
|
|
TechReviewExitFileDeleted,
|
|
ThreadClosure,
|
|
ThreadReopen,
|
|
Deleted {
|
|
#[serde(default)]
|
|
private: bool,
|
|
},
|
|
}
|
|
|
|
impl MessageBody {
|
|
pub fn is_private(&self) -> bool {
|
|
match self {
|
|
Self::Text { private, .. } | Self::Deleted { private } => *private,
|
|
Self::TechReview { .. }
|
|
| Self::TechReviewEntered
|
|
| Self::TechReviewExitFileDeleted => true,
|
|
Self::StatusChange { .. }
|
|
| Self::ThreadClosure
|
|
| Self::ThreadReopen => false,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(
|
|
Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, utoipa::ToSchema,
|
|
)]
|
|
#[serde(rename_all = "snake_case")]
|
|
pub enum ThreadType {
|
|
Report,
|
|
Project,
|
|
DirectMessage,
|
|
}
|
|
|
|
impl std::fmt::Display for ThreadType {
|
|
fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
write!(fmt, "{}", self.as_str())
|
|
}
|
|
}
|
|
|
|
impl ThreadType {
|
|
// These are constant, so this can remove unnecessary allocations (`to_string`)
|
|
pub fn as_str(&self) -> &'static str {
|
|
match self {
|
|
ThreadType::Report => "report",
|
|
ThreadType::Project => "project",
|
|
ThreadType::DirectMessage => "direct_message",
|
|
}
|
|
}
|
|
|
|
pub fn from_string(string: &str) -> ThreadType {
|
|
match string {
|
|
"report" => ThreadType::Report,
|
|
"project" => ThreadType::Project,
|
|
"direct_message" => ThreadType::DirectMessage,
|
|
_ => ThreadType::DirectMessage,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Thread {
|
|
pub fn from(
|
|
data: crate::database::models::DBThread,
|
|
users: Vec<User>,
|
|
user: &User,
|
|
) -> Self {
|
|
let thread_type = data.type_;
|
|
|
|
Thread {
|
|
id: data.id.into(),
|
|
type_: thread_type,
|
|
project_id: data.project_id.map(|x| x.into()),
|
|
report_id: data.report_id.map(|x| x.into()),
|
|
messages: data
|
|
.messages
|
|
.into_iter()
|
|
.filter(|x| user.role.is_mod() || !x.body.is_private())
|
|
.map(|x| ThreadMessage::from(x, user))
|
|
.collect(),
|
|
members: users,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ThreadMessage {
|
|
pub fn from(
|
|
data: crate::database::models::DBThreadMessage,
|
|
user: &User,
|
|
) -> Self {
|
|
Self {
|
|
id: data.id.into(),
|
|
author_id: if data.hide_identity && !user.role.is_mod() {
|
|
None
|
|
} else {
|
|
data.author_id.map(|x| x.into())
|
|
},
|
|
body: data.body,
|
|
created: data.created,
|
|
hide_identity: data.hide_identity,
|
|
}
|
|
}
|
|
}
|