From 0bd9b3a86a71b21a9acd215c59e0e8e9108704d5 Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Sun, 28 Oct 2012 13:25:07 +0100 Subject: [PATCH] Implement Google OAUTH2 authentication for GOA accounts GOA recently switched to OAuth2 for Google accounts, so we can use its credentials to access Google Talk without a password. https://bugzilla.gnome.org/show_bug.cgi?id=652546 --- libempathy/empathy-goa-auth-handler.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/libempathy/empathy-goa-auth-handler.c b/libempathy/empathy-goa-auth-handler.c index ddcde177..49fc9627 100644 --- a/libempathy/empathy-goa-auth-handler.c +++ b/libempathy/empathy-goa-auth-handler.c @@ -182,6 +182,12 @@ got_oauth2_access_token_cb (GObject *source, auth_cb, data); break; + case EMPATHY_SASL_MECHANISM_GOOGLE: + empathy_sasl_auth_google_async (data->channel, + goa_account_get_identity (goa_object_peek_account (data->goa_object)), + access_token, auth_cb, data); + break; + default: g_assert_not_reached (); } @@ -351,5 +357,6 @@ empathy_goa_auth_handler_supports (EmpathyGoaAuthHandler *self, mech = empathy_sasl_channel_select_mechanism (channel); return mech == EMPATHY_SASL_MECHANISM_FACEBOOK || - mech == EMPATHY_SASL_MECHANISM_WLM; + mech == EMPATHY_SASL_MECHANISM_WLM || + mech == EMPATHY_SASL_MECHANISM_GOOGLE; } -- 2.39.2