Add calendar-backend adapter
[cinaest] / src / plugins / imdb-plugin.vala
index 008f001..fb0c32a 100644 (file)
@@ -90,30 +90,53 @@ class IMDbPlugin : Plugin {
                return sources;
        }
 
-       public override List<MovieAction> get_actions (Movie movie) {
+       public override List<MovieAction> get_actions (Movie movie, Gtk.Window window) {
                List<MovieAction> list = null;
 
+               if (movie.year > 0)
+                       list.append (new MovieAction (_("IMDb page"), on_visit_imdb, movie, window));
+               else
+                       list.append (new MovieAction (_("Lookup on IMDb"), on_visit_imdb, movie, window));
+
                return list;
        }
 
+       private void on_visit_imdb (Movie movie, Gtk.Window window) {
+               var url = "http://www.imdb.com/find?s=tt&q=" + movie.title.replace(" ", "+");
+               if (movie.year > 0)
+                       url += "+(%d)".printf (movie.year);
+
+               var status = osso_context.rpc_run_with_defaults ("osso_browser", "open_new_window", null, 's', url, 'b', false);
+               if (status != Osso.Status.OK) {
+                       var banner = (Banner) Hildon.Banner.show_information_with_markup (window, null, "Failed to open browser.");
+                       banner.set_timeout (1500);
+               }
+       }
+
        public override void settings_dialog (Gtk.Window window) {
                var dialog = new Gtk.Dialog ();
                dialog.set_transient_for (window);
                dialog.set_title (_("IMDb plugin settings"));
 
+               string updated;
                string filename = Path.build_filename (Environment.get_user_cache_dir(),
                                                       "cinaest", "imdb.db", null);
                var file = File.new_for_path (filename);
-               var info = file.query_info (FILE_ATTRIBUTE_TIME_MODIFIED, FileQueryInfoFlags.NONE, null);
-               TimeVal tv;
-               info.get_modification_time (out tv);
-
-               var date = Date ();
-               date.set_time_val (tv);
-               char[] s = new char[64];
-               date.strftime (s, "%x");
+               try {
+                       var info = file.query_info (FILE_ATTRIBUTE_TIME_MODIFIED, FileQueryInfoFlags.NONE, null);
+                       TimeVal tv;
+                       info.get_modification_time (out tv);
+
+                       var date = Date ();
+                       date.set_time_val (tv);
+                       char[] s = new char[64];
+                       date.strftime (s, "%x");
+                       updated = (string) s;
+               } catch (Error e) {
+                       updated = _("unknown");
+               }
 
-               var download = new Hildon.Button.with_text (SizeType.FINGER_HEIGHT, ButtonArrangement.VERTICAL, _("Download"), "Last update: " + (string) s);
+               var download = new Hildon.Button.with_text (SizeType.FINGER_HEIGHT, ButtonArrangement.VERTICAL, _("Download"), _("Last update: ") + updated);
 
                VBox content = (VBox) dialog.get_content_area ();
                content.pack_start (download, true, true, 0);
@@ -136,7 +159,7 @@ class IMDBSource : MovieSource {
        MovieSource.ReceiveMovieFunction _get_callback;
        public override async void get_movies (MovieFilter filter, MovieSource.ReceiveMovieFunction callback, int limit, Cancellable? cancellable) {
                // IMDb has too many movies
-               if (filter.title == "")
+               if (filter.title == "" && filter.year_min == 0 && filter.year_max == 0 && filter.genres.field == 0 && filter.rating_min == 0)
                        return;
                var sqlite = new IMDbSqlite (Path.build_filename (Environment.get_user_cache_dir (),
                                             "cinaest", "imdb.db", null));
@@ -159,6 +182,9 @@ class IMDBSource : MovieSource {
        public override void add_movie (Movie movie) {
        }
 
+       public override void delete_movie (Movie movie) {
+       }
+
        public override unowned string get_name () {
                return "IMDb";
        }
@@ -166,6 +192,10 @@ class IMDBSource : MovieSource {
        public override unowned string get_description () {
                return "Movies on IMDb";
        }
+
+       public override bool get_editable () {
+               return false;
+       }
 }
 
 [ModuleInit]