use super::helper;
use crate::COUNTER;
use proc_macro_warning::FormattedWarning;
use syn::spanned::Spanned;
pub struct ValidateUnsignedDef {
pub warning: Option<FormattedWarning>,
}
impl ValidateUnsignedDef {
pub fn try_from(item: &mut syn::Item) -> syn::Result<Self> {
let item = if let syn::Item::Impl(item) = item {
item
} else {
let msg = "Invalid pallet::validate_unsigned, expected item impl";
return Err(syn::Error::new(item.span(), msg));
};
if item.trait_.is_none() {
let msg = "Invalid pallet::validate_unsigned, expected impl<..> ValidateUnsigned for \
Pallet<..>";
return Err(syn::Error::new(item.span(), msg));
}
if let Some(last) = item.trait_.as_ref().unwrap().1.segments.last() {
if last.ident != "ValidateUnsigned" {
let msg = "Invalid pallet::validate_unsigned, expected trait ValidateUnsigned";
return Err(syn::Error::new(last.span(), msg));
}
} else {
let msg = "Invalid pallet::validate_unsigned, expected impl<..> ValidateUnsigned for \
Pallet<..>";
return Err(syn::Error::new(item.span(), msg));
}
helper::check_pallet_struct_usage(&item.self_ty)?;
helper::check_impl_gen(&item.generics, item.impl_token.span())?;
let allow_dep: syn::Attribute = syn::parse_quote!(#[allow(deprecated)]);
let warning = if item.attrs.iter().any(|attr| attr == &allow_dep) {
None
} else {
const DEPRECATION_MSG: &str = "#[pallet::validate_unsigned] will be removed after \
April 2027. Use `#[pallet::authorize]` with `frame_system::AuthorizeCall` instead.";
const REFERENCE_LINK: &str = "https://github.com/paritytech/polkadot-sdk/issues/2415";
let count = COUNTER.with(|counter| counter.borrow_mut().inc());
let warning = proc_macro_warning::FormattedWarning::new_deprecated(
format!("validate_unsigned_deprecation_{count}"),
format!("\n{DEPRECATION_MSG}\n\n\t\tFor more info see:\n\t\t\t{REFERENCE_LINK}"),
item.span(),
);
Some(warning)
};
Ok(ValidateUnsignedDef { warning })
}
}