forked from ttscoff/Slogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slogger.rb
executable file
·392 lines (359 loc) · 11.1 KB
/
slogger.rb
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
381
382
383
384
385
386
387
388
389
390
391
392
#!/usr/bin/env ruby
# __ _
# / _\| | ___ __ _ __ _ ___ _ __
# \ \ | |/ _ \ / _` |/ _` |/ _ \ '__|
# _\ \| | (_) | (_| | (_| | __/ |
# \__/|_|\___/ \__, |\__, |\___|_|
# |___/ |___/
# Copyright 2012, Brett Terpstra
# http://brettterpstra.com
# --------------------
require 'open-uri'
require 'net/http'
require 'net/https'
require 'time'
require 'cgi'
require 'rss'
require 'erb'
require 'logger'
require 'optparse'
require 'fileutils'
require 'rexml/parsers/pullparser'
SLOGGER_HOME = File.dirname(File.expand_path(__FILE__))
ENV['SLOGGER_HOME'] = SLOGGER_HOME
require SLOGGER_HOME + '/lib/sociallogger'
require SLOGGER_HOME + '/lib/configtools'
require SLOGGER_HOME + '/lib/json'
class String
def markdownify
contents = ''
IO.popen('"$SLOGGER_HOME/lib/html2text"', "r+") do |io|
Thread.new { self.each_line { |line|
io << line
}; io.close_write }
io.each_line do |line|
contents << line
end
end
contents
end
# convert (multi)Markdown to HTML
def to_html
md = SLOGGER_HOME + '/lib/multimarkdown'
return %x{echo #{self.e_sh}|"#{md}"}
end
# shell escape for passing content to external commands
# e.g. %x{echo content.e_sh|sort}
def e_sh
self.to_s.gsub(/(?=[^a-zA-Z0-9_.\/\-\n])/, '\\').gsub(/\n/, "'\n'").sub(/^$/, "''")
end
def e_link
self.to_s.gsub(/([\[\]\(\)])/, '\\\\\1')
end
# escape text for use in a quoted AppleScript string
#
# string = %q{"This is a quoted string and it's awfully nice!"}
# res = %x{osascript <<'APPLESCRIPT'
# return "hello, #{string.e_as}"
# APPLESCRIPT}
def e_as(str)
str.to_s.gsub(/(?=["\\])/, '\\')
end
def truncate_html(len = 30)
p = REXML::Parsers::PullParser.new(self)
tags = []
new_len = len
results = ''
while p.has_next? && new_len > 0
p_e = p.pull
case p_e.event_type
when :start_element
tags.push p_e[0]
results << "<#{tags.last} #{attrs_to_s(p_e[1])}>"
when :end_element
results << "</#{tags.pop}>"
when :text
results << p_e[0].first(new_len)
new_len -= p_e[0].length
else
results << "<!-- #{p_e.inspect} -->"
end
end
tags.reverse.each do |tag|
results << "</#{tag}>"
end
results
end
private
def attrs_to_s(attrs)
if attrs.empty?
''
else
attrs.to_a.map { |attr| %{#{attr[0]}="#{attr[1]}"} }.join(' ')
end
end
end
class SloggerUtils
def get_stdin(message)
print message + " "
STDIN.gets.chomp
end
def ask(message, valid_options = nil)
if valid_options
answer = get_stdin("#{message} #{valid_options.to_s.gsub(/"/, '').gsub(/, /,'/')} ") while !valid_options.include?(answer)
else
answer = get_stdin(message)
end
answer
end
end
class Slogger
attr_accessor :config, :dayonepath, :plugins
attr_reader :timespan, :log
def initialize
cfg = ConfigTools.new({'config_file' => $options[:config_file]})
@log = Logger.new(STDERR)
original_formatter = Logger::Formatter.new
@log.datetime_format = '%d'
@log.level = 1
@log.progname = self.class.name
@log.formatter = proc { |severity, datetime, progname, msg|
abbr_sev = case severity
when 'WARN' then "> "
when 'ERROR' then "! "
when 'FATAL' then "!!"
else " "
end
spacer_count = 20 - progname.length
spacer = ''
spacer_count.times do
spacer += ' '
end
output = $options[:quiet] ? '' : "#{abbr_sev}#{datetime.strftime('%H:%M:%S')} #{spacer}#{progname}: #{msg}\n"
output
}
@plugins = []
if cfg.config_exists?
@config = cfg.load_config
if @config.nil?
raise "Config should not be nil"
Process.exit(-1)
end
end
if $options[:since_last_run] && @config.key?('last_run_time') && !@config['last_run_time'].nil?
@timespan = Time.parse(@config['last_run_time'])
else
@timespan = Time.now - ((60 * 60 * 24) * $options[:timespan])
end
@config['image_filename_is_title'] ||= false
@dayonepath = self.storage_path
@template = self.template
@date_format = @config['date_format'] || '%F'
@time_format = @config['time_format'] || '%R'
@datetime_format = "#{@date_format} #{@time_format}"
end
def undo_slogger(count = 1)
runlog = SLOGGER_HOME+'/runlog.txt'
if File.exists?(runlog)
undo_to = ''
File.open(runlog,'r') do |f|
runs = f.read.split(/\n/)
if runs.length >= count
undo_to = runs[count*-1].match(/^\[(.*?)\]/)[1]
end
end
$stderr.puts undo_to
tnow = Time.now
elapsed = tnow - Time.parse(undo_to) # elapsed time in seconds
files = %x{find "#{self.storage_path}" -newerct '#{elapsed.floor} seconds ago' -type f}.split(/\n/)
files.each do |file|
FileUtils.mv(file,ENV['HOME']+'/.Trash/')
end
@log.info("Moved #{files.length} entries to Trash")
else
@log.fatal("Run log does not exist.")
Process.exit(-1)
end
end
def log_run
File.open(SLOGGER_HOME+'/runlog.txt', 'a') { |f|
f.puts "[#{Time.now.strftime('%c')}] Slogger v#{MAJOR_VERSION} (#{MAJOR_VERSION}.#{MINOR_VERSION}.#{BUILD_NUMBER}) #{$options.inspect}"
}
end
def storage_path
if @config.key?('storage')
if @config['storage'].downcase == 'icloud'
dayonedir = %x{ls ~/Library/Mobile\\ Documents/|grep dayoneapp}.strip
full_path = File.expand_path("~/Library/Mobile\ Documents/#{dayonedir}/Documents/Journal_dayone/")
if File.exists?(full_path)
return full_path
else
raise "Failed to find iCloud storage path"
Process.exit(-1)
end
elsif File.exists?(File.expand_path(@config['storage']))
return File.expand_path(@config['storage'])
else
raise "Path for Day One journal is not specified or doesn't exist. Change your path in slogger_config and run ./slogger again: #{@config['storage']}"
Process.exit(-1)
end
else
raise "Path for Day One journal is not specified or doesn't exist. Change your path in slogger_config and run ./slogger again: #{@config['storage']}"
return
end
end
def run_plugins
@config['last_run_time'] = Time.now.strftime('%c')
new_options = false
plugin_dir = $options[:develop] ? "/plugins_develop/*.rb" : "/plugins/*.rb"
Dir[SLOGGER_HOME + plugin_dir].each do |file|
if $options[:onlyrun]
$options[:onlyrun].each { |plugin_frag|
if File.basename(file) =~ /^#{plugin_frag}/i
require file
end
}
else
require file
end
end
@plugins.each do |plugin|
_namespace = plugin['class'].to_s
@config[_namespace] ||= {}
plugin['config'].each do |k,v|
if @config[_namespace][k].nil?
new_options = true
@config[_namespace][k] ||= v
end
@config[_namespace][_namespace+"_last_run"] = Time.now.strftime('%c')
end
unless $options[:config_only]
# credit to Hilton Lipschitz (@hiltmon)
updated_config = eval(plugin['class']).new.do_log
if updated_config && updated_config.class.to_s == 'Hash'
updated_config.each { |k,v|
@config[_namespace][k] = v
}
end
end
end
ConfigTools.new({'config_file' => $options[:config_file]}).dump_config(@config)
end
def register_plugin(plugin)
@plugins.push plugin
end
def template
markdown = @dayonepath =~ /Journal[\._]dayone\/?$/ ? false : true
unless markdown
ERB.new <<-XMLTEMPLATE
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Creation Date</key>
<date><%= datestamp %></date>
<key>Entry Text</key>
<string><%= entry %></string>
<key>Starred</key>
<<%= starred %>/>
<% if tags %><key>Tags</key>
<array>
<% tags.each do |tag| %> <string><%= tag %></string>
<% end %></array><% end %>
<key>UUID</key>
<string><%= uuid %></string>
</dict>
</plist>
XMLTEMPLATE
else
ERB.new <<-MARKDOWNTEMPLATE
Title: Journal entry for <%= datestamp %>
Date: <%= datestamp %>
Starred: <%= starred %>
<% if tags %>Tags: <% tags.join(", ") %> <% end %>
<%= entry %>
MARKDOWNTEMPLATE
end
end
end
require SLOGGER_HOME + '/lib/redirect'
require SLOGGER_HOME + '/lib/dayone'
$options = {}
optparse = OptionParser.new do|opts|
opts.banner = "Usage: slogger [-dq] [-r X] [/path/to/image.jpg]"
$options[:config_file] = File.expand_path(File.dirname(__FILE__)+'/slogger_config')
opts.on('--update-config', 'Create or update a configuration file') do
$options[:config_only] = true
end
opts.on( '-c', '--config FILE', 'Specify configuration file to use') do |file|
file = File.expand_path(file)
$options[:config_file] = file
end
$options[:develop] = false
opts.on( '-d','--develop', 'Develop mode' ) do
$options[:develop] = true
end
$options[:onlyrun] = false
opts.on( '-o','--onlyrun NAME[,NAME2...]','Only run plugins matching items in comma-delimited string') do |plugin_string|
$options[:onlyrun] = plugin_string.split(/,/).map {|frag| frag.strip }
end
$options[:timespan] = 1
opts.on( '-t', '--timespan DAYS', 'Days of history to collect') do |days|
$options[:timespan] = days.to_i
end
$options[:quiet] = false
opts.on( '-q','--quiet', 'Run quietly (no notifications/messages)' ) do
$options[:quiet] = true
end
$options[:max_retries] = 3
opts.on( '-r','--retries COUNT', 'Maximum number of retries per plugin (int)' ) do |count|
$options[:max_retries] = count.to_i
end
$options[:since_last_run] = false
opts.on( '-s','--since-last', 'Set the timespan to the last run date' ) do
$options[:since_last_run] = true
end
$options[:undo] = false
opts.on( '-u', '--undo COUNT', 'Undo the last COUNT runs') do |count|
$options[:undo] = count.to_i
end
opts.on( '-v', '--version', 'Display the version number') do
$stdout.puts("Slogger version #{MAJOR_VERSION}.#{MINOR_VERSION}.#{BUILD_NUMBER}")
exit
end
opts.on( '-h', '--help', 'Display this screen' ) do
puts opts
exit
end
end
optparse.parse!
$slog = Slogger.new
$slog.dayonepath = $slog.storage_path
if ARGV.length > 0
path = File.expand_path(ARGV[0])
if File.exists?(path)
unless path =~ /\.(jpg|png|gif)/i
File.open(path,'r') do | f |
DayOne.new.to_dayone({ 'content' => f.read })
end
else
DayOne.new.store_single_photo(ARGV[0],{},true)
end
else
raise "File \"#{ARGV[0]}\" not found."
end
else
unless $options[:undo]
# Set environment variable SLOGGER_NO_INITIALIZE if you want to load slogger config but not run plugins
if ENV['SLOGGER_NO_INITIALIZE'] == "true"
$stderr.puts "No initialization: Slogger v#{MAJOR_VERSION} (#{MAJOR_VERSION}.#{MINOR_VERSION}.#{BUILD_NUMBER})"
else
$stdout.puts "Initializing Slogger v#{MAJOR_VERSION} (#{MAJOR_VERSION}.#{MINOR_VERSION}.#{BUILD_NUMBER})..."
$slog.log_run
$slog.run_plugins
end
else
$stdout.puts "Undoing the last #{$options[:undo].to_s} runs..."
$slog.undo_slogger($options[:undo])
end
end