cusku/src/hooks/forgejo.rs
pep 12330e736d
cusku::hooks::forgejo: Add url to be displayed
Signed-off-by: pep <pep@bouah.net>
2025-04-19 14:30:10 +02:00

75 lines
2.1 KiB
Rust

// Copyright (C) 2024-2099 The crate authors.
//
// This program is free software: you can redistribute it and/or modify it
// under the terms of the GNU Affero General Public License as published by the
// Free Software Foundation, either version 3 of the License, or (at your
// option) any later version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
// for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
use crate::hooks::types::{Commit, Hook, Issue, IssueAction, Push, Repository, User};
use crate::Error;
pub use ::forgejo_hooks::{Hook as ForgejoHook, Issue as FjIssue, IssueAction as FjIssueAction};
impl From<FjIssueAction> for IssueAction {
fn from(other: FjIssueAction) -> IssueAction {
match other {
FjIssueAction::Opened => IssueAction::Open,
FjIssueAction::Edited => IssueAction::Update,
}
}
}
impl From<FjIssue> for Issue {
fn from(other: FjIssue) -> Issue {
Issue {
id: other.issue.number as u64,
action: Some(other.action.into()),
title: other.issue.title,
author: User {
name: other.issue.user.login,
},
repository: Repository {
name: other.repository.name,
},
url: Some(other.issue.html_url),
}
}
}
impl TryFrom<ForgejoHook> for Hook {
type Error = Error;
fn try_from(hook: ForgejoHook) -> Result<Hook, Error> {
Ok(match hook {
ForgejoHook::Push(push) => Hook::Push(Push {
ref_: push.ref_,
object_kind: String::from("push"),
commits: push
.commits
.into_iter()
.map(|commit| Commit {
ref_: commit.id,
message: commit.message,
url: commit.url,
})
.collect(),
repository: Repository {
name: push.repository.name,
},
pusher: User {
name: push.pusher.username,
},
}),
ForgejoHook::Issue(issue) => Hook::Issue(issue.into()),
_ => return Err(Error::UnsupportedHookConversion),
})
}
}