alexandria-book-collection-manager 0.7.1 → 0.7.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. checksums.yaml +5 -5
  2. data/.github/dependabot.yml +9 -0
  3. data/.gitignore +5 -2
  4. data/.hound.yml +2 -0
  5. data/.rubocop.yml +113 -45
  6. data/.rubocop_todo.yml +82 -170
  7. data/.simplecov +5 -1
  8. data/.travis.yml +45 -0
  9. data/.yardopts +1 -1
  10. data/CHANGELOG.md +60 -0
  11. data/ChangeLog.0 +33 -35
  12. data/Gemfile +6 -5
  13. data/INSTALL.md +164 -0
  14. data/README.md +52 -42
  15. data/Rakefile +95 -109
  16. data/TODO.md +9 -1
  17. data/alexandria-book-collection-manager.gemspec +52 -45
  18. data/bin/alexandria +31 -53
  19. data/doc/AUTHORS +61 -0
  20. data/doc/BUGS +31 -0
  21. data/doc/FAQ +365 -0
  22. data/doc/HACKING +19 -0
  23. data/doc/NEWS +341 -0
  24. data/doc/alexandria.1 +120 -0
  25. data/doc/cuecat_support.rdoc +67 -0
  26. data/doc/dependency_decisions.yml +80 -0
  27. data/lib/alexandria.rb +29 -37
  28. data/lib/alexandria/about.rb +52 -51
  29. data/lib/alexandria/book_providers.rb +94 -101
  30. data/lib/alexandria/book_providers/adlibris.rb +45 -85
  31. data/lib/alexandria/book_providers/amazon_aws.rb +105 -113
  32. data/lib/alexandria/book_providers/amazon_ecs_util.rb +293 -324
  33. data/lib/alexandria/book_providers/barnes_and_noble.rb +54 -53
  34. data/lib/alexandria/book_providers/douban.rb +29 -51
  35. data/lib/alexandria/book_providers/proxis.rb +42 -59
  36. data/lib/alexandria/book_providers/pseudomarc.rb +79 -99
  37. data/lib/alexandria/book_providers/siciliano.rb +68 -70
  38. data/lib/alexandria/book_providers/thalia.rb +46 -45
  39. data/lib/alexandria/book_providers/web.rb +17 -33
  40. data/lib/alexandria/book_providers/worldcat.rb +74 -102
  41. data/lib/alexandria/book_providers/z3950.rb +170 -174
  42. data/lib/alexandria/config.rb +5 -3
  43. data/lib/alexandria/console.rb +10 -21
  44. data/lib/alexandria/default_preferences.rb +37 -0
  45. data/lib/alexandria/execution_queue.rb +17 -15
  46. data/lib/alexandria/export_format.rb +47 -0
  47. data/lib/alexandria/export_library.rb +188 -302
  48. data/lib/alexandria/import_library.rb +114 -155
  49. data/lib/alexandria/import_library_csv.rb +46 -96
  50. data/lib/alexandria/library_collection.rb +79 -0
  51. data/lib/alexandria/library_sort_order.rb +45 -0
  52. data/lib/alexandria/library_store.rb +233 -0
  53. data/lib/alexandria/logging.rb +15 -19
  54. data/lib/alexandria/models/book.rb +15 -20
  55. data/lib/alexandria/models/library.rb +81 -363
  56. data/lib/alexandria/net.rb +7 -6
  57. data/lib/alexandria/preferences.rb +73 -91
  58. data/lib/alexandria/scanners.rb +4 -2
  59. data/lib/alexandria/scanners/{cuecat.rb → cue_cat.rb} +24 -20
  60. data/lib/alexandria/scanners/keyboard.rb +10 -8
  61. data/lib/alexandria/smart_library.rb +135 -171
  62. data/lib/alexandria/ui.rb +17 -15
  63. data/lib/alexandria/ui/about_dialog.rb +49 -0
  64. data/lib/alexandria/ui/{dialogs/acquire_dialog.rb → acquire_dialog.rb} +129 -152
  65. data/lib/alexandria/ui/alert_dialog.rb +64 -0
  66. data/lib/alexandria/ui/bad_isbns_dialog.rb +41 -0
  67. data/lib/alexandria/ui/{dialogs/barcode_animation.rb → barcode_animation.rb} +18 -15
  68. data/lib/alexandria/ui/{dialogs/book_properties_dialog.rb → book_properties_dialog.rb} +44 -61
  69. data/lib/alexandria/ui/{dialogs/book_properties_dialog_base.rb → book_properties_dialog_base.rb} +84 -89
  70. data/lib/alexandria/ui/builder_base.rb +9 -27
  71. data/lib/alexandria/ui/callbacks.rb +188 -186
  72. data/lib/alexandria/ui/columns.rb +2 -0
  73. data/lib/alexandria/ui/completion_models.rb +12 -23
  74. data/lib/alexandria/ui/confirm_erase_dialog.rb +33 -0
  75. data/lib/alexandria/ui/conflict_while_copying_dialog.rb +34 -0
  76. data/lib/alexandria/ui/dndable.rb +10 -8
  77. data/lib/alexandria/ui/error_dialog.rb +25 -0
  78. data/lib/alexandria/ui/export_dialog.rb +139 -0
  79. data/lib/alexandria/ui/icons.rb +49 -65
  80. data/lib/alexandria/ui/iconview.rb +15 -13
  81. data/lib/alexandria/ui/iconview_tooltips.rb +43 -58
  82. data/lib/alexandria/ui/import_dialog.rb +157 -0
  83. data/lib/alexandria/ui/init.rb +23 -33
  84. data/lib/alexandria/ui/keep_bad_isbn_dialog.rb +36 -0
  85. data/lib/alexandria/ui/libraries_combo.rb +18 -14
  86. data/lib/alexandria/ui/listview.rb +77 -88
  87. data/lib/alexandria/ui/main_app.rb +26 -26
  88. data/lib/alexandria/ui/misc_dialogs.rb +10 -0
  89. data/lib/alexandria/ui/multi_drag_treeview.rb +30 -41
  90. data/lib/alexandria/ui/{dialogs/new_book_dialog.rb → new_book_dialog.rb} +168 -215
  91. data/lib/alexandria/ui/new_book_dialog_manual.rb +139 -0
  92. data/lib/alexandria/ui/new_provider_dialog.rb +100 -0
  93. data/lib/alexandria/ui/new_smart_library_dialog.rb +74 -0
  94. data/lib/alexandria/ui/preferences_dialog.rb +313 -0
  95. data/lib/alexandria/ui/provider_preferences_base_dialog.rb +95 -0
  96. data/lib/alexandria/ui/provider_preferences_dialog.rb +35 -0
  97. data/lib/alexandria/ui/really_delete_dialog.rb +53 -0
  98. data/lib/alexandria/ui/{sidepane.rb → sidepane_manager.rb} +62 -72
  99. data/lib/alexandria/ui/skip_entry_dialog.rb +33 -0
  100. data/lib/alexandria/ui/smart_library_properties_dialog.rb +60 -0
  101. data/lib/alexandria/ui/{dialogs/smart_library_properties_dialog_base.rb → smart_library_properties_dialog_base.rb} +96 -172
  102. data/lib/alexandria/ui/smart_library_rule_box.rb +119 -0
  103. data/lib/alexandria/ui/sound.rb +13 -13
  104. data/lib/alexandria/ui/ui_manager.rb +262 -283
  105. data/lib/alexandria/undo_manager.rb +3 -0
  106. data/lib/alexandria/version.rb +6 -19
  107. data/lib/alexandria/web_themes.rb +24 -21
  108. data/po/Makefile +2 -2
  109. data/po/cs.po +993 -880
  110. data/po/cy.po +957 -874
  111. data/po/de.po +990 -869
  112. data/po/el.po +989 -869
  113. data/po/es.po +985 -865
  114. data/po/fr.po +986 -870
  115. data/po/ga.po +907 -823
  116. data/po/gl.po +981 -865
  117. data/po/it.po +986 -868
  118. data/po/ja.po +969 -853
  119. data/po/mk.po +983 -863
  120. data/po/nb.po +979 -863
  121. data/po/nl.po +983 -864
  122. data/po/pl.po +1020 -969
  123. data/po/pt.po +988 -861
  124. data/po/pt_BR.po +984 -868
  125. data/po/ru.po +992 -873
  126. data/po/sk.po +987 -869
  127. data/po/sv.po +977 -861
  128. data/po/uk.po +975 -865
  129. data/po/zh_TW.po +976 -860
  130. data/schemas/alexandria.schemas +25 -3
  131. data/share/alexandria/glade/acquire_dialog__builder.glade +15 -12
  132. data/share/alexandria/glade/book_properties_dialog__builder.glade +171 -299
  133. data/share/alexandria/glade/main_app__builder.glade +24 -33
  134. data/share/alexandria/glade/new_book_dialog__builder.glade +27 -59
  135. data/share/alexandria/glade/preferences_dialog__builder.glade +250 -290
  136. data/share/gnome/help/alexandria/C/introduction.xml +0 -8
  137. data/share/gnome/help/alexandria/C/searching.xml +1 -1
  138. data/share/gnome/help/alexandria/C/smart-libraries.xml +2 -2
  139. data/share/gnome/help/alexandria/C/working-with-libraries.xml +1 -1
  140. data/share/gnome/help/alexandria/fr/alexandria.xml +1 -1
  141. data/share/gnome/help/alexandria/ja/introduction.xml +0 -8
  142. data/share/gnome/help/alexandria/ja/smart-libraries.xml +1 -1
  143. data/spec/alexandria/book_providers/world_cat_provider_spec.rb +160 -0
  144. data/spec/alexandria/book_providers_spec.rb +77 -210
  145. data/spec/alexandria/book_spec.rb +16 -12
  146. data/spec/alexandria/console_spec.rb +27 -0
  147. data/spec/alexandria/export_library_spec.rb +130 -0
  148. data/spec/alexandria/library_spec.rb +130 -172
  149. data/spec/alexandria/library_store_spec.rb +37 -0
  150. data/spec/alexandria/preferences_spec.rb +46 -17
  151. data/spec/alexandria/scanners/cue_cat_spec.rb +52 -0
  152. data/spec/alexandria/smart_library_spec.rb +32 -25
  153. data/spec/alexandria/ui/about_dialog_spec.rb +14 -0
  154. data/spec/alexandria/ui/acquire_dialog_spec.rb +14 -0
  155. data/spec/alexandria/ui/alert_dialog_spec.rb +16 -0
  156. data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +14 -0
  157. data/spec/alexandria/ui/book_properties_dialog_spec.rb +17 -0
  158. data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +14 -0
  159. data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +16 -0
  160. data/spec/alexandria/ui/error_dialog_spec.rb +14 -0
  161. data/spec/alexandria/ui/export_dialog_spec.rb +15 -0
  162. data/spec/alexandria/ui/icons_spec.rb +26 -0
  163. data/spec/alexandria/ui/iconview_spec.rb +9 -21
  164. data/spec/alexandria/ui/import_dialog_spec.rb +41 -0
  165. data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +17 -0
  166. data/spec/alexandria/ui/main_app_spec.rb +8 -33
  167. data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +15 -0
  168. data/spec/alexandria/ui/new_book_dialog_spec.rb +22 -0
  169. data/spec/alexandria/ui/new_provider_dialog_spec.rb +30 -0
  170. data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +39 -0
  171. data/spec/alexandria/ui/preferences_dialog_spec.rb +14 -0
  172. data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +34 -0
  173. data/spec/alexandria/ui/really_delete_dialog_spec.rb +16 -0
  174. data/spec/alexandria/ui/sidepane_manager_spec.rb +15 -0
  175. data/spec/alexandria/ui/skip_entry_dialog_spec.rb +14 -0
  176. data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +32 -0
  177. data/spec/alexandria/ui/sound_spec.rb +4 -2
  178. data/spec/alexandria/ui/ui_manager_spec.rb +45 -20
  179. data/spec/end_to_end/basic_run_spec.rb +57 -0
  180. data/spec/spec_helper.rb +66 -33
  181. data/tasks/setup.rb +5 -3
  182. data/tasks/spec.rake +18 -3
  183. data/util/rake/fileinstall.rb +38 -40
  184. data/util/rake/gettextgenerate.rb +15 -70
  185. data/util/rake/omfgenerate.rb +10 -10
  186. metadata +176 -60
  187. data/INSTALL.rdoc +0 -148
  188. data/dogtail/basic_run_test.py +0 -9
  189. data/lib/alexandria/book_providers/bol_it.rb +0 -160
  190. data/lib/alexandria/book_providers/deastore.rb +0 -273
  191. data/lib/alexandria/book_providers/ibs_it.rb +0 -147
  192. data/lib/alexandria/book_providers/mcu.rb +0 -169
  193. data/lib/alexandria/book_providers/renaud.rb +0 -140
  194. data/lib/alexandria/book_providers/webster_it.rb +0 -167
  195. data/lib/alexandria/ui/dialogs/about_dialog.rb +0 -59
  196. data/lib/alexandria/ui/dialogs/alert_dialog.rb +0 -70
  197. data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +0 -43
  198. data/lib/alexandria/ui/dialogs/export_dialog.rb +0 -171
  199. data/lib/alexandria/ui/dialogs/import_dialog.rb +0 -196
  200. data/lib/alexandria/ui/dialogs/misc_dialogs.rb +0 -85
  201. data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +0 -154
  202. data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +0 -74
  203. data/lib/alexandria/ui/dialogs/preferences_dialog.rb +0 -578
  204. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +0 -57
  205. data/spec/alexandria/scanners/cuecat_spec.rb +0 -65
  206. data/spec/alexandria/ui/dialogs_spec.rb +0 -94
  207. data/spec/alexandria/ui/sidepane_spec.rb +0 -27
  208. data/spec/alexandria/ui/ui_utilities_spec.rb +0 -60
  209. data/spec/alexandria/utilities_spec.rb +0 -50
  210. data/tasks/dogtail.rake +0 -4
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright (C) 2004-2006 Laurent Sansonetti
2
4
  # Copyright (C) 2008 Joseph Method
3
5
  # Copyright (C) 2016 Matijs van Zuijlen
@@ -17,8 +19,8 @@
17
19
  # write to the Free Software Foundation, Inc., 51 Franklin Street,
18
20
  # Fifth Floor, Boston, MA 02110-1301 USA.
19
21
 
20
- require 'alexandria/ui/columns'
21
- require 'alexandria/ui/iconview_tooltips'
22
+ require "alexandria/ui/columns"
23
+ require "alexandria/ui/iconview_tooltips"
22
24
 
23
25
  module Alexandria
24
26
  module UI
@@ -49,31 +51,31 @@ module Alexandria
49
51
  @iconview.column_spacing = 16
50
52
  @iconview.item_width = ICON_WIDTH + 16
51
53
 
52
- @iconview.signal_connect('selection-changed') do
53
- log.debug { 'selection-changed' }
54
+ @iconview.signal_connect("selection-changed") do
55
+ log.debug { "selection-changed" }
54
56
  @parent.on_books_selection_changed
55
57
  end
56
58
 
57
- @iconview.signal_connect('item-activated') do
58
- log.debug { 'item-activated' }
59
- @actiongroup['Properties'].activate
59
+ @iconview.signal_connect("item-activated") do
60
+ log.debug { "item-activated" }
61
+ @actiongroup["Properties"].activate
60
62
  false
61
63
  end
62
64
 
63
65
  # DND support for Gtk::IconView is shipped since GTK+ 2.8.0.
64
- if @iconview.respond_to?(:enable_model_drag_source)
65
- setup_view_source_dnd(@iconview)
66
- end
66
+ setup_view_source_dnd(@iconview) if @iconview.respond_to?(:enable_model_drag_source)
67
67
  end
68
68
 
69
69
  ICONS_SORTS = [
70
70
  Columns::TITLE, Columns::AUTHORS, Columns::ISBN,
71
- Columns::PUBLISHER, Columns::EDITION, Columns::RATING, Columns::REDD, Columns::OWN, Columns::WANT
71
+ Columns::PUBLISHER, Columns::EDITION, Columns::RATING,
72
+ Columns::REDD, Columns::OWN, Columns::WANT
72
73
  ].freeze
74
+
73
75
  def setup_books_iconview_sorting
74
76
  mode = ICONS_SORTS[@prefs.arrange_icons_mode]
75
- @iconview_model.set_sort_column_id(mode,
76
- @prefs.reverse_icons ? Gtk::SORT_DESCENDING : Gtk::SORT_ASCENDING)
77
+ sort = @prefs.reverse_icons ? Gtk::SORT_DESCENDING : Gtk::SORT_ASCENDING
78
+ @iconview_model.set_sort_column_id(mode, sort)
77
79
  @filtered_model.refilter # force redraw
78
80
  end
79
81
  end
@@ -1,23 +1,8 @@
1
- # -*- ruby -*-
2
- #
3
- # Copyright (C) 2007 kksou
4
- # Copyright (C) 2008,2009 Cathal Mc Ginley
5
- # Copyright (C) 2011, 2014, 2016 Matijs van Zuijlen
6
- #
7
- # Alexandria is free software; you can redistribute it and/or
8
- # modify it under the terms of the GNU General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
11
- #
12
- # Alexandria is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
- # General Public License for more details.
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
16
4
  #
17
- # You should have received a copy of the GNU General Public
18
- # License along with Alexandria; see the file COPYING. If not,
19
- # write to the Free Software Foundation, Inc., 51 Franklin Street,
20
- # Fifth Floor, Boston, MA 02110-1301 USA.
5
+ # See the file README.md for authorship and licensing information.
21
6
 
22
7
  # Please retain the following note:
23
8
  #
@@ -27,53 +12,53 @@
27
12
  #
28
13
  # Ported to ruby-gtk2 (and modified for IconView) by Cathal Mc Ginley
29
14
 
30
- require 'cgi'
15
+ require "cgi"
31
16
 
32
- class IconViewTooltips
33
- include Alexandria::Logging
17
+ module Alexandria
18
+ module UI
19
+ class IconViewTooltips
20
+ include Logging
34
21
 
35
- def initialize(view)
36
- set_view(view)
37
- end
22
+ def initialize(view)
23
+ set_view(view)
24
+ end
38
25
 
39
- def set_view(view)
40
- view.has_tooltip = true
41
- view.signal_connect('query-tooltip') do |_widget, x, y, _keyboard_mode, tooltip|
42
- tree_path = view.get_path_at_pos(x, y)
43
- if tree_path
44
- iter = view.model.get_iter(tree_path)
26
+ def set_view(view)
27
+ view.has_tooltip = true
28
+ view.signal_connect("query-tooltip") do |_widget, x, y, _keyboard_mode, tooltip|
29
+ tree_path = view.get_path_at_pos(x, y)
30
+ if tree_path
31
+ iter = view.model.get_iter(tree_path)
45
32
 
46
- title = iter[2] # HACK: hardcoded, should use column names...
47
- authors = iter[4]
48
- publisher = iter[6]
49
- year = iter[7]
50
- tooltip.set_markup label_for_book(title, authors, publisher, year)
33
+ title = iter[2] # HACK: hardcoded, should use column names...
34
+ authors = iter[4]
35
+ publisher = iter[6]
36
+ year = iter[7]
37
+ tooltip.set_markup label_for_book(title, authors, publisher, year)
38
+ end
39
+ end
51
40
  end
52
- end
53
- end
54
41
 
55
- def label_for_book(title, authors, publisher, year)
56
- # This is much too complex... but it works for now!
57
- html = ''
58
- unless title.empty?
59
- html += "<b>#{CGI.escapeHTML(title)}</b>"
60
- html += "\n" unless authors.empty?
61
- end
62
- unless authors.empty?
63
- html += "<i>#{CGI.escapeHTML(authors)}</i>"
64
- end
65
- html += "\n" if !title.empty? || !authors.empty?
42
+ def label_for_book(title, authors, publisher, year)
43
+ # This is much too complex... but it works for now!
44
+ html = ""
45
+ unless title.empty?
46
+ html += "<b>#{CGI.escapeHTML(title)}</b>"
47
+ html += "\n" unless authors.empty?
48
+ end
49
+ html += "<i>#{CGI.escapeHTML(authors)}</i>" unless authors.empty?
50
+ html += "\n" if !title.empty? || !authors.empty?
66
51
 
67
- html += '<small>'
68
- if publisher && !publisher.empty?
69
- html += CGI.escapeHTML(publisher).to_s
70
- end
52
+ html += "<small>"
53
+ html += CGI.escapeHTML(publisher).to_s if publisher && !publisher.empty?
71
54
 
72
- if year && !year.empty?
73
- html += ' ' if publisher && !publisher.empty?
74
- html += "(#{year})"
75
- end
55
+ if year && !year.empty?
56
+ html += " " if publisher && !publisher.empty?
57
+ html += "(#{year})"
58
+ end
76
59
 
77
- html + '</small>'
60
+ html + "</small>"
61
+ end
62
+ end
78
63
  end
79
64
  end
@@ -0,0 +1,157 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require "alexandria/ui/error_dialog"
8
+ require "alexandria/ui/skip_entry_dialog"
9
+
10
+ module Alexandria
11
+ module UI
12
+ class ImportDialog
13
+ include GetText
14
+ include Logging
15
+
16
+ GetText.bindtextdomain(Alexandria::TEXTDOMAIN, charset: "UTF-8")
17
+
18
+ FILTERS = Alexandria::ImportFilter.all
19
+
20
+ attr_reader :dialog
21
+
22
+ def initialize(parent)
23
+ title = _("Import a Library")
24
+ @dialog = Gtk::FileChooserDialog.new title: title, parent: parent, action: :open
25
+ log.debug { "ImportDialog opened" }
26
+ @destroyed = false
27
+ @running = false
28
+ dialog.add_button(Gtk::Stock::HELP, Gtk::ResponseType::HELP)
29
+ dialog.add_button(Gtk::Stock::CANCEL, Gtk::ResponseType::CANCEL)
30
+ import_button = dialog.add_button(_("_Import"),
31
+ Gtk::ResponseType::ACCEPT)
32
+ import_button.sensitive = false
33
+
34
+ dialog.signal_connect("destroy") do
35
+ if @running
36
+ @destroyed = true
37
+ else
38
+ dialog.destroy
39
+ end
40
+ end
41
+
42
+ @filters = {}
43
+ FILTERS.each do |filter|
44
+ filefilter = make_filefilter filter
45
+ dialog.add_filter(filefilter)
46
+ log.debug { "Added ImportFilter #{filefilter} -- #{filefilter.name}" }
47
+ @filters[filefilter] = filter
48
+ end
49
+
50
+ dialog.signal_connect("selection_changed") do
51
+ import_button.sensitive = filename && File.file?(filename)
52
+ end
53
+
54
+ # before adding the (hidden) progress bar, we must re-set the
55
+ # packing of the button box (currently packed at the end),
56
+ # because the progressbar will be *after* the button box.
57
+ buttonbox = dialog.child.children.last
58
+ dialog.child.set_child_packing(buttonbox, pack_type: :start)
59
+ dialog.child.reorder_child(buttonbox, 1)
60
+
61
+ @pbar = Gtk::ProgressBar.new
62
+ @pbar.show_text = true
63
+ dialog.child.pack_start(@pbar, expand: false)
64
+ end
65
+
66
+ def acquire
67
+ on_progress = proc do |fraction|
68
+ @pbar.show unless @pbar.visible?
69
+ @pbar.fraction = fraction
70
+ end
71
+
72
+ on_error = proc do |message|
73
+ SkipEntryDialog.new(self, message).continue?
74
+ end
75
+
76
+ exec_queue = ExecutionQueue.new
77
+
78
+ while !@destroyed &&
79
+ ((response = dialog.run) != Gtk::ResponseType::CANCEL) &&
80
+ response != Gtk::ResponseType::DELETE_EVENT
81
+
82
+ if response == Gtk::ResponseType::HELP
83
+ Alexandria::UI.display_help(self, "import-library")
84
+ next
85
+ end
86
+ file = File.basename(dialog.filename, ".*")
87
+ base = GLib.locale_to_utf8(file)
88
+ new_library_name = Library.generate_new_name(
89
+ LibraryCollection.instance.all_libraries,
90
+ base)
91
+
92
+ filter = @filters[dialog.filter]
93
+ log.debug { "Going forward with filter: #{filter.name}" }
94
+ dialog.sensitive = false
95
+
96
+ filter.on_iterate do |n, total|
97
+ unless @destroyed
98
+ fraction = n * 1.0 / total
99
+ log.debug { "#{inspect} fraction: #{fraction}" }
100
+ exec_queue.call(on_progress, fraction)
101
+ end
102
+ end
103
+
104
+ not_cancelled = true
105
+ filter.on_error do |message|
106
+ not_cancelled = exec_queue.sync_call(on_error, message)
107
+ log.debug { "#{inspect} cancel state: #{not_cancelled}" }
108
+ end
109
+
110
+ library = nil
111
+ @bad_isbns = nil
112
+ @failed_isbns = nil
113
+ thread = Thread.start do
114
+ library, @bad_isbns, @failed_isbns =
115
+ filter.invoke(new_library_name, dialog.filename)
116
+ rescue StandardError => ex
117
+ trace = ex.backtrace.join("\n> ")
118
+ log.error { "Import failed: #{ex.message} #{trace}" }
119
+ end
120
+
121
+ while thread.alive? && !@destroyed
122
+ @running = true
123
+ exec_queue.iterate
124
+ Gtk.main_iteration_do(false)
125
+ end
126
+
127
+ unless @destroyed
128
+ if library
129
+ yield(library, @bad_isbns, @failed_isbns)
130
+ break
131
+ elsif not_cancelled
132
+ log.debug { "Raising ErrorDialog because not_cancelled is #{not_cancelled}" }
133
+ ErrorDialog.new(dialog,
134
+ _("Couldn't import the library"),
135
+ _("The format of the file you " \
136
+ "provided is unknown. Please " \
137
+ "retry with another file.")).display
138
+ end
139
+ pbar.hide
140
+ self.sensitive = true
141
+ end
142
+ end
143
+
144
+ dialog.destroy unless @destroyed
145
+ end
146
+
147
+ private
148
+
149
+ def make_filefilter(import_filter)
150
+ filefilter = Gtk::FileFilter.new
151
+ filefilter.name = import_filter.name
152
+ import_filter.patterns.each { |x| filefilter.add_pattern(x) }
153
+ filefilter
154
+ end
155
+ end
156
+ end
157
+ end
@@ -1,36 +1,26 @@
1
- # Copyright (C) 2004-2006 Laurent Sansonetti
2
- # Copyright (C) 2008 Joseph Method
3
- # Copyright (C) 2011, 2016 Matijs van Zuijlen
4
- #
5
- # Alexandria is free software; you can redistribute it and/or
6
- # modify it under the terms of the GNU General Public License as
7
- # published by the Free Software Foundation; either version 2 of the
8
- # License, or (at your option) any later version.
9
- #
10
- # Alexandria is distributed in the hope that it will be useful,
11
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
- # General Public License for more details.
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
14
4
  #
15
- # You should have received a copy of the GNU General Public
16
- # License along with Alexandria; see the file COPYING. If not,
17
- # write to the Free Software Foundation, Inc., 51 Franklin Street,
18
- # Fifth Floor, Boston, MA 02110-1301 USA.
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require "alexandria/ui/error_dialog"
19
8
 
20
9
  class CellRendererToggle < Gtk::CellRendererToggle
21
10
  attr_accessor :text
11
+
22
12
  type_register
23
13
  install_property(GLib::Param::String.new(
24
- 'text',
25
- 'text',
26
- 'Some damn value',
27
- '',
14
+ "text",
15
+ "text",
16
+ "Some damn value",
17
+ "",
28
18
  GLib::Param::READABLE | GLib::Param::WRITABLE))
29
19
  end
30
20
 
31
21
  class Gtk::ActionGroup
32
- def [](x)
33
- get_action(x)
22
+ def [](index)
23
+ get_action(index)
34
24
  end
35
25
  end
36
26
 
@@ -58,28 +48,28 @@ end
58
48
 
59
49
  class Alexandria::Library
60
50
  def action_name
61
- 'MoveIn' + name.gsub(/\s/, '')
51
+ "MoveIn" + name.gsub(/\s/, "")
62
52
  end
63
53
  end
64
54
 
65
55
  class Alexandria::BookProviders::AbstractProvider
66
56
  def action_name
67
- 'At' + name
57
+ "At" + name
68
58
  end
69
59
  end
70
60
 
71
61
  module Alexandria
72
62
  module UI
73
- def self.display_help(parent = nil, section = nil)
74
- section_index = ''
63
+ def self.display_help(parent, section = nil)
64
+ section_index = ""
75
65
  section_index = "##{section}" if section
76
66
  exec("gnome-help ghelp:alexandria#{section_index}") if fork.nil?
77
- rescue
78
- log.error(self) { 'Unable to load help browser' }
79
- ErrorDialog.new(parent, _('Unable to launch the help browser'),
80
- _('Could not display help for Alexandria. ' \
81
- 'There was an error launching the system ' \
82
- 'help browser.'))
67
+ rescue StandardError
68
+ log.error(self) { "Unable to load help browser" }
69
+ ErrorDialog.new(parent, _("Unable to launch the help browser"),
70
+ _("Could not display help for Alexandria. " \
71
+ "There was an error launching the system " \
72
+ "help browser.")).display
83
73
  end
84
74
  end
85
75
  end
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is part of Alexandria.
4
+ #
5
+ # See the file README.md for authorship and licensing information.
6
+
7
+ require "alexandria/ui/alert_dialog"
8
+
9
+ module Alexandria
10
+ module UI
11
+ class KeepBadISBNDialog < AlertDialog
12
+ include GetText
13
+ GetText.bindtextdomain(Alexandria::TEXTDOMAIN, charset: "UTF-8")
14
+
15
+ def initialize(parent, book)
16
+ title = _("Invalid ISBN '%s'") % book.isbn
17
+ message =
18
+ _("The book titled '%s' has an invalid ISBN, but still " \
19
+ "exists in the providers libraries. Do you want to " \
20
+ "keep the book but change the ISBN or cancel the addition?") % book.title
21
+ super(parent, title,
22
+ Gtk::Stock::DIALOG_QUESTION,
23
+ [[Gtk::Stock::CANCEL, Gtk::ResponseType::CANCEL],
24
+ [_("_Keep"), Gtk::ResponseType::OK]], message)
25
+ dialog.default_response = Gtk::ResponseType::OK
26
+ end
27
+
28
+ def keep?
29
+ show_all
30
+ @response = run
31
+ destroy
32
+ @response == Gtk::ResponseType::OK
33
+ end
34
+ end
35
+ end
36
+ end