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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
//! The run module handles retrieving Runs. A Run maps directly to an uploaded splits file.
//!
//! [API Documentation](https://github.com/glacials/splits-io/blob/master/docs/api.md#run)

use crate::platform::{recv_bytes, Body};
use crate::{get_json, get_response, schema::Run, wrapper::ContainsRun, Client, Download, Error};
use http::{header::CONTENT_TYPE, Request};
use snafu::ResultExt;
use std::io::{self, Write};
use std::ops::Deref;
use url::Url;

/// Downloads the splits for a Run.
pub async fn download(client: &Client, id: &str) -> Result<impl Deref<Target = [u8]>, Error> {
    let mut url = Url::parse("https://splits.io/api/v4/runs").unwrap();
    url.path_segments_mut().unwrap().push(id);

    let response = get_response(
        client,
        Request::get(url.as_str())
            .header("Accept", "application/original-timer")
            .body(Body::empty())
            .unwrap(),
    )
    .await?;

    recv_bytes(response.into_body()).await.context(Download)
}

/// Gets a Run.
pub async fn get(client: &Client, id: &str, historic: bool) -> Result<Run, Error> {
    let mut url = Url::parse("https://splits.io/api/v4/runs").unwrap();
    url.path_segments_mut().unwrap().push(id);
    if historic {
        url.query_pairs_mut().append_pair("historic", "1");
    }

    let ContainsRun { run } = get_json(
        client,
        Request::get(url.as_str()).body(Body::empty()).unwrap(),
    )
    .await?;

    Ok(run)
}

#[derive(Debug, serde::Deserialize)]
struct UploadResponse {
    id: Box<str>,
    claim_token: Box<str>,
    presigned_request: PresignedRequest,
}

#[derive(Debug, serde::Deserialize)]
struct PresignedRequest {
    uri: Box<str>,
    fields: PresignedRequestFields,
}

#[derive(Debug, serde::Deserialize, serde::Serialize)]
struct PresignedRequestFields {
    key: Box<str>,
    policy: Box<str>,
    #[serde(rename = "x-amz-credential")]
    credential: Box<str>,
    #[serde(rename = "x-amz-algorithm")]
    algorithm: Box<str>,
    #[serde(rename = "x-amz-date")]
    date: Box<str>,
    #[serde(rename = "x-amz-signature")]
    signature: Box<str>,
}

/// A run that was uploaded to Splits.io.
#[derive(Debug)]
pub struct UploadedRun {
    /// The unique ID for identifying the run.
    pub id: Box<str>,
    /// The token that can be used by the user to claim the run as their own.
    pub claim_token: Box<str>,
}

/// Handles writing a run to the body of an upload request.
pub struct RunWriter(Vec<u8>);

impl Write for RunWriter {
    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
        Write::write(&mut self.0, buf)
    }
    fn flush(&mut self) -> io::Result<()> {
        Ok(())
    }
}

/// Uploads a run to Splits.io.
pub async fn upload(client: &Client, run: &[u8]) -> Result<UploadedRun, Error> {
    upload_lazy(client, |writer| writer.write_all(run)).await
}

/// Uploads a run to Splits.io by using a RunWriter in order to write the request body.
pub async fn upload_lazy<E: std::error::Error>(
    client: &Client,
    write_run: impl FnOnce(&mut RunWriter) -> Result<(), E>,
) -> Result<UploadedRun, Error> {
    let UploadResponse {
        id,
        claim_token,
        presigned_request: PresignedRequest { uri, fields },
    } = get_json(
        client,
        Request::post("https://splits.io/api/v4/runs")
            .body(Body::empty())
            .unwrap(),
    )
    .await?;
    // TODO: Unwrap

    let mut body = Vec::new();

    write_key_and_value(&mut body, "key", &fields.key);
    write_key_and_value(&mut body, "policy", &fields.policy);
    write_key_and_value(&mut body, "x-amz-credential", &fields.credential);
    write_key_and_value(&mut body, "x-amz-algorithm", &fields.algorithm);
    write_key_and_value(&mut body, "x-amz-date", &fields.date);
    write_key_and_value(&mut body, "x-amz-signature", &fields.signature);

    write!(
        &mut body,
        "------WebKitFormBoundarymfBzYhzpfnJqay4s\r\nContent-Disposition: form-data; name=\"file\"\r\n\r\n"
    )
    .unwrap();
    let mut writer = RunWriter(body);
    write_run(&mut writer).unwrap();

    let mut body = writer.0;
    write!(
        &mut body,
        "\r\n------WebKitFormBoundarymfBzYhzpfnJqay4s--\r\n"
    )
    .unwrap();

    get_response(
        client,
        Request::post(&*uri)
            .header(
                CONTENT_TYPE,
                "multipart/form-data; boundary=----WebKitFormBoundarymfBzYhzpfnJqay4s",
            )
            .body(Body::from(body))
            .unwrap(),
    )
    .await?;

    Ok(UploadedRun { id, claim_token })
}

fn write_key_and_value(w: &mut impl Write, key: &str, value: &str) {
    write!(
        w,
        "------WebKitFormBoundarymfBzYhzpfnJqay4s\r\nContent-Disposition: form-data; name=\"{}\"\r\n\r\n{}\r\n",
        key, value,
    )
    .unwrap()
}