|
4 | 4 | require 'googleauth/stores/redis_token_store'
|
5 | 5 | require 'ostruct'
|
6 | 6 |
|
7 |
| - |
8 | 7 | def auth(event:, context:)
|
9 |
| - user_id = 'default' |
10 |
| - scope = Google::Apis::CalendarV3::AUTH_CALENDAR_EVENTS |
11 |
| - client_id = Google::Auth::ClientId.new(ENV['GOOGLE_CLIENT_ID'], ENV['GOOGLE_CLIENT_SECRET']) |
12 |
| - token_store = Google::Auth::Stores::RedisTokenStore.new(redis: Redis.new) |
13 |
| - authorizer = Google::Auth::WebUserAuthorizer.new(client_id, scope, token_store, ENV['OAUTH_CALLBACK_URL']) |
14 |
| - credentials = authorizer.get_credentials(user_id) |
15 |
| - |
16 |
| - if credentials.nil? |
17 |
| - request = OpenStruct.new(session: {}) |
18 |
| - auth_url = authorizer.get_authorization_url(login_hint: user_id, request: request) |
19 |
| - return { |
20 |
| - statusCode: 303, |
21 |
| - headers: { |
22 |
| - location: auth_url |
23 |
| - } |
24 |
| - } |
25 |
| - end |
26 |
| - { status: 200, body: credentials } |
| 8 | + { statusCode: 200, body: { message: 'boo' }.to_json } |
27 | 9 | end
|
28 | 10 |
|
29 | 11 | def callback_handler(event:, context:)
|
30 |
| - user_id = 'default' |
31 |
| - oob_uri = 'urn:ietf:wg:oauth:2.0:oob' |
32 |
| - scope = Google::Apis::CalendarV3::AUTH_CALENDAR_EVENTS |
33 |
| - client_id = Google::Auth::ClientId.new(ENV['GOOGLE_CLIENT_ID'], ENV['GOOGLE_CLIENT_SECRET']) |
34 |
| - token_store = Google::Auth::Stores::RedisTokenStore.new(redis: Redis.new) |
35 |
| - authorizer = Google::Auth::UserAuthorizer.new(client_id, scope, token_store) |
36 |
| - credentials = authorizer.get_credentials(user_id) |
37 |
| - |
38 |
| - puts "Getting access tokens..." |
39 |
| - code = event['queryStringParameters']['code'] |
40 |
| - credentials = authorizer.get_and_store_credentials_from_code( |
41 |
| - user_id: user_id, code: code, base_url: oob_uri |
42 |
| - ) |
43 |
| - |
44 | 12 | {
|
45 | 13 | statusCode: 303,
|
46 | 14 | headers: {
|
47 |
| - location: "https://#{event['requestContext']['domainName']}/dev/authorize" |
| 15 | + location: "https://#{event.dig('requestContext','domainName')}/dev/authorize" |
48 | 16 | }
|
49 | 17 | }
|
50 | 18 | end
|
51 |
| - |
52 |
| -def createEvent(event:, context:) |
53 |
| - calendar = Google::Apis::CalendarV3::CalendarService.new |
54 |
| - calendar.authorization = authorize |
55 |
| - params = event['body'] |
56 |
| - new_event = Google::Apis::CalendarV3::Event.new(params) |
57 |
| - rese = calendar.insert_event('primary', new_event) |
58 |
| - { statusCode: 200, body: res } |
59 |
| -end |
0 commit comments