Skip to content

Commit 53dd7a8

Browse files
Merge pull request #14 from LukasKalbertodt/dev
Version 0.2.0
2 parents 878a112 + 7d5efae commit 53dd7a8

File tree

5 files changed

+339
-76
lines changed

5 files changed

+339
-76
lines changed

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "telegram-bot"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
authors = ["Lukas Kalbertodt <[email protected]>"]
55

66
description = "A library for creating Telegram bots."
@@ -17,3 +17,4 @@ exclude = ["deploy.sh"]
1717
[dependencies]
1818
hyper = "*"
1919
rustc-serialize = "*"
20+
url = "*"

examples/features.rs

+11-18
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,21 @@ extern crate rustc_serialize;
22
extern crate telegram_bot;
33

44
use telegram_bot::*;
5-
use std::env;
65
use rustc_serialize::json;
76

87
fn main() {
9-
// Fetch environment variable with bot token
10-
let token = match env::var("TELEGRAM_BOT_TOKEN") {
11-
Ok(tok) => tok,
12-
Err(e) =>
13-
panic!("Environment variable 'TELEGRAM_BOT_TOKEN' missing! {}", e),
14-
};
15-
168
// Create bot, test simple API call and print bot information
17-
let mut bot = Bot::new(token);
18-
println!("getMe: {:?}", bot.get_me());
9+
let mut api = Api::from_env("TELEGRAM_BOT_TOKEN").unwrap();
10+
println!("getMe: {:?}", api.get_me());
11+
let mut listener = api.listener(ListeningMethod::LongPoll(None));
1912

2013
// Just to demonstrate this method. Sadly, a server listening for updates
2114
// is not (yet!) integrated in this library.
22-
println!("Webhook: {:?}", bot.set_webhook(Some("https://example.com")));
23-
println!("Webhook: {:?}", bot.set_webhook::<&str>(None));
15+
println!("Webhook: {:?}", api.set_webhook(Some("https://example.com")));
16+
println!("Webhook: {:?}", api.set_webhook::<&str>(None));
2417

2518
// Fetch new updates via long poll method
26-
let res = bot.long_poll(None, |bot, u| {
19+
let res = listener.listen(|u| {
2720
// If the received update contains a message...
2821
if let Some(m) = u.message {
2922
let name = m.from.first_name + &*m.from.last_name
@@ -45,7 +38,7 @@ fn main() {
4538
};
4639

4740
// Reply with custom Keyboard
48-
try!(bot.send_message(
41+
try!(api.send_message(
4942
chat_id,
5043
format!("Hi, {}!", name),
5144
None, None, Some(keyboard.into())));
@@ -58,7 +51,7 @@ fn main() {
5851

5952
// Send chat action (this is useless here, it's just for
6053
// demonstration purposes)
61-
try!(bot.send_chat_action(chat_id, ChatAction::Typing));
54+
try!(api.send_chat_action(chat_id, ChatAction::Typing));
6255

6356
// Calculate and send the location on the other side of the
6457
// earth.
@@ -69,21 +62,21 @@ fn main() {
6962
loc.longitude + 180.0
7063
};
7164

72-
try!(bot.send_location(chat_id, lat, lng, None, None));
65+
try!(api.send_location(chat_id, lat, lng, None, None));
7366
},
7467
MessageType::Contact(c) => {
7568
// Print event
7669
println!("<{}> send a contact: {}", name,
7770
json::encode(&c).unwrap());
7871

7972
// Just forward the contact back to the sender...
80-
try!(bot.forward_message(chat_id, chat_id, m.message_id));
73+
try!(api.forward_message(chat_id, chat_id, m.message_id));
8174
}
8275
_ => {}
8376
}
8477

8578
}
86-
Ok(())
79+
Ok(ListeningAction::Continue)
8780
});
8881

8982
if let Err(e) = res {

examples/simple.rs

+7-14
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,15 @@
11
extern crate telegram_bot;
22

33
use telegram_bot::*;
4-
use std::env;
54

65
fn main() {
7-
// Fetch environment variable with bot token
8-
let token = match env::var("TELEGRAM_BOT_TOKEN") {
9-
Ok(tok) => tok,
10-
Err(e) =>
11-
panic!("Environment variable 'TELEGRAM_BOT_TOKEN' missing! {}", e),
12-
};
13-
146
// Create bot, test simple API call and print bot information
15-
let mut bot = Bot::new(token);
16-
println!("getMe: {:?}", bot.get_me());
7+
let mut api = Api::from_env("TELEGRAM_BOT_TOKEN").unwrap();
8+
println!("getMe: {:?}", api.get_me());
9+
let mut listener = api.listener(ListeningMethod::LongPoll(None));
1710

1811
// Fetch new updates via long poll method
19-
let res = bot.long_poll(None, |bot, u| {
12+
let res = listener.listen(|u| {
2013
// If the received update contains a message...
2114
if let Some(m) = u.message {
2215
let name = m.from.first_name;
@@ -28,11 +21,11 @@ fn main() {
2821
println!("<{}> {}", name, t);
2922

3023
if t == "/exit" {
31-
return Err(Error::UserInterrupt);
24+
return Ok(ListeningAction::Stop);
3225
}
3326

3427
// Answer message with "Hi"
35-
try!(bot.send_message(
28+
try!(api.send_message(
3629
m.chat.id(),
3730
format!("Hi, {}! You just wrote '{}'", name, t),
3831
None, None, None));
@@ -42,7 +35,7 @@ fn main() {
4235
}
4336

4437
// If none of the "try!" statements returned an error: It's Ok!
45-
Ok(())
38+
Ok(ListeningAction::Continue)
4639
});
4740

4841
// When the method `long_poll` returns, its due to an error. Check it here.

src/error.rs

+17-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
use std::fmt;
22
use rustc_serialize::json;
3+
use std::env;
4+
35
/// Telegram-Bot Result
46
pub type Result<T> = ::std::result::Result<T, Error>;
57

@@ -14,9 +16,15 @@ pub enum Error {
1416
JsonDecode(json::DecoderError),
1517
/// Error while encoding JSON data
1618
JsonEncode(json::EncoderError),
19+
/// Telegram server reponsded with an error + description
1720
Api(String),
21+
/// This should never happen (it possibly could if the telegram servers
22+
/// would respond with garbage)
1823
InvalidState(String),
19-
UserInterrupt,
24+
/// Occurs, if the given bot token would not result in a valid request URL.
25+
InvalidTokenFormat(::url::ParseError),
26+
/// The given environment variable could not be fetched.
27+
InvalidEnvironmentVar(env::VarError),
2028
}
2129

2230
impl ::std::error::Error for Error {
@@ -26,9 +34,10 @@ impl ::std::error::Error for Error {
2634
Error::Io(ref e) => e.description(),
2735
Error::JsonDecode(ref e) => e.description(),
2836
Error::JsonEncode(ref e) => e.description(),
29-
Error::Api(ref s) => &*s,
30-
Error::InvalidState(ref s) => &*s,
31-
Error::UserInterrupt => "user interrupt",
37+
Error::Api(ref s) => &s,
38+
Error::InvalidState(ref s) => &s,
39+
Error::InvalidTokenFormat(ref e) => e.description(),
40+
Error::InvalidEnvironmentVar(ref e) => e.description(),
3241
}
3342
}
3443
}
@@ -42,7 +51,8 @@ impl fmt::Display for Error {
4251
Error::JsonEncode(ref e) => e.fmt(f),
4352
Error::Api(ref s) => s.fmt(f),
4453
Error::InvalidState(ref s) => s.fmt(f),
45-
Error::UserInterrupt => "user interrupt".fmt(f),
54+
Error::InvalidTokenFormat(ref e) => e.fmt(f),
55+
Error::InvalidEnvironmentVar(ref e) => e.fmt(f),
4656
}
4757
}
4858
}
@@ -61,3 +71,5 @@ from_impl!(::hyper::error::Error, Http);
6171
from_impl!(::std::io::Error, Io);
6272
from_impl!(json::DecoderError, JsonDecode);
6373
from_impl!(json::EncoderError, JsonEncode);
74+
from_impl!(::url::ParseError, InvalidTokenFormat);
75+
from_impl!(env::VarError, InvalidEnvironmentVar);

0 commit comments

Comments
 (0)