multiversx-sc-derive 0.66.0

MultiversX smart contract API procedural macros
Documentation
use crate::parse::attributes::util::{clean_string, is_first_char_numeric};

use super::attr_names::*;

pub struct PayableAttribute {
    pub identifier: String,
}

impl PayableAttribute {
    pub fn parse(attr: &syn::Attribute) -> Option<PayableAttribute> {
        if let Some(first_seg) = attr.path().segments.first() {
            if first_seg.ident == ATTR_PAYABLE {
                Some(PayableAttribute {
                    identifier: extract_token_identifier(attr),
                })
            } else {
                None
            }
        } else {
            None
        }
    }
}

/// Current implementation only works with 1 token name.
/// Might be extended in the future.
fn extract_token_identifier(attr: &syn::Attribute) -> String {
    match attr.meta.clone() {
        syn::Meta::Path(_) => {
            // #[payable]
            "*".to_owned()
        }
        syn::Meta::List(list) => {
            let mut iter = list.tokens.into_iter();
            let ticker = match iter.next() {
                Some(proc_macro2::TokenTree::Literal(literal)) => {
                    let clean = clean_string(literal.to_string());
                    assert!(
                        !clean.is_empty(),
                        "ticker can not be empty. attribute needs 1 string argument: Replace with #[payable(\"*\")] or #[payable(\"EGLD\")"
                    );

                    assert!(
                        !is_first_char_numeric(&clean),
                        "argument can not be a number"
                    );

                    if clean.chars().next().is_some_and(|s| s == '*') {
                        assert!(
                            clean.len() == 1usize,
                            "attribute needs 1 string argument: \"*\", \"EGLD\" or token identifier"
                        );
                    }

                    clean
                }
                Some(_) => panic!("expected a string as argument"),
                None => panic!(
                    "argument can not be empty. attribute needs 1 string argument: Replace with #[payable(\"*\")] or #[payable(\"EGLD\")"
                ),
            };

            assert!(
                iter.next().is_none(),
                "too many tokens in attribute argument"
            );
            ticker
        }
        syn::Meta::NameValue(_) => panic!(
            "attribute can not be name value. attribute needs 1 string argument: \"*\" or \"EGLD\""
        ),
    }
}