@@ -2,28 +2,21 @@ extern crate rustc_serialize;
2
2
extern crate telegram_bot;
3
3
4
4
use telegram_bot:: * ;
5
- use std:: env;
6
5
use rustc_serialize:: json;
7
6
8
7
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
-
16
8
// 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 ) ) ;
19
12
20
13
// Just to demonstrate this method. Sadly, a server listening for updates
21
14
// 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 ) ) ;
24
17
25
18
// Fetch new updates via long poll method
26
- let res = bot . long_poll ( None , |bot , u| {
19
+ let res = listener . listen ( | u| {
27
20
// If the received update contains a message...
28
21
if let Some ( m) = u. message {
29
22
let name = m. from . first_name + & * m. from . last_name
@@ -45,7 +38,7 @@ fn main() {
45
38
} ;
46
39
47
40
// Reply with custom Keyboard
48
- try!( bot . send_message (
41
+ try!( api . send_message (
49
42
chat_id,
50
43
format ! ( "Hi, {}!" , name) ,
51
44
None , None , Some ( keyboard. into ( ) ) ) ) ;
@@ -58,7 +51,7 @@ fn main() {
58
51
59
52
// Send chat action (this is useless here, it's just for
60
53
// demonstration purposes)
61
- try!( bot . send_chat_action ( chat_id, ChatAction :: Typing ) ) ;
54
+ try!( api . send_chat_action ( chat_id, ChatAction :: Typing ) ) ;
62
55
63
56
// Calculate and send the location on the other side of the
64
57
// earth.
@@ -69,21 +62,21 @@ fn main() {
69
62
loc. longitude + 180.0
70
63
} ;
71
64
72
- try!( bot . send_location ( chat_id, lat, lng, None , None ) ) ;
65
+ try!( api . send_location ( chat_id, lat, lng, None , None ) ) ;
73
66
} ,
74
67
MessageType :: Contact ( c) => {
75
68
// Print event
76
69
println ! ( "<{}> send a contact: {}" , name,
77
70
json:: encode( & c) . unwrap( ) ) ;
78
71
79
72
// 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 ) ) ;
81
74
}
82
75
_ => { }
83
76
}
84
77
85
78
}
86
- Ok ( ( ) )
79
+ Ok ( ListeningAction :: Continue )
87
80
} ) ;
88
81
89
82
if let Err ( e) = res {
0 commit comments