Class: WWID

Inherits:
Object
  • Object
show all
Defined in:
lib/doing/wwid.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(input = nil) ⇒ WWID

Returns a new instance of WWID.



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
# File 'lib/doing/wwid.rb', line 14

def initialize(input=nil)
  @content = {}
  @timers = {}
  @config = read_config

  @config['doing_file'] ||= "~/what_was_i_doing.md"
  @config['current_section'] ||= 'Currently'
  @config['editor_app'] ||= nil
  @config['templates'] ||= {}
  @config['templates']['default'] ||= {
    'date_format' => '%Y-%m-%d %H:%M',
    'template' => '%date | %title%note',
    'wrap_width' => 0
  }
  @config['templates']['today'] ||= {
    'date_format' => '%_I:%M%P',
    'template' => '%date: %title %interval%note',
    'wrap_width' => 0
  }
  @config['templates']['last'] ||= {
    'date_format' => '%-I:%M%P on %a',
    'template' => '%title (at %date)%odnote',
    'wrap_width' => 88
  }
  @config['templates']['recent'] ||= {
    'date_format' => '%_I:%M%P',
    'template' => '%shortdate: %title',
    'wrap_width' => 88
  }
  @config['views'] ||= {
    'done' => {
      'date_format' => '%_I:%M%P',
      'template' => '%date | %title%note',
      'wrap_width' => 0,
      'section' => 'All',
      'count' => 0,
      'order' => 'desc',
      'tags' => 'done complete cancelled',
      'tags_bool' => 'OR'
    },
    'color' => {
        'date_format' => '%F %_I:%M%P',
        'template' => '%boldblack%date %boldgreen| %boldwhite%title%default%note',
        'wrap_width' => 0,
        'section' => 'Currently',
        'count' => 10,
        'order' => "asc"
    }
  }

  @doing_file = File.expand_path(config['doing_file'])
  @current_section = config['current_section']
  @default_template = config['templates']['default']['template']
  @default_date_format = config['templates']['default']['date_format']

  @config[:include_notes] ||= true

  File.open(File.expand_path(DOING_CONFIG), 'w') { |yf| YAML::dump(config, yf) }

  if input.nil?
    create(@doing_file) unless File.exists?(@doing_file)
    input = IO.read(@doing_file)
    input = input.force_encoding('utf-8') if input.respond_to? :force_encoding
  elsif File.exists?(File.expand_path(input)) && File.file?(File.expand_path(input)) && File.stat(File.expand_path(input)).size > 0
    input = IO.read(File.expand_path(input))
    input = input.force_encoding('utf-8') if input.respond_to? :force_encoding
    @doing_file = File.expand_path(input)
  elsif input.length < 256
    create(input)
  end

  @other_content_top = []
  @other_content_bottom = []

  section = "Uncategorized"
  lines = input.split(/[\n\r]/)
  current = 0

  lines.each {|line|
    next if line =~ /^\s*$/
    if line =~ /^(\S[\S ]+):\s*(@\S+\s*)*$/
      section = $1
      @content[section] = {}
      @content[section]['original'] = line
      @content[section]['items'] = []
      current = 0
    elsif line =~ /^\s*- (\d{4}-\d\d-\d\d \d\d:\d\d) \| (.*)/
      date = Time.parse($1)
      title = $2
      @content[section]['items'].push({'title' => title, 'date' => date})
      current += 1
    else
      # if content[section]['items'].length - 1 == current
        if current == 0
          @other_content_top.push(line)
        else
          if line =~ /^\S/
            @other_content_bottom.push(line)
          else
            unless @content[section]['items'][current - 1].has_key? 'note'
              @content[section]['items'][current - 1]['note'] = []
            end
            @content[section]['items'][current - 1]['note'].push(line)
          end
        end
      # end
    end
  }
end

Instance Attribute Details

#configObject

Returns the value of attribute config.



11
12
13
# File 'lib/doing/wwid.rb', line 11

def config
  @config
end

#contentObject

Returns the value of attribute content.



11
12
13
# File 'lib/doing/wwid.rb', line 11

def content
  @content
end

#current_sectionObject

Returns the value of attribute current_section.



11
12
13
# File 'lib/doing/wwid.rb', line 11

def current_section
  @current_section
end

#doing_fileObject

Returns the value of attribute doing_file.



11
12
13
# File 'lib/doing/wwid.rb', line 11

def doing_file
  @doing_file
end

#sectionsObject

Returns the value of attribute sections.



11
12
13
# File 'lib/doing/wwid.rb', line 11

def sections
  @sections
end

Instance Method Details

#add_item(title, section = nil, opt = {}) ⇒ Object



260
261
262
263
264
265
266
267
268
269
270
271
272
# File 'lib/doing/wwid.rb', line 260

def add_item(title,section=nil,opt={})
  section ||= @current_section
  add_section(section) unless @content.has_key?(section)
  opt[:date] ||= Time.now
  opt[:note] ||= []
  opt[:back] ||= Time.now

  entry = {'title' => title.strip.cap_first, 'date' => opt[:back]}
  unless opt[:note] =~ /^\s*$/s
    entry['note'] = opt[:note]
  end
  @content[section]['items'].push(entry)
end

#add_section(title) ⇒ Object



212
213
214
# File 'lib/doing/wwid.rb', line 212

def add_section(title)
  @content[title.cap_first] = {'original' => "#{title}:", 'items' => []}
end

#all(order = "") ⇒ Object



585
586
587
588
589
# File 'lib/doing/wwid.rb', line 585

def all(order="")
  order = "asc" if order == ""
  cfg = @config['templates']['default_template']
  list_section({:section => @current_section, :wrap_width => cfg['wrap_width'], :count => 0, :format => cfg['date_format'], :template => cfg['template'], :order => order})
end

#archive(section = nil, count = 10) ⇒ Object



531
532
533
534
535
536
537
538
539
540
541
542
# File 'lib/doing/wwid.rb', line 531

def archive(section=nil,count=10)
  section = choose_section if section.nil? || section =~ /choose/i
  section = guess_section(section)
  if sections.include?(section)
    items = @content[section]['items']
    return if items.length < count
    @content[section]['items'] = items[0..count-1]
    add_section('Archive') unless sections.include?('Archive')
    @content['Archive']['items'] += items[count..-1]
    write(@doing_file)
  end
end

#choose_sectionObject



341
342
343
344
345
346
347
348
349
# File 'lib/doing/wwid.rb', line 341

def choose_section
  sections.each_with_index {|section, i|
    puts "% 3d: %s" % [i+1, section]
  }
  print "> "
  num = STDIN.gets
  return false if num =~ /^[a-z ]*$/i
  return sections[num.to_i - 1]
end

#choose_viewObject



355
356
357
358
359
360
361
362
363
# File 'lib/doing/wwid.rb', line 355

def choose_view
  views.each_with_index {|view, i|
    puts "% 3d: %s" % [i+1, view]
  }
  print "> "
  num = STDIN.gets
  return false if num =~ /^[a-z ]*$/i
  return views[num.to_i - 1]
end

#chronify(input) ⇒ Object



189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# File 'lib/doing/wwid.rb', line 189

def chronify(input)
  if input =~ /^(\d+)([mhd])?$/i
    amt = $1
    type = $2.nil? ? "m" : $2
    input = case type.downcase
    when "m"
      amt + " minutes ago"
    when "h"
      amt + " hours ago"
    when "d"
      amt + " days ago"
    else
      input
    end
  end

  Chronic.parse(input, {:context => :past, :ambiguous_time_range => 8})
end

#colorsObject



546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
# File 'lib/doing/wwid.rb', line 546

def colors
  color = {}
  color['black'] = "\033[30m"
  color['red'] = "\033[31m"
  color['green'] = "\033[32m"
  color['yellow'] = "\033[33m"
  color['blue'] = "\033[34m"
  color['magenta'] = "\033[35m"
  color['cyan'] = "\033[36m"
  color['white'] = "\033[37m"
  color['bgblack'] = "\033[40m"
  color['bgred'] = "\033[41m"
  color['bggreen'] = "\033[42m"
  color['bgyellow'] = "\033[43m"
  color['bgblue'] = "\033[44m"
  color['bgmagenta'] = "\033[45m"
  color['bgcyan'] = "\033[46m"
  color['bgwhite'] = "\033[47m"
  color['boldblack'] = "\033[1;30m"
  color['boldred'] = "\033[1;31m"
  color['boldgreen'] = "\033[1;32m"
  color['boldyellow'] = "\033[1;33m"
  color['boldblue'] = "\033[1;34m"
  color['boldmagenta'] = "\033[1;35m"
  color['boldcyan'] = "\033[1;36m"
  color['boldwhite'] = "\033[1;37m"
  color['boldbgblack'] = "\033[1;40m"
  color['boldbgred'] = "\033[1;41m"
  color['boldbggreen'] = "\033[1;42m"
  color['boldbgyellow'] = "\033[1;43m"
  color['boldbgblue'] = "\033[1;44m"
  color['boldbgmagenta'] = "\033[1;45m"
  color['boldbgcyan'] = "\033[1;46m"
  color['boldbgwhite'] = "\033[1;47m"
  color['default']="\033[0;39m"
  color
end

#create(filename = nil) ⇒ Object



124
125
126
127
128
129
130
131
# File 'lib/doing/wwid.rb', line 124

def create(filename=nil)
  filename = @doing_file
  unless File.exists?(filename) && File.stat(filename).size > 0
    File.open(filename,'w+') do |f|
      f.puts @current_section + ":"
    end
  end
end

#fork_editor(input = "") ⇒ Object



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
# File 'lib/doing/wwid.rb', line 141

def fork_editor(input="")
  tmpfile = Tempfile.new('doing')

  File.open(tmpfile.path,'w+') do |f|
    f.puts input
  end

  pid = Process.fork { system("$EDITOR #{tmpfile.path}") }

  trap("INT") {
    Process.kill(9, pid) rescue Errno::ESRCH
    tmpfile.unlink
    tmpfile.close!
    exit 0
  }

  Process.wait(pid)

  begin
    if $?.exitstatus == 0
      input = IO.read(tmpfile.path)
    else
      raise "Cancelled"
    end
  ensure
    tmpfile.close
    tmpfile.unlink
  end

  input
end

#format_input(input) ⇒ Object

This takes a multi-line string and formats it as an entry returns an array of [title(String), note(Array)]



175
176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/doing/wwid.rb', line 175

def format_input(input)
  raise "No content in entry" if input.nil? || input.strip.length == 0
  input_lines = input.split(/[\n\r]+/)
  title = input_lines[0].strip
  note = input_lines.length > 1 ? input_lines[1..-1] : []
  note.map! { |line|
    line.strip
  }.delete_if { |line|
    line =~ /^\s*$/
  }

  [title, note]
end

#get_view(title) ⇒ Object



365
366
367
368
369
370
# File 'lib/doing/wwid.rb', line 365

def get_view(title)
  if @config['views'].has_key?(title)
    return @config['views'][title]
  end
  false
end

#guess_section(frag) ⇒ Object



216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# File 'lib/doing/wwid.rb', line 216

def guess_section(frag)
  sections.each {|section| return section if frag.downcase == section.downcase}
  section = false
  re = frag.split('').join(".*?")
  sections.each {|sect|
    if sect =~ /#{re}/i
      $stderr.puts "Assuming you meant #{sect}"
      section = sect
      break
    end
  }
  unless section
    alt = guess_view(frag)
    if alt
      raise "Did you mean `doing view #{alt}`?"
    else
      raise "Invalid section: #{frag}"
    end
  end
  section.cap_first
end

#guess_view(frag) ⇒ Object



238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# File 'lib/doing/wwid.rb', line 238

def guess_view(frag)
  views.each {|view| return view if frag.downcase == view.downcase}
  view = false
  re = frag.split('').join(".*?")
  views.each {|v|
    if v =~ /#{re}/i
      $stderr.puts "Assuming you meant #{v}"
      view = v
      break
    end
  }
  unless view
    alt = guess_section(frag)
    if alt
      raise "Did you mean `doing show #{alt}`?"
    else
      raise "Invalid view: #{frag}"
    end
  end
  view
end

#lastObject



603
604
605
606
# File 'lib/doing/wwid.rb', line 603

def last
  cfg = @config['templates']['last']
  list_section({:section => @current_section, :wrap_width => cfg['wrap_width'], :count => 1, :format => cfg['date_format'], :template => cfg['template']})
end

#list_section(opt = {}) ⇒ Object



372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
# File 'lib/doing/wwid.rb', line 372

def list_section(opt={})
  opt[:count] ||= 0
  count = opt[:count] - 1
  opt[:section] ||= nil
  opt[:format] ||= @default_date_format
  opt[:template] ||= @default_template
  opt[:age] ||= "newest"
  opt[:order] ||= "desc"
  opt[:today] ||= false
  opt[:tag_filter] ||= false
  opt[:tags_color] ||= false
  opt[:times] ||= false

  if opt[:section].nil?
    opt[:section] = @content[choose_section]
  elsif opt[:section].class == String
    if opt[:section] =~ /^all$/i
      combined = {'items' => []}
      @content.each {|k,v|
        combined['items'] += v['items']
      }
      opt[:section] = combined
    else
      opt[:section] = @content[guess_section(opt[:section])]
    end
  end

  if opt[:section].class != Hash
    $stderr.puts "Invalid section object"
    return
  end

  items = opt[:section]['items'].sort_by{|item| item['date'] }

  if opt[:tag_filter] && !opt[:tag_filter]['tags'].empty?
    items.delete_if {|item|
      if opt[:tag_filter]['bool'] =~ /(AND|ALL)/
        score = 0
        opt[:tag_filter]['tags'].each {|tag|
          score += 1 if item['title'] =~ /@#{tag}/
        }
        score < opt[:tag_filter]['tags'].length
      elsif opt[:tag_filter]['bool'] =~ /NONE/
        del = false
        opt[:tag_filter]['tags'].each {|tag|
          del = true if item['title'] =~ /@#{tag}/
        }
        del
      elsif opt[:tag_filter]['bool'] =~ /(OR|ANY)/
        del = true
        opt[:tag_filter]['tags'].each {|tag|
          del = false if item['title'] =~ /@#{tag}/
        }
        del
      end
    }
  end

  if opt[:today]
    items.delete_if {|item|
      item['date'] < Date.today.to_time
    }.reverse!
  else
    if opt[:age] =~ /oldest/i
      items = items[0..count]
    else
      items = items.reverse[0..count]
    end
  end

  if opt[:order] =~ /^a/i
    items.reverse!
  end

  out = ""

  if opt[:csv]
    output = [['date','title','note'].to_csv]
    items.each {|i|
      note = ""
      if i['note']
        arr = i['note'].map{|line| line.strip}.delete_if{|e| e =~ /^\s*$/}
        note = arr.join("\n") unless arr.nil?
      end
      output.push([i['date'],i['title'],note].to_csv)
    }
    out = output.join()
  else

    items.each {|item|
      if (item.has_key?('note') && !item['note'].empty?) && @config[:include_notes]
        note_lines = item['note'].delete_if{|line| line =~ /^\s*$/ }.map{|line| "\t\t" + line.sub(/^\t\t/,'') }
        if opt[:wrap_width] && opt[:wrap_width] > 0
          width = opt[:wrap_width]
          note_lines.map! {|line|
            line.strip.gsub(/(.{1,#{width}})(\s+|\Z)/, "\t\\1\n")
          }
        end
        note = "\n#{note_lines.join("\n").chomp}"
      else
        note = ""
      end
      output = opt[:template].dup

      output.gsub!(/%[a-z]+/) do |m|
        if colors.has_key?(m.sub(/^%/,''))
          colors[m.sub(/^%/,'')]
        else
          m
        end
      end

      output.sub!(/%date/,item['date'].strftime(opt[:format]))

      if item['title'] =~ /@done\((\d{4}-\d\d-\d\d \d\d:\d\d.*?)\)/ && opt[:times]
        interval = get_interval(item)
      end
      interval ||= ""
      output.sub!(/%interval/,interval)

      output.sub!(/%shortdate/) {
        if item['date'] > Date.today.to_time
          item['date'].strftime('%_I:%M%P')
        elsif item['date'] > (Date.today - 7).to_time
          item['date'].strftime('%a %-I:%M%P')
        elsif item['date'].year == Date.today.year
          item['date'].strftime('%b %d, %-I:%M%P')
        else
          item['date'].strftime('%b %d %Y, %-I:%M%P')
        end
      }
      output.sub!(/%title/) {|m|
        if opt[:wrap_width] && opt[:wrap_width] > 0
          item['title'].gsub(/(.{1,#{opt[:wrap_width]}})(\s+|\Z)/, "\\1\n\t ").strip
        else
          item['title'].strip
        end
      }
      if opt[:tags_color]
        output.gsub!(/\s(@\S+(?:\(.*?\))?)/," #{colors[opt[:tags_color]]}\\1")
      end
      output.sub!(/%note/,note)
      output.sub!(/%odnote/,note.gsub(/\t\t/,"\t"))
      output.gsub!(/%hr(_under)?/) do |m|
        o = ""
        `tput cols`.to_i.times do
          o += $1.nil? ? "-" : "_"
        end
        o
      end


      out += output + "\n"
    }
  end

  return out
end

#read_configObject



133
134
135
136
137
138
139
# File 'lib/doing/wwid.rb', line 133

def read_config
  if File.exists? File.expand_path(DOING_CONFIG)
    return YAML.load_file(File.expand_path(DOING_CONFIG))
  else
    return {}
  end
end

#recent(count = 10, section = nil) ⇒ Object



596
597
598
599
600
601
# File 'lib/doing/wwid.rb', line 596

def recent(count=10,section=nil)
  cfg = @config['templates']['recent']
  section ||= @current_section
  section = guess_section(section)
  list_section({:section => section, :wrap_width => cfg['wrap_width'], :count => count, :format => cfg['date_format'], :template => cfg['template'], :order => "asc"})
end

#tag_last(opt = {}) ⇒ Object



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
# File 'lib/doing/wwid.rb', line 274

def tag_last(opt={})
  opt[:section] ||= @current_section
  opt[:count] ||= 1
  opt[:archive] ||= false
  opt[:tags] ||= ["done"]
  opt[:date] ||= false
  opt[:remove] ||= false

  opt[:section] = guess_section(opt[:section])

  if @content.has_key?(opt[:section])
    # sort_section(opt[:section])
    # items = @content[opt[:section]]['items'].sort_by{|item| item['date'] }.reverse

    @content[opt[:section]]['items'].each_with_index {|item, i|
      break if i == opt[:count]
      title = item['title']
      opt[:tags].each {|tag|
        if opt[:remove]
          title.gsub!(/ @#{tag}/,'')
        else
          unless title =~ /@#{tag}/
            if tag == "done" || opt[:date]
              title += " @#{tag}(#{Time.now.strftime('%F %R')})"
            else
              title += " @#{tag}"
            end
          end
        end
      }
      @content[opt[:section]]['items'][i]['title'] = title
    }

    if opt[:archive] && opt[:section] != "Archive"
      archived = @content[opt[:section]]['items'][0..opt[:count]-1]
      @content[opt[:section]]['items'] = @content[opt[:section]]['items'][opt[:count]..-1]
      @content['Archive']['items'] = archived + @content['Archive']['items']
    end

    write(@doing_file)
  else
    raise "Section not found"
  end
end

#tag_timesObject



608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
# File 'lib/doing/wwid.rb', line 608

def tag_times
  output = []
  return "" if @timers.length == 0
  max = @timers.keys.sort_by {|k| k.length }.reverse[0].length + 1

  total = @timers.delete("All")

  @timers.sort_by{|k,v| v }.reverse.each {|k,v|
    spacer = ""
    (max - k.length).times do
      spacer += " "
    end
    output.push("#{k}:#{spacer}#{"%02d:%02d:%02d" % fmt_time(v)}")
  }
  output.empty? ? "" : "\n--- Tag Totals ---\n" + output.join("\n") + "\n\nTotal tracked: #{"%02d:%02d:%02d" % fmt_time(total)}\n"
end

#today(times = false) ⇒ Object



591
592
593
594
# File 'lib/doing/wwid.rb', line 591

def today(times=false)
  cfg = @config['templates']['today']
  list_section({:section => @current_section, :wrap_width => cfg['wrap_width'], :count => 0, :format => cfg['date_format'], :template => cfg['template'], :order => "asc", :today => true, :times => times})
end

#viewsObject



351
352
353
# File 'lib/doing/wwid.rb', line 351

def views
  @config.has_key?('views') ? @config['views'].keys : []
end

#write(file = nil) ⇒ Object



319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
# File 'lib/doing/wwid.rb', line 319

def write(file=nil)
  if @other_content_top.empty?
    output = ""
  else
    output = @other_content_top.join("\n") + "\n"
  end
  @content.each {|title, section|
    output += section['original'] + "\n"
    output += list_section({:section => title, :template => "\t- %date | %title%note"})
  }
  output += @other_content_bottom.join("\n")
  if file.nil?
    $stdout.puts output
  else
    if File.exists?(File.expand_path(file))
      File.open(File.expand_path(file),'w+') do |f|
        f.puts output
      end
    end
  end
end