1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
use anyhow::Result;

use crate::Client;

pub struct Logs {
    pub client: Client,
}

impl Logs {
    #[doc(hidden)]
    pub fn new(client: Client) -> Self {
        Logs { client }
    }

    /**
     * Fetch a list of events from your Okta organization system log.
     *
     * This function performs a `GET` to the `/api/v1/logs` endpoint.
     *
     * The Okta System Log API provides read access to your organization’s system log. This API provides more functionality than the Events API
     *
     * **Parameters:**
     *
     * * `since: chrono::DateTime<chrono::Utc>`
     * * `until: chrono::DateTime<chrono::Utc>`
     * * `filter: &str`
     * * `q: &str`
     * * `limit: i64`
     * * `sort_order: &str`
     * * `after: &str`
     */
    pub async fn get_page(
        &self,
        since: Option<chrono::DateTime<chrono::Utc>>,
        until: Option<chrono::DateTime<chrono::Utc>>,
        filter: &str,
        q: &str,
        limit: i64,
        sort_order: &str,
        after: &str,
    ) -> Result<Vec<crate::types::LogEvent>> {
        let mut query_args: Vec<(String, String)> = Default::default();
        if !after.is_empty() {
            query_args.push(("after".to_string(), after.to_string()));
        }
        if !filter.is_empty() {
            query_args.push(("filter".to_string(), filter.to_string()));
        }
        if limit > 0 {
            query_args.push(("limit".to_string(), limit.to_string()));
        }
        if !q.is_empty() {
            query_args.push(("q".to_string(), q.to_string()));
        }
        if let Some(date) = since {
            query_args.push(("since".to_string(), date.to_rfc3339()));
        }
        if !sort_order.is_empty() {
            query_args.push(("sortOrder".to_string(), sort_order.to_string()));
        }
        if let Some(date) = until {
            query_args.push(("until".to_string(), date.to_rfc3339()));
        }
        let query_ = serde_urlencoded::to_string(&query_args).unwrap();
        let url = format!("/api/v1/logs?{}", query_);

        self.client.get(&url, None).await
    }

    /**
     * Fetch a list of events from your Okta organization system log.
     *
     * This function performs a `GET` to the `/api/v1/logs` endpoint.
     *
     * As opposed to `get`, this function returns all the pages of the request at once.
     *
     * The Okta System Log API provides read access to your organization’s system log. This API provides more functionality than the Events API
     */
    pub async fn get_all(
        &self,
        since: Option<chrono::DateTime<chrono::Utc>>,
        until: Option<chrono::DateTime<chrono::Utc>>,
        filter: &str,
        q: &str,
        sort_order: &str,
    ) -> Result<Vec<crate::types::LogEvent>> {
        let mut query_args: Vec<(String, String)> = Default::default();
        if !filter.is_empty() {
            query_args.push(("filter".to_string(), filter.to_string()));
        }
        if !q.is_empty() {
            query_args.push(("q".to_string(), q.to_string()));
        }
        if let Some(date) = since {
            query_args.push(("since".to_string(), date.to_rfc3339()));
        }
        if !sort_order.is_empty() {
            query_args.push(("sortOrder".to_string(), sort_order.to_string()));
        }
        if let Some(date) = until {
            query_args.push(("until".to_string(), date.to_rfc3339()));
        }
        let query_ = serde_urlencoded::to_string(&query_args).unwrap();
        let url = format!("/api/v1/logs?{}", query_);

        self.client.get_all_pages(&url, None).await
    }
}