From 3253d99365813f2d2ffd05e10cbb8c11f53d746e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 22 Mar 2017 06:39:17 +0100 Subject: New upstream version 0.26.0 --- .../shotwell/ShotwellAuthenticatorFactory.vala | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 plugins/authenticator/shotwell/ShotwellAuthenticatorFactory.vala (limited to 'plugins/authenticator/shotwell/ShotwellAuthenticatorFactory.vala') diff --git a/plugins/authenticator/shotwell/ShotwellAuthenticatorFactory.vala b/plugins/authenticator/shotwell/ShotwellAuthenticatorFactory.vala new file mode 100644 index 0000000..17980e6 --- /dev/null +++ b/plugins/authenticator/shotwell/ShotwellAuthenticatorFactory.vala @@ -0,0 +1,40 @@ +namespace Publishing.Authenticator { + public class Factory : Spit.Publishing.AuthenticatorFactory, Object { + private static Factory instance = null; + + public static Factory get_instance() { + if (Factory.instance == null) { + Factory.instance = new Factory(); + } + + return Factory.instance; + } + + public Gee.List get_available_authenticators() { + var list = new Gee.ArrayList(); + list.add("flickr"); + list.add("facebook"); + list.add("picasa"); + list.add("youtube"); + + return list; + } + + public Spit.Publishing.Authenticator? create(string provider, + Spit.Publishing.PluginHost host) { + switch (provider) { + case "flickr": + return new Shotwell.Flickr.Flickr(host); + case "facebook": + return new Shotwell.Facebook.Facebook(host); + case "picasa": + return new Shotwell.Google.Google("https://picasaweb.google.com/data/", _("You are not currently logged into Picasa Web Albums.\n\nClick Log in to log into Picasa Web Albums in your Web browser. You will have to authorize Shotwell Connect to link to your Picasa Web Albums account."), host); + + case "youtube": + return new Shotwell.Google.Google("https://gdata.youtube.com/", _("You are not currently logged into YouTube.\n\nYou must have already signed up for a Google account and set it up for use with YouTube to continue. You can set up most accounts by using your browser to log into the YouTube site at least once."), host); + default: + return null; + } + } + } +} -- cgit v1.2.3