rusaint 0.16.2

Easy-to-use SSU u-saint client
Documentation
use crate::RusaintError;
use crate::application::scholarships::model::Scholarship;
use crate::client::{USaintApplication, USaintClient};
use wdpe::body::Body;
use wdpe::element::parser::ElementParser;

/// [장학금수혜내역조회](https://ecc.ssu.ac.kr/sap/bc/webdynpro/SAP/ZCMW7530n)
pub struct ScholarshipsApplication {
    client: USaintClient,
}

impl USaintApplication for ScholarshipsApplication {
    const APP_NAME: &'static str = "ZCMW7530n";

    fn from_client(client: USaintClient) -> Result<Self, RusaintError> {
        if client.name() != Self::APP_NAME {
            Err(RusaintError::InvalidClientError)
        } else {
            Ok(Self { client })
        }
    }
}

impl ScholarshipsApplication {
    fn body(&self) -> &Body {
        self.client.body()
    }

    /// 장학금 수혜 내역을 가져옵니다.
    pub async fn scholarships(&mut self) -> Result<Vec<Scholarship>, RusaintError> {
        let parser = ElementParser::new(self.body());
        Scholarship::with_parser(&parser)
    }

    /// 페이지를 새로고침합니다.
    pub async fn reload(&mut self) -> Result<(), RusaintError> {
        self.client.reload().await?;
        Ok(())
    }
}

/// [`ScholarshipsApplication`] 애플리케이션에 사용되는 데이터
pub mod model;