1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 88 89 90 91 92 93 94 95 96 97 98 99 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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
|
# -*- coding: utf-8 -*-
require_relative 'edit_window'
require_relative 'extract_tab_list'
require_relative 'model/setting'
module Plugin::Extract
class ConditionNotFoundError < RuntimeError; end
ExtensibleCondition = Struct.new(:slug, :name, :operator, :args) do
def initialize(*_args, &block)
super
@block = block end
def to_proc
@block end
def call(*_args, **_named, &block)
@block.(*_args, **_named, &block) end end
class ExtensibleSexpCondition < ExtensibleCondition
attr_reader :sexp
def initialize(*args)
@sexp = args.pop
super(*args) end
end
ExtensibleOperator = Struct.new(:slug, :name, :args) do
def initialize(*_args, &block)
super
@block = block end
def to_proc
@block end
def call(*_args, **_named, &block)
@block.(*_args, **_named, &block) end end
Order = Struct.new(:slug, :name, :ordering)
class Calc
def initialize(message, condition, operators = Plugin.filtering(:extract_operator, Set.new).first)
type_strict condition => Plugin::Extract::ExtensibleCondition, operators => Enumerable
@message, @condition, @operators = message, condition, operators
end
def method_missing(method_name, *args)
operator = @operators.find{ |_| _.slug == method_name }
if operator
@condition.(*args, message: @message, operator: operator.slug, &operator)
else
super end end
def call(*args)
@condition.(*args, message: @message) end
end
end
Plugin.create :extract do
# 抽出タブオブジェクト。各キーは抽出タブIDで、値は以下のようなオブジェクト
# name :: タブの名前
# sexp :: 条件式(S式)
# source :: どこのツイートを見るか(イベント名、配列で複数)
# slug :: タイムラインとタブのスラッグ
# id :: 抽出タブのID
def extract_tabs
@extract_tabs ||= {} end
settings _("抽出タブ") do
tablist = Plugin::Extract::ExtractTabList.new(Plugin[:extract])
pack_start(Gtk::HBox.new.
add(tablist).
closeup(Gtk::VBox.new(false, 4).
closeup(Gtk::Button.new(Gtk::Stock::ADD).tap{ |button|
button.ssc(:clicked) {
Plugin.call :extract_tab_open_create_dialog
true } }).
closeup(Gtk::Button.new(Gtk::Stock::EDIT).tap{ |button|
button.ssc(:clicked) {
id = tablist.selected_id
if id
Plugin.call(:extract_open_edit_dialog, id) end
true } }).
closeup(Gtk::Button.new(Gtk::Stock::DELETE).tap{ |button|
button.ssc(:clicked) {
id = tablist.selected_id
if id
Plugin.call(:extract_tab_delete_with_confirm, id) end
true } })))
Plugin.create :extract do
add_tab_observer = on_extract_tab_create(&tablist.method(:add_record))
delete_tab_observer = on_extract_tab_delete(&tablist.method(:remove_record))
tablist.ssc(:destroy) do
detach add_tab_observer
detach delete_tab_observer end end
end
command(:extract_edit,
name: _('抽出条件を編集'),
condition: lambda{ |opt|
opt.widget.slug.to_s =~ /\Aextract_(?:.+)\Z/
},
visible: true,
role: :tab) do |opt|
extract_id = opt.widget.slug.to_s.match(/\Aextract_(.+)\Z/)[1].to_i
Plugin.call(:extract_open_edit_dialog, extract_id) if extract_tabs[extract_id]
end
defdsl :defextractcondition do |slug, name: raise, operator: true, args: 0, sexp: nil, &block|
if sexp
filter_extract_condition do |conditions|
conditions << Plugin::Extract::ExtensibleSexpCondition.new(slug, name, operator, args, sexp).freeze
[conditions] end
else
filter_extract_condition do |conditions|
conditions << Plugin::Extract::ExtensibleCondition.new(slug, name, operator, args, &block).freeze
[conditions] end end end
defdsl :defextractoperator do |slug, name: raise, args: 1, &block|
filter_extract_operator do |operators|
operators << Plugin::Extract::ExtensibleOperator.new(slug, name, args, &block).freeze
[operators] end end
defdsl :defextractorder do |slug, name:, &block|
slug = slug.to_sym
name = name.to_s.freeze
filter_extract_order do |orders|
orders << Plugin::Extract::Order.new(slug, name, block)
[orders]
end
end
defextractoperator(:==, name: _('='), args: 1, &:==)
defextractoperator(:!=, name: _('≠'), args: 1, &:!=)
defextractoperator(:match_regexp, name: _('正規表現'), args: 1, &:match_regexp)
defextractoperator(:include?, name: _('含む'), args: 1, &:include?)
defextractcondition(:user, name: _('ユーザ名'), operator: true, args: 1, sexp: MIKU.parse("`(,compare (idname (user message)) ,(car args))"))
defextractcondition(:body, name: _('本文'), operator: true, args: 1, sexp: MIKU.parse("`(,compare (to_s message) ,(car args))"))
defextractcondition(:source, name: _('Twitterクライアント'), operator: true, args: 1, sexp: MIKU.parse("`(,compare (fetch message 'source) ,(car args))"))
defextractorder(:created, name: _('投稿時刻')) do |model|
model.created.to_i
end
defextractorder(:modified, name: _('投稿時刻 (ふぁぼやリツイートでageる)')) do |model|
model.modified.to_i
end
on_extract_tab_create do |setting|
if setting.is_a?(Hash)
setting = Plugin::Extract::Setting.new(setting)
end
extract_tabs[setting.id] = setting
tab(setting.slug, setting.name) do
set_icon setting.icon.to_s if setting.icon?
timeline setting.slug do
oo = setting.find_ordering_obj
order(&setting.find_ordering_obj.ordering) if oo
end
end
modify_extract_tabs end
on_extract_tab_update do |setting|
extract_tabs[setting.id] = setting
tab(setting.slug).set_icon setting.icon.to_s if setting.icon?
oo = setting.find_ordering_obj
if oo
timeline(setting.slug).order(&setting.find_ordering_obj.ordering)
end
modify_extract_tabs end
on_extract_tab_delete do |id|
if extract_tabs.has_key? id
deleted_tab = extract_tabs[id]
tab(deleted_tab.slug).destroy
extract_tabs.delete(id)
modify_extract_tabs end end
on_extract_tab_delete_with_confirm do |id|
extract = extract_tabs[id]
if extract
message = _("本当に抽出タブ「%{name}」を削除しますか?") % {name: extract.name}
dialog = Gtk::MessageDialog.new(nil,
Gtk::Dialog::DESTROY_WITH_PARENT,
Gtk::MessageDialog::QUESTION,
Gtk::MessageDialog::BUTTONS_YES_NO,
message)
dialog.run{ |response|
if Gtk::Dialog::RESPONSE_YES == response
Plugin.call :extract_tab_delete, id end
dialog.close } end end
on_extract_tab_open_create_dialog do
dialog = Gtk::Dialog.new(_("抽出タブを作成 - %{mikutter}") % {mikutter: Environment::NAME}, nil, nil,
[Gtk::Stock::OK, Gtk::Dialog::RESPONSE_ACCEPT],
[Gtk::Stock::CANCEL, Gtk::Dialog::RESPONSE_REJECT])
prompt = Gtk::Entry.new
dialog.vbox.
add(Gtk::HBox.new(false, 8).
closeup(Gtk::Label.new(_("名前"))).
add(prompt).show_all)
dialog.run{ |response|
if Gtk::Dialog::RESPONSE_ACCEPT == response
Plugin.call(:extract_tab_create, Plugin::Extract::Setting.new(name: prompt.text))
end
dialog.destroy
prompt = dialog = nil } end
on_extract_open_edit_dialog do |extract_id|
window = ::Plugin::Extract::EditWindow.new(extract_tabs[extract_id], self)
event = on_extract_tab_update do |setting|
if extract_id == setting.id && !window.destroyed?
window.refresh_title
end
end
window.ssc(:destroy) do
event.detach
false
end
end
on_appear do |messages|
Plugin.call :extract_receive_message, :appear, messages end
on_update do |service, messages|
Plugin.call :extract_receive_message, :update, messages
if service and service.class.slug == :twitter
service_datasource = "home_timeline-#{service.user_obj.id}".to_sym
if active_datasources.include? service_datasource
Plugin.call :extract_receive_message, service_datasource, messages
end
end
end
on_mention do |service, messages|
Plugin.call :extract_receive_message, :mention, messages
if service.class.slug == :twitter
service_datasource = "mentions-#{service.user_obj.id}".to_sym
if active_datasources.include? service_datasource
Plugin.call :extract_receive_message, service_datasource, messages
end
end
end
on_extract_receive_message do |source, messages|
append_message source, messages
end
filter_extract_tabs_get do |tabs|
[tabs + extract_tabs.values]
end
filter_extract_datasources do |datasources|
datasources = {
appear: _("受信したすべての投稿"),
update: _("ホームタイムライン(全てのアカウント)"),
mention: _("自分宛ての投稿(全てのアカウント)")
}.merge datasources
Enumerator.new{|y|
Plugin.filtering(:worlds, y)
}.lazy.select{|world|
world.class.slug == :twitter
}.map(&:user_obj).each{ |user|
datasources.merge!({ "home_timeline-#{user.id}".to_sym => "@#{user.idname}/" + _("Home Timeline"),
"mentions-#{user.id}".to_sym => "@#{user.idname}/" + _("Mentions")
})
}
[datasources] end
# 抽出タブの現在の内容を保存する
def modify_extract_tabs
UserConfig[:extract_tabs] = extract_tabs.values.map(&:export_to_userconfig)
self end
# 使用されているデータソースのSetを返す
def active_datasources
@active_datasources ||=
extract_tabs.values.map{|tab|
tab.sources
}.inject(Set.new, &:merge).freeze end
def compile(tab_id, code)
atomic do
@compiled ||= {}
@compiled[tab_id] ||=
if code.empty?
ret_nth
else
begin
before = Set.new
extract_condition ||= Hash[Plugin.filtering(:extract_condition, []).first.map{ |condition| [condition.slug, condition] }]
evaluated = MIKU::Primitive.new(:to_ruby_ne).call(MIKU::SymbolTable.new, metamorphose(code: code, assign: before, extract_condition: extract_condition))
code_string = "lambda{ |message|\n" + before.to_a.join("\n") + "\n " + evaluated + "\n}"
instance_eval(code_string)
rescue Plugin::Extract::ConditionNotFoundError => exception
Plugin.call(:modify_activity,
plugin: self,
kind: 'error'.freeze,
title: _("抽出タブ条件エラー"),
date: Time.new,
description: _("抽出タブ「%{tab_name}」で使われている条件が見つかりませんでした:\n%{error_string}") % {tab_name: extract_tabs[tab_id].name, error_string: exception.to_s})
warn exception
ret_nth end end end end
# 条件をこう、くいっと変形させてな
def metamorphose(code: raise, assign: Set.new, extract_condition: nil)
extract_condition ||= Hash[Plugin.filtering(:extract_condition, []).first.map{ |condition| [condition.slug, condition] }]
case code
when MIKU::Atom
return code
when MIKU::List
return true if code.empty?
condition = if code.size <= 2
extract_condition[code.car]
else
extract_condition[code.cdr.car] end
case condition
when Plugin::Extract::ExtensibleSexpCondition
metamorphose_sexp(code: code, condition: condition)
when Plugin::Extract::ExtensibleCondition
assign << "#{condition.slug} = Plugin::Extract::Calc.new(message, extract_condition[:#{condition.slug}])"
if condition.operator
code
else
# MIKU::Cons.new(:call, MIKU::Cons.new(condition.slug, nil))
[:call, condition.slug]
end
else
if code.cdr.car.is_a? Symbol and not %i[and or not].include?(code.car)
raise Plugin::Extract::ConditionNotFoundError, _('抽出条件 `%{condition}\' が見つかりませんでした') % {condition: code.cdr.car} end
code.map{|node| metamorphose(code: node,
assign: assign,
extract_condition: extract_condition) } end end end
def metamorphose_sexp(code: raise, condition: raise)
miku_context = MIKU::SymbolTable.new
miku_context[:compare] = MIKU::Cons.new(code.car, nil)
miku_context[:args] = MIKU::Cons.new(code.cdr.cdr, nil)
begin
miku(condition.sexp, miku_context)
rescue => exception
error "error occurred in code #{MIKU.unparse(condition.sexp)}"
error miku_context
raise exception end end
def destroy_compile_cache
atomic do
@compiled = {} end end
def append_message(source, messages)
type_strict source => Symbol, messages => Enumerable
tabs = extract_tabs.values.select{ |r| r.sources && r.using?(source) }
return if tabs.empty?
converted_messages = messages.map{ |message| message.retweet_source ? message.retweet_source : message }
tabs.each{ |record|
filtered_messages = timeline(record.slug).not_in_message(converted_messages.select(&compile(record.id, record.sexp)))
timeline(record.slug) << filtered_messages
notificate_messages = filtered_messages.lazy.select{|message| message[:created] > defined_time}
if record.popup?
notificate_messages.deach do |message|
Plugin.call(:popup_notify, message.user, message.description) end end
if record.sound.is_a?(String) and notificate_messages.first and FileTest.exist?(record.sound)
Plugin.call(:play_sound, record.sound) end
} end
(UserConfig[:extract_tabs] or []).each do |record|
Plugin.call(:extract_tab_create, Plugin::Extract::Setting.new(record))
end
on_userconfig_modify do |key, val|
next if key != :extract_tabs
destroy_compile_cache
@active_datasources = nil
end
end
|