Class: SL::PinboardSearch
- Inherits:
-
Object
- Object
- SL::PinboardSearch
- Defined in:
- lib/searchlink/searches/pinboard.rb
Constant Summary collapse
- PINBOARD_CACHE =
SL::Util.cache_file_for('pinboard')
Class Method Summary collapse
- .load_pinboard_cache ⇒ Object
- .pinboard_bookmarks ⇒ Object
- .save_pinboard_cache(cache) ⇒ Object
-
.search(_, search_terms, link_text) ⇒ Object
Search pinboard bookmarks Begin query with ” to force exact matching (including description text) Regular matching searches for each word of query and scores the bookmarks exact matches in title get highest score exact matches in description get second highest score other bookmarks are scored based on the number of words that match.
- .settings ⇒ Object
Class Method Details
.load_pinboard_cache ⇒ Object
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/searchlink/searches/pinboard.rb', line 49 def load_pinboard_cache refresh_cache = false cachefile = PINBOARD_CACHE if File.exist?(cachefile) begin # file = IO.read(cachefile) # Zlib::GzipReader.open(cachefile) # cache = Marshal.load file cache = Marshal.load(File.binread(cachefile)) # file.close rescue IOError # Zlib::GzipFile::Error SL.add_error('Error loading pinboard cache', "IOError reading #{cachefile}") cache = pinboard_bookmarks save_pinboard_cache(cache) rescue StandardError SL.add_error('Error loading pinboard cache', "StandardError reading #{cachefile}") cache = pinboard_bookmarks save_pinboard_cache(cache) end curl = TTY::Which.which('curl') updated = JSON.parse(`#{curl} -SsL 'https://api.pinboard.in/v1/posts/update?auth_token=#{SL.config['pinboard_api_key']}&format=json'`) last_bookmark = Time.parse(updated['update_time']) if cache&.key?('update_time') last_update = cache['update_time'] refresh_cache = true if last_update < last_bookmark else refresh_cache = true end else refresh_cache = true end if refresh_cache cache = pinboard_bookmarks save_pinboard_cache(cache) end cache end |
.pinboard_bookmarks ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/searchlink/searches/pinboard.rb', line 17 def pinboard_bookmarks curl = TTY::Which.which('curl') bookmarks = `#{curl} -sSL "https://api.pinboard.in/v1/posts/all?auth_token=#{SL.config['pinboard_api_key']}&format=json"` bookmarks = bookmarks.force_encoding('utf-8') bookmarks.gsub!(/[^[:ascii:]]/) do |non_ascii| non_ascii.force_encoding('utf-8') .encode('utf-16be') .unpack('H*') .gsub(/(....)/, '\u\1') end bookmarks.gsub!(/[\u{1F600}-\u{1F6FF}]/, '') bookmarks = JSON.parse(bookmarks) updated = Time.now { 'update_time' => updated, 'bookmarks' => bookmarks } end |
.save_pinboard_cache(cache) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/searchlink/searches/pinboard.rb', line 35 def save_pinboard_cache(cache) cachefile = PINBOARD_CACHE # file = File.new(cachefile,'w') # file = Zlib::GzipWriter.new(File.new(cachefile,'w')) begin File.open(cachefile, 'wb') { |f| f.write(Marshal.dump(cache)) } rescue IOError SL.add_error('Pinboard cache error', 'Failed to write stash to disk') return false end true end |
.search(_, search_terms, link_text) ⇒ Object
Search pinboard bookmarks Begin query with ” to force exact matching (including description text) Regular matching searches for each word of query and scores the bookmarks exact matches in title get highest score exact matches in description get second highest score other bookmarks are scored based on the number of words that match
After sorting by score, bookmarks will be sorted by date and the most recent will be returned
Exact matching is case and punctuation insensitive
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'lib/searchlink/searches/pinboard.rb', line 100 def search(_, search_terms, link_text) unless SL.config['pinboard_api_key'] SL.add_error('Missing Pinboard API token', 'Find your api key at https://pinboard.in/settings/password and add it to your configuration (pinboard_api_key: YOURKEY)') return false end exact_match = false match_phrases = [] # If search terms start with ''term, only search for exact string matches case search_terms when /^ *'/ exact_match = true search_terms.gsub!(/(^ *'+|'+ *$)/, '') when /%22(.*?)%22/ match_phrases = search_terms.scan(/%22(\S.*?\S)%22/) search_terms.gsub!(/%22(\S.*?\S)%22/, '') end cache = load_pinboard_cache # cache = pinboard_bookmarks bookmarks = cache['bookmarks'] if exact_match bookmarks.each do |bm| text = [bm['description'], bm['extended'], bm['tags']].join(' ') return [bm['href'], bm['description']] if text.matches_exact(search_terms) end return false end unless match_phrases.empty? bookmarks.delete_if do |bm| matched = tru full_text = [bm['description'], bm['extended'], bm['tags']].join(' ') match_phrases.each do |phrase| matched = false unless full_text.matches_exact(phrase) end !matched end end matches = [] bookmarks.each do |bm| = [bm['description'], bm['tags']].join(' ') full_text = [bm['description'], bm['extended'], bm['tags']].join(' ') score = if .matches_exact(search_terms) 14.0 elsif full_text.matches_exact(search_terms) 13.0 elsif full_text.matches_any(search_terms) full_text.matches_score(search_terms) else 0 end return [bm['href'], bm['description']] if score == 14 next unless score.positive? matches.push({ score: score, href: bm['href'], title: bm['description'], date: bm['time'] }) end return false if matches.empty? top = matches.max_by { |bm| [bm[:score], bm[:date]] } return false unless top [top[:href], top[:title], link_text] end |
.settings ⇒ Object
8 9 10 11 12 13 14 15 |
# File 'lib/searchlink/searches/pinboard.rb', line 8 def settings { trigger: 'pb', searches: [ ['pb', 'Pinboard Bookmark Search'] ] } end |