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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
//! This crate enables you to create your own SpaceAPI server endpoint using
//! Rust. In the end you'll get a single binary that you can run on your
//! server.
//!
//!
//! ## Requirements
//!
//! On the build machine:
//!
//! - Rust and Cargo ([https://rustup.rs/](https://rustup.rs/))
//!
//! On the server:
//!
//! - Redis
//!
//! The Redis instance will be used to store dynamic data like sensor values,
//! as well as keys for dynamic data update authentication.
//!
//!
//! ## Getting Started
//!
//! Create a new Rust project:
//!
//! ```text
//! cargo new --bin mystatus
//! ```
//!
//! Add the `spaceapi-server` dependency to `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! spaceapi-server = "0.4"
//! ```
//!
//! Create a `main.rs`:
//!
//! ```no_run
//! use spaceapi_server::api::{Contact, Location, StatusBuilder, IssueReportChannel};
//! use spaceapi_server::SpaceapiServerBuilder;
//!
//! fn main() {
//!     // Create new minimal Status instance
//!     let status = StatusBuilder::new("coredump")
//!         .logo("https://www.coredump.ch/logo.png")
//!         .url("https://www.coredump.ch/")
//!         .location(Location {
//!             address: Some("Spinnereistrasse 2, 8640 Rapperswil, Switzerland".into()),
//!             lat: 47.22936,
//!             lon: 8.82949,
//!         })
//!         .contact(Contact {
//!             irc: Some("irc://freenode.net/#coredump".into()),
//!             twitter: Some("@coredump_ch".into()),
//!             ..Default::default()
//!         })
//!         .add_issue_report_channel(IssueReportChannel::Email)
//!         .add_issue_report_channel(IssueReportChannel::Twitter)
//!         .build()
//!         .expect("Creating status failed");
//!
//!     // Set up server
//!     let server = SpaceapiServerBuilder::new(status)
//!         .redis_connection_info("redis://127.0.0.1/")
//!         .build()
//!         .unwrap();
//!
//!     // Serve!
//!     let _ = server.serve("127.0.0.1:8000");
//! }
//! ```
//!
//! Now you can build and run your binary with `cargo run`. Running this code
//! starts a HTTP server instance on port 8000. You can also override the port
//! by setting the `PORT` environment variable.
//!
//! See the
//! [`examples/`](https://github.com/spaceapi-community/spaceapi-server-rs/tree/master/examples)
//! directory for some other examples.
//!
//!
//! ## Sensors
//!
//! ### Registering Sensors
//!
//! This crate supports updating and retrieving dynamic sensor values (e.g.
//! temperature or people present). For this, first register a sensor with a
//! sensor template:
//!
//! ```rust
//! use spaceapi_server::SpaceapiServerBuilder;
//! use spaceapi_server::api::IssueReportChannel;
//! use spaceapi_server::api::sensors::{PeopleNowPresentSensorTemplate, TemperatureSensorTemplate};
//!
//! # use spaceapi_server::api;
//! # let status = api::StatusBuilder::new("aa")
//! #     .logo("https://example.com/logo.png")
//! #     .url("https://example.com/")
//! #     .location(api::Location {
//! #         address: Some("addr".into()),
//! #         lat: 47.0,
//! #         lon: 8.0,
//! #     })
//! #     .contact(api::Contact {
//! #         twitter: Some("@example".into()),
//! #         ..Default::default()
//! #     })
//! #     .add_issue_report_channel(IssueReportChannel::Twitter)
//! #     .build()
//! #     .expect("Creating status failed");
//! #
//! let server = SpaceapiServerBuilder::new(status)
//!     .redis_connection_info("redis://127.0.0.1/")
//!     .add_sensor(PeopleNowPresentSensorTemplate {
//!         location: Some("Hackerspace".into()),
//!         name: None,
//!         description: None,
//!         names: None,
//!     }, "people_now_present".into())
//!     .add_sensor(TemperatureSensorTemplate {
//!         unit: "°C".into(),
//!         location: "Room 1".into(),
//!         name: None,
//!         description: None,
//!     }, "temp_room1".into())
//!     .add_sensor(TemperatureSensorTemplate {
//!         unit: "°C".into(),
//!         location: "Room 2".into(),
//!         name: None,
//!         description: None,
//!     }, "temp_room2".into())
//!     .build()
//! .expect("Could not initialize server");
//! ```
//!
//! (You can find the full example at
//! [`examples/with_sensors.rs`](https://github.com/spaceapi-community/spaceapi-server-rs/blob/master/examples/with_sensors.rs).)
//!
//! This will register three sensors: One "people now present" sensor and two
//! "temperature" sensors.
//!
//! ### Updating Sensors via HTTP
//!
//! If you start the server like that, the JSON output will not yet contain any
//! sensor data. To update a sensor value, send a HTTP POST request to the
//! `/sensors/<sensor-id>/` endpoint with the `value` parameter:
//!
//! ```text
//! curl -v -X PUT -d value=42 http://127.0.0.1:8000/sensors/people_now_present/
//! curl -v -X PUT -d value=13.37 http://127.0.0.1:8000/sensors/temp_room1/
//! ```
//!
//! Now the server response will contain the following key:
//!
//! ```json
//! "sensors": {
//!   "people_now_present": [
//!     {
//!       "location": "Hackerspace",
//!       "value": 42
//!     }
//!   ],
//!   "temperature": [
//!     {
//!       "unit": "°C",
//!       "location": "Room 1",
//!       "value": 13.37
//!     }
//!   ]
//! },
//! ```
//!
//! ### Updating Sensors via Redis
//!
//! Alternatively you can modify the values in Redis directly. You can access
//! the database with the `redis-cli` tool:
//!
//! ```text
//! % redis-cli
//! 127.0.0.1:6379> SET people_now_present 1
//! OK
//! 127.0.0.1:6379> GET people_now_present
//! "1"
//! 127.0.0.1:6379> KEYS *
//! 1) "people_now_present"
//! 2) "temp_room1"
//! ```
//!
//! The keys need to match the IDs you used when registering the sensor.

#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/spaceapi-server")]

pub use spaceapi as api;

pub use iron::error::HttpResult;
pub use iron::Listening;

mod errors;
pub mod modifiers;
mod sensors;
mod server;
mod types;

pub use crate::errors::SpaceapiServerError;
pub use crate::server::SpaceapiServer;
pub use crate::server::SpaceapiServerBuilder;

/// Return own crate version. Used in API responses.
pub fn get_version() -> &'static str {
    env!("CARGO_PKG_VERSION")
}

#[cfg(test)]
mod test {
    use super::get_version;

    #[test]
    fn test_get_version() {
        let version = get_version();
        assert_eq!(3, version.split('.').count());
    }
}