~ps-jenkins/account-plugins/trusty-proposed

« back to all changes in this revision

Viewing changes to src/facebook.vala

  • Committer: Alberto Mardegan
  • Date: 2012-03-14 11:55:04 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: alberto.mardegan@canonical.com-20120314115504-zxziwnxkivb4rk8c
Add Facebook and Google plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 Canonical, Inc
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
 
17
 * USA.
 
18
 *
 
19
 * Authors:
 
20
 *      Alberto Mardegan <alberto.mardegan@canonical.com>
 
21
 */
 
22
 
 
23
public class FacebookPlugin : Ap.OAuthPlugin {
 
24
    public FacebookPlugin (Ag.Account account) {
 
25
        Object (account: account);
 
26
    }
 
27
 
 
28
    construct
 
29
    {
 
30
        var oauth_params = new HashTable<string, GLib.Value?> (str_hash, null);
 
31
        oauth_params.insert ("Host", "www.facebook.com");
 
32
        oauth_params.insert ("AuthPath", "/dialog/oauth");
 
33
        oauth_params.insert ("RedirectUri",
 
34
                             "https://www.facebook.com/connect/login_success.html");
 
35
        oauth_params.insert ("ClientId", "213156715390803");
 
36
        oauth_params.insert ("Display", "popup");
 
37
        set_oauth_parameters (oauth_params);
 
38
    }
 
39
}
 
40
 
 
41
public GLib.Type ap_module_get_object_type ()
 
42
{
 
43
    return typeof (FacebookPlugin);
 
44
}