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
//! Endpoint for serving GraphiQL source.

use finchers::endpoint::{ApplyContext, ApplyResult, Endpoint};
use finchers::error::Error;

use futures::{Future, Poll};

use bytes::Bytes;
use http::{header, Response};
use juniper;

/// Creates an endpoint which returns a generated GraphiQL interface.
pub fn graphiql_source(endpoint_url: impl AsRef<str>) -> GraphiQLSource {
    GraphiQLSource {
        source: juniper::http::graphiql::graphiql_source(endpoint_url.as_ref()).into(),
    }
}

#[allow(missing_docs)]
#[derive(Debug)]
pub struct GraphiQLSource {
    source: Bytes,
}

impl GraphiQLSource {
    /// Regenerate the GraphiQL interface with the specified endpoint URL.
    pub fn regenerate(&mut self, endpoint_url: impl AsRef<str>) {
        self.source = juniper::http::graphiql::graphiql_source(endpoint_url.as_ref()).into();
    }
}

impl<'a> Endpoint<'a> for GraphiQLSource {
    type Output = (Response<Bytes>,);
    type Future = GraphiQLFuture<'a>;

    fn apply(&'a self, _: &mut ApplyContext<'_>) -> ApplyResult<Self::Future> {
        Ok(GraphiQLFuture(&self.source))
    }
}

#[doc(hidden)]
#[derive(Debug)]
pub struct GraphiQLFuture<'a>(&'a Bytes);

impl<'a> Future for GraphiQLFuture<'a> {
    type Item = (Response<Bytes>,);
    type Error = Error;

    fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
        Ok((Response::builder()
            .header(header::CONTENT_TYPE, "text/html; charset=utf-8")
            .body(self.0.clone())
            .expect("should be a valid response"),)
            .into())
    }
}