// 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 . 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 for IssueAction { fn from(other: FjIssueAction) -> IssueAction { match other { FjIssueAction::Opened => IssueAction::Open, FjIssueAction::Edited => IssueAction::Update, } } } impl From 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: None, } } } impl TryFrom for Hook { type Error = Error; fn try_from(hook: ForgejoHook) -> Result { 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), }) } }