carbon-mpl-token-metadata-decoder 1.0.0

MPL Token Metadata Decoder
Documentation
//! This code was AUTOGENERATED using the Codama library.
use {
    crate::types::Key,
    carbon_core::{
        account::AccountMetadata,
        postgres::{
            metadata::AccountRowMetadata,
            primitives::{Pubkey, U8},
        },
    },
};

#[derive(sqlx::FromRow, Debug, Clone)]
pub struct MetadataDelegateRecordRow {
    #[sqlx(flatten)]
    pub account_metadata: AccountRowMetadata,
    pub key: sqlx::types::Json<Key>,
    pub bump: U8,
    pub mint: Pubkey,
    pub delegate: Pubkey,
    pub update_authority: Pubkey,
}

impl MetadataDelegateRecordRow {
    pub fn from_parts(
        source: crate::accounts::metadata_delegate_record::MetadataDelegateRecord,
        metadata: AccountMetadata,
    ) -> Self {
        Self {
            account_metadata: metadata.into(),
            key: sqlx::types::Json(source.key),
            bump: source.bump.into(),
            mint: source.mint.into(),
            delegate: source.delegate.into(),
            update_authority: source.update_authority.into(),
        }
    }
}

impl TryFrom<MetadataDelegateRecordRow>
    for crate::accounts::metadata_delegate_record::MetadataDelegateRecord
{
    type Error = carbon_core::error::Error;
    fn try_from(source: MetadataDelegateRecordRow) -> Result<Self, Self::Error> {
        Ok(Self {
            key: source.key.0,
            bump: source.bump.try_into().map_err(|_| {
                carbon_core::error::Error::Custom(
                    "Failed to convert value from postgres primitive".to_string(),
                )
            })?,
            mint: *source.mint,
            delegate: *source.delegate,
            update_authority: *source.update_authority,
        })
    }
}

impl carbon_core::postgres::operations::Table
    for crate::accounts::metadata_delegate_record::MetadataDelegateRecord
{
    fn table() -> &'static str {
        "metadata_delegate_record_account"
    }

    fn columns() -> Vec<&'static str> {
        vec![
            "__pubkey",
            "__slot",
            "key",
            "bump",
            "mint",
            "delegate",
            "update_authority",
        ]
    }
}

#[async_trait::async_trait]
impl carbon_core::postgres::operations::Insert for MetadataDelegateRecordRow {
    async fn insert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
        sqlx::query(
            r#"
            INSERT INTO metadata_delegate_record_account (
                "key",
                "bump",
                "mint",
                "delegate",
                "update_authority",
                __pubkey, __slot
            ) VALUES (
                $1, $2, $3, $4, $5, $6, $7
            )"#,
        )
        .bind(&self.key)
        .bind(self.bump)
        .bind(self.mint)
        .bind(self.delegate)
        .bind(self.update_authority)
        .bind(self.account_metadata.pubkey)
        .bind(&self.account_metadata.slot)
        .execute(pool)
        .await
        .map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
        Ok(())
    }
}

#[async_trait::async_trait]
impl carbon_core::postgres::operations::Upsert for MetadataDelegateRecordRow {
    async fn upsert(&self, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
        sqlx::query(
            r#"INSERT INTO metadata_delegate_record_account (
                "key",
                "bump",
                "mint",
                "delegate",
                "update_authority",
                __pubkey, __slot
            ) VALUES (
                $1, $2, $3, $4, $5, $6, $7
            ) ON CONFLICT (
                __pubkey
            ) DO UPDATE SET
                "key" = EXCLUDED."key",
                "bump" = EXCLUDED."bump",
                "mint" = EXCLUDED."mint",
                "delegate" = EXCLUDED."delegate",
                "update_authority" = EXCLUDED."update_authority",
                __slot = EXCLUDED.__slot
            "#,
        )
        .bind(&self.key)
        .bind(self.bump)
        .bind(self.mint)
        .bind(self.delegate)
        .bind(self.update_authority)
        .bind(self.account_metadata.pubkey)
        .bind(&self.account_metadata.slot)
        .execute(pool)
        .await
        .map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
        Ok(())
    }
}

#[async_trait::async_trait]
impl carbon_core::postgres::operations::Delete for MetadataDelegateRecordRow {
    type Key = carbon_core::postgres::primitives::Pubkey;

    async fn delete(key: Self::Key, pool: &sqlx::PgPool) -> carbon_core::error::CarbonResult<()> {
        sqlx::query(
            r#"DELETE FROM metadata_delegate_record_account WHERE
                __pubkey = $1
            "#,
        )
        .bind(key)
        .execute(pool)
        .await
        .map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
        Ok(())
    }
}

#[async_trait::async_trait]
impl carbon_core::postgres::operations::Lookup for MetadataDelegateRecordRow {
    type Key = carbon_core::postgres::primitives::Pubkey;

    async fn lookup(
        key: Self::Key,
        pool: &sqlx::PgPool,
    ) -> carbon_core::error::CarbonResult<Option<Self>> {
        let row = sqlx::query_as(
            r#"SELECT * FROM metadata_delegate_record_account WHERE
                __pubkey = $1
            "#,
        )
        .bind(key)
        .fetch_optional(pool)
        .await
        .map_err(|e| carbon_core::error::Error::Custom(e.to_string()))?;
        Ok(row)
    }
}

pub struct MetadataDelegateRecordMigrationOperation;

#[async_trait::async_trait]
impl sqlx_migrator::Operation<sqlx::Postgres> for MetadataDelegateRecordMigrationOperation {
    async fn up(
        &self,
        connection: &mut sqlx::PgConnection,
    ) -> Result<(), sqlx_migrator::error::Error> {
        sqlx::query(
            r#"CREATE TABLE IF NOT EXISTS metadata_delegate_record_account (
                -- Account data
                "key" JSONB NOT NULL,
                "bump" INT2 NOT NULL,
                "mint" BYTEA NOT NULL,
                "delegate" BYTEA NOT NULL,
                "update_authority" BYTEA NOT NULL,
                -- Account metadata
                __pubkey BYTEA NOT NULL,
                __slot NUMERIC(20),
                PRIMARY KEY (__pubkey)
            )"#,
        )
        .execute(connection)
        .await?;
        Ok(())
    }

    async fn down(
        &self,
        connection: &mut sqlx::PgConnection,
    ) -> Result<(), sqlx_migrator::error::Error> {
        sqlx::query(r#"DROP TABLE IF EXISTS metadata_delegate_record_account"#)
            .execute(connection)
            .await?;
        Ok(())
    }
}