This repository has been archived by the owner on Feb 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
app.py
executable file
·105 lines (83 loc) · 3.86 KB
/
app.py
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
#!/usr/bin/env python
from __future__ import with_statement
"""
Simple, partial test of client. Obtains an access token for the given consumer
credentials. The authorized application will appear on this page:
http://www.meetup.com/account/oauth_apps/
"""
import ConfigParser
import meetup_api_client as mac
from meetup_api_client import *
from optparse import OptionParser
import webbrowser
import sys
def config_client(config_name=None):
return get_client(get_config(config_name)[1])
def get_config(name=None):
name = name or 'app.cfg'
config = ConfigParser.ConfigParser()
config.optionxform = str
config.read(name)
if config.has_section('internal'):
# you probably don't need to worry about this!
mac.__dict__.update(config.items('internal'))
return name, config
def get_client(config):
consumer_key, consumer_secret = get_token(config, 'consumer')
if config.has_section('access'):
access_key, access_secret = get_token(config, 'access')
return mac.MeetupOAuth(consumer_key, consumer_secret, access_key=access_key, access_secret=access_secret)
else:
return mac.MeetupOAuth(consumer_key, consumer_secret)
def get_token(config, name): return config.get(name, 'key'), config.get(name, 'secret')
def set_token(config, name, key, secret):
config.add_section(name)
config.set(name, 'key', key)
config.set(name, 'secret', secret)
if __name__ == '__main__':
option = OptionParser('%prog [options] [consumer-key] [consumer-secret]')
option.add_option('--config', dest='config',
help='read & write settings to CONFIG, default is app.cfg')
option.add_option('--verifier', dest='verifier',
help='oauth_callback for request-token request, defaults to oob')
option.add_option('--callback', dest='callback', default='oob',
help='oauth_verifier, required to gain access token')
option.add_option('--authenticate', dest='authenticate', action='store_true',
help='pass in to use authentication end point')
(options, args) = option.parse_args()
config_name, config = get_config(options.config)
if not config.has_section('consumer'):
if len(args) is 2:
consumer_key, consumer_secret = args
set_token(config, 'consumer', consumer_key, consumer_secret)
else: option.error('please pass in consumer-key and consumer-secret')
mucli = get_client(config)
def access_granted():
print """\
access-key: %s
accses-secret: %s
Congratulations, you've got an access token! Try it out in an interpreter.
""" % get_token(config, 'access')
if config.has_section('access'):
access_granted()
else:
if config.has_section('request'):
if not options.verifier:
sys.exit("To complete the process you must supply a --verifier")
request_key, request_secret = get_token(config, 'request')
oauth_session = mucli.new_session(request_key=request_key, request_secret=request_secret)
print " member_id: %s" % oauth_session.fetch_access_token(options.verifier)
set_token(config, 'access', oauth_session.access_token.key, oauth_session.access_token.secret)
access_granted()
else:
oauth_session = mucli.new_session()
oauth_session.fetch_request_token(callback=options.callback)
set_token(config, 'request', oauth_session.request_token.key, oauth_session.request_token.secret)
if (options.authenticate):
url = oauth_session.get_authenticate_url()
else:
url = oauth_session.get_authorize_url()
print "Opening a browser on the authorization page: %s" % url
webbrowser.open(url)
with open(config_name, 'wb') as c:
config.write(c)