use crate::compiler::prelude::*;
use ::sha1::Digest;
fn sha1(value: Value) -> Resolved {
let value = value.try_bytes()?;
Ok(hex::encode(sha1::Sha1::digest(&value)).into())
}
#[derive(Clone, Copy, Debug)]
pub struct Sha1;
impl Function for Sha1 {
fn identifier(&self) -> &'static str {
"sha1"
}
fn usage(&self) -> &'static str {
"Calculates a [SHA-1](https://en.wikipedia.org/wiki/SHA-1) hash of the `value`."
}
fn category(&self) -> &'static str {
Category::Cryptography.as_ref()
}
fn return_kind(&self) -> u16 {
kind::BYTES
}
fn parameters(&self) -> &'static [Parameter] {
const PARAMETERS: &[Parameter] = &[Parameter::required(
"value",
kind::BYTES,
"The string to calculate the hash for.",
)];
PARAMETERS
}
fn examples(&self) -> &'static [Example] {
&[example! {
title: "Calculate sha1 hash",
source: r#"sha1("foo")"#,
result: Ok("0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33"),
}]
}
fn compile(
&self,
_state: &state::TypeState,
_ctx: &mut FunctionCompileContext,
arguments: ArgumentList,
) -> Compiled {
let value = arguments.required("value");
Ok(Sha1Fn { value }.as_expr())
}
}
#[derive(Debug, Clone)]
struct Sha1Fn {
value: Box<dyn Expression>,
}
impl FunctionExpression for Sha1Fn {
fn resolve(&self, ctx: &mut Context) -> Resolved {
let value = self.value.resolve(ctx)?;
sha1(value)
}
fn type_def(&self, _: &state::TypeState) -> TypeDef {
TypeDef::bytes().infallible()
}
}
#[cfg(test)]
mod tests {
use super::*;
test_function![
sha1 => Sha1;
sha {
args: func_args![value: "foo"],
want: Ok("0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33"),
tdef: TypeDef::bytes().infallible(),
}
];
}