mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-05 11:35:34 +08:00
93e01b4442
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added support for installing self-hosted team licenses via encrypted license files. - Introduced a new "Onetime" license variant for self-hosted environments. - Added a GraphQL mutation to upload and install license files. - License details now display the license variant. - **Bug Fixes** - Improved error messages for license activation and expiration, including dynamic reasons. - **Localization** - Updated and improved license-related error messages for better clarity. - **Tests** - Added comprehensive end-to-end tests for license installation scenarios. - **Chores** - Enhanced environment variable handling and public key management for license verification. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
58 lines
1.3 KiB
Rust
58 lines
1.3 KiB
Rust
#![deny(clippy::all)]
|
|
|
|
mod utils;
|
|
|
|
pub mod doc_loader;
|
|
pub mod file_type;
|
|
pub mod hashcash;
|
|
pub mod html_sanitize;
|
|
pub mod tiktoken;
|
|
|
|
use std::fmt::{Debug, Display};
|
|
|
|
use napi::{bindgen_prelude::*, Error, Result, Status};
|
|
use y_octo::Doc;
|
|
|
|
#[cfg(not(target_arch = "arm"))]
|
|
#[global_allocator]
|
|
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
|
|
|
#[macro_use]
|
|
extern crate napi_derive;
|
|
|
|
fn map_err_inner<T, E: Display + Debug>(v: std::result::Result<T, E>, status: Status) -> Result<T> {
|
|
match v {
|
|
Ok(val) => Ok(val),
|
|
Err(e) => {
|
|
dbg!(&e);
|
|
Err(Error::new(status, e.to_string()))
|
|
}
|
|
}
|
|
}
|
|
|
|
macro_rules! map_err {
|
|
($val: expr) => {
|
|
map_err_inner($val, Status::GenericFailure)
|
|
};
|
|
($val: expr, $stauts: ident) => {
|
|
map_err_inner($val, $stauts)
|
|
};
|
|
}
|
|
|
|
/// Merge updates in form like `Y.applyUpdate(doc, update)` way and return the
|
|
/// result binary.
|
|
#[napi(catch_unwind)]
|
|
pub fn merge_updates_in_apply_way(updates: Vec<Buffer>) -> Result<Buffer> {
|
|
let mut doc = Doc::default();
|
|
for update in updates {
|
|
map_err!(doc.apply_update_from_binary_v1(update.as_ref()))?;
|
|
}
|
|
|
|
let buf = map_err!(doc.encode_update_v1())?;
|
|
|
|
Ok(buf.into())
|
|
}
|
|
|
|
#[napi]
|
|
pub const AFFINE_PRO_PUBLIC_KEY: Option<&'static str> = std::option_env!("AFFINE_PRO_PUBLIC_KEY",);
|