Module: Timetrap::CLI

Extended by:
CLI, Helpers
Included in:
CLI
Defined in:
lib/timetrap/cli.rb

Constant Summary collapse

USAGE =
<<-EOF

Timetrap - Simple Time Tracking

Usage: #{File.basename $0} COMMAND [OPTIONS] [ARGS...]

COMMAND can be abbreviated. For example `t in` and `t i` are equivalent.

COMMAND is one of:

  * archive - Move entries to a hidden sheet (by default named '_[SHEET]') so
  they're out of the way.
usage: t archive [--start DATE] [--end DATE] [SHEET]
-s, --start <date:qs>     Include entries that start on this date or later
-e, --end <date:qs>       Include entries that start on this date or earlier

  * backend - Open an sqlite shell to the database.
usage: t backend

  * configure - Write out a YAML config file. Print path to config file.  The
  file may contain ERB.
usage: t configure
Currently supported options are:
  round_in_seconds:       The duration of time to use for rounding with
                          the -r flag
  database_file:          The file path of the sqlite database
  append_notes_delimiter: delimiter used when appending notes via
                          t edit --append
  formatter_search_paths: an array of directories to search for user
                          defined fomatter classes
  default_formatter:      The format to use when display is invoked without a
                          `--format` option
  default_command:        The default command to run when calling t.
  auto_checkout:          Automatically check out of running entries when
                          you check in

  * display - Display the current timesheet or a specific. Pass `all' as SHEET
  to display all unarchived sheets or `full' to display archived and
  unarchived sheets.
usage: t display [--ids] [--start DATE] [--end DATE] [--format FMT] [SHEET | all | full]
-v, --ids                 Print database ids (for use with edit)
-s, --start <date:qs>     Include entries that start on this date or later
-e, --end <date:qs>       Include entries that start on this date or earlier
-f, --format <format>     The output format.  Valid built-in formats are
                          ical, csv, json, ids, factor, and text (default).
                          Documentation on defining custom formats can be
                          found in the README included in this
                          distribution.

  * edit - Alter an entry's note, start, or end time. Defaults to the active
entry. Defaults to the last entry to be checked out of if no entry is active.
usage: t edit [--id ID] [--start TIME] [--end TIME] [--append] [NOTES]
-i, --id <id:i>           Alter entry with id <id> instead of the running entry
-s, --start <time:qs>     Change the start time to <time>
-e, --end <time:qs>       Change the end time to <time>
-z, --append              Append to the current note instead of replacing it
                            the delimiter between appended notes is
                            configurable (see configure)
-m, --move <sheet>        Move to another sheet

  * in - Start the timer for the current timesheet.
usage: t in [--at TIME] [NOTES]
-a, --at <time:qs>        Use this time instead of now

  * kill - Delete a timesheet or an entry.
usage: t kill [--id ID] [TIMESHEET]
-i, --id <id:i>           Alter entry with id <id> instead of the running entry

  * list - Show the available timesheets.
usage: t list

  * now - Show all running entries.
usage: t now

  * out - Stop the timer for the a timesheet.
usage: t out [--at TIME] [TIMESHEET]
-a, --at <time:qs>        Use this time instead of now

  * resume - Start the timer for the current time sheet with the same note as
  the last entry on the sheet. If there is no entry it takes the passed note.
usage: t resume [--at TIME] [NOTES]
-a, --at <time:qs>        Use this time instead of now

  * sheet - Switch to a timesheet creating it if necessary. When no sheet is
  specified list all sheets. The special sheetname '-' will switch to the
  last active sheet.
usage: t sheet [TIMESHEET]

  * today - Shortcut for display with start date as the current day
usage: t today [--ids] [--format FMT] [SHEET | all]

  * week - Shortcut for display with start date set to monday of this week.
usage: t week [--ids] [--end DATE] [--format FMT] [SHEET | all]

  * month - Shortcut for display with start date set to the beginning of either
  this month or a specified month.
usage: t month [--ids] [--start MONTH] [--format FMT] [SHEET | all]

  OTHER OPTIONS

  -h, --help              Display this help.
  -r, --round             Round output to 15 minute start and end times.
  -y, --yes               Noninteractive, assume yes as answer to all prompts.
  --debug                 Display stack traces for errors.

  EXAMPLES

  # create the "MyTimesheet" timesheet
  $ t sheet MyTimesheet

  # check in 5 minutes ago with a note
  $ t in --at '5 minutes ago' doing some stuff

  # check out
  $ t out

  # view current timesheet
  $ t display

  Submit bugs and feature requests to http://github.com/samg/timetrap/issues
EOF

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Helpers

format_date, format_date_if_new, format_seconds, format_time, format_total, load_formatter, same_day?, selected_entries, sheet_name_from_string

Instance Attribute Details

#argsObject

Returns the value of attribute args.



4
5
6
# File 'lib/timetrap/cli.rb', line 4

def args
  @args
end

Instance Method Details

#archiveObject



187
188
189
190
191
192
193
194
195
196
197
# File 'lib/timetrap/cli.rb', line 187

def archive
  ee = selected_entries
  if ask_user "Archive #{ee.count} entries? "
    ee.all.each do |e|
      next unless e.end
      e.update :sheet => "_#{e.sheet}"
    end
  else
    warn "archive aborted!"
  end
end

#backendObject



246
247
248
# File 'lib/timetrap/cli.rb', line 246

def backend
  exec "sqlite3 #{DB_NAME}"
end

#commandsObject



141
142
143
# File 'lib/timetrap/cli.rb', line 141

def commands
  Timetrap::CLI::USAGE.scan(/\* \w+/).map{|s| s.gsub(/\* /, '')}
end

#configureObject



199
200
201
202
# File 'lib/timetrap/cli.rb', line 199

def configure
  Config.configure!
  puts "Config file is at #{Config::PATH.inspect}"
end

#deprecated_commandsObject



145
146
147
148
149
150
151
# File 'lib/timetrap/cli.rb', line 145

def deprecated_commands
  {
    'switch' => 'sheet',
    'running' => 'now',
    'format' => 'display'
  }
end

#displayObject



304
305
306
307
308
309
310
311
# File 'lib/timetrap/cli.rb', line 304

def display
  entries = selected_entries.order(:start).all
  if entries == []
    warn "No entries were selected to display."
  else
    puts format_entries(entries)
  end
end

#editObject



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
# File 'lib/timetrap/cli.rb', line 204

def edit
  entry = case
          when args['-i']
            warn "Editing entry with id #{args['-i'].inspect}"
            Entry[args['-i']]
          when Timer.active_entry
            warn "Editing running entry"
            Timer.active_entry
          when Timer.last_checkout
            warn  "Editing last entry you checked out of"
            Timer.last_checkout
          end

  unless entry
    warn "Can't find entry"
    return
  end
  warn ""

  entry.update :start => args['-s'] if args['-s'] =~ /.+/
  entry.update :end => args['-e'] if args['-e'] =~ /.+/

  # update sheet
  if args['-m'] =~ /.+/
    if entry == Timer.active_entry
      Timer.current_sheet = args['-m']
    end
    entry.update :sheet => args['-m']
  end

  # update notes
  if unused_args =~ /.+/
    note = unused_args
    if args['-z']
      note = [entry.note, note].join(Config['append_notes_delimiter'])
    end
    entry.update :note => note
  end

  puts format_entries(entry)
end

#handle_invalid_command(command) ⇒ Object



170
171
172
173
174
175
176
177
178
179
180
# File 'lib/timetrap/cli.rb', line 170

def handle_invalid_command(command)
  if !command
    puts USAGE
  elsif mapping = deprecated_commands.detect{|(k,v)| k =~ %r|^#{command}|}
    deprecated, current = *mapping
    warn "The #{deprecated.inspect} command is deprecated in favor of #{current.inspect}. Sorry for the inconvenience."
    send current
  else
    warn "Invalid command: #{command.inspect}"
  end
end

#inObject



250
251
252
253
254
255
256
257
258
# File 'lib/timetrap/cli.rb', line 250

def in
  if Config['auto_checkout']
    Timer.stop_all(args['-a']).each do |checked_out_of|
      warn "Checked out of sheet #{checked_out_of.sheet.inspect}."
    end
  end
  Timer.start unused_args, args['-a']
  warn "Checked into sheet #{Timer.current_sheet.inspect}."
end

#invokeObject



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

def invoke
  args['-h'] ? puts(USAGE) : invoke_command_if_valid
rescue StandardError, LoadError => e
  raise e if args['--debug']
  warn e.message
  exit 1 unless defined? TEST_MODE
end

#invoke_command_if_validObject



153
154
155
156
157
158
159
160
161
162
163
164
# File 'lib/timetrap/cli.rb', line 153

def invoke_command_if_valid
  if args.unused.empty? && Timetrap::Config['default_command']
    self.args = Getopt::Declare.new(USAGE.dup, Timetrap::Config['default_command'])
  end
  command = args.unused.shift
  set_global_options
  case (valid = commands.select{|name| name =~ %r|^#{command}|}).size
  when 1 then send valid[0]
  else
    handle_invalid_command(command)
  end
end

#killObject



280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# File 'lib/timetrap/cli.rb', line 280

def kill
  if e = Entry[args['-i']]
    out = "are you sure you want to delete entry #{e.id}? "
    out << "(#{e.note}) " if e.note.to_s =~ /.+/
    if ask_user out
      e.destroy
      warn "it's dead"
    else
      warn "will not kill"
    end
  elsif (sheets = Entry.map{|e| e.sheet }.uniq).include?(sheet = unused_args)
    victims = Entry.filter(:sheet => sheet).count
    if ask_user "are you sure you want to delete #{victims} entries on sheet #{sheet.inspect}? "
      Entry.filter(:sheet => sheet).destroy
      warn "killed #{victims} entries"
    else
      warn "will not kill"
    end
  else
    victim = args['-i'] ? args['-i'].to_s.inspect : sheet.inspect
    warn ["can't find #{victim} to kill", 'sheets:', *sheets].join("\n")
  end
end

#listObject



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
# File 'lib/timetrap/cli.rb', line 332

def list
  sheets = ([Timer.current_sheet] | Entry.sheets).map do |sheet|
    sheet_atts = {:total => 0, :running => 0, :today => 0}
    entries = Timetrap::Entry.filter(:sheet => sheet)
    if entries.empty?
      sheet_atts.merge(:name => sheet)
    else
      entries.inject(sheet_atts) do |m, e|
        e_end = e.end_or_now
        m[:name] ||= sheet
        m[:total] += (e_end.to_i - e.start.to_i)
        m[:running] += (e_end.to_i - e.start.to_i) unless e.end
        m[:today] += (e_end.to_i - e.start.to_i) if same_day?(Time.now, e.start)
        m
      end
    end
  end.sort_by{|sheet| sheet[:name].downcase}
  width = sheets.sort_by{|h|h[:name].length }.last[:name].length + 4
  width = 10 if width < 10
  puts " %-#{width}s%-12s%-12s%s" % ["Timesheet", "Running", "Today", "Total Time"]
  sheets.each do |sheet|
    star = sheet[:name] == Timer.current_sheet ? '*' : sheet[:name] == Timer.last_sheet ? '-' : ' '
    puts "#{star}%-#{width}s%-12s%-12s%s" % [
      sheet[:running],
      sheet[:today],
      sheet[:total]
    ].map(&method(:format_seconds)).unshift(sheet[:name])
  end
end

#monthObject



385
386
387
388
389
390
391
392
393
394
395
396
397
# File 'lib/timetrap/cli.rb', line 385

def month
  d = Chronic.parse( args['-s'] || Date.today )

  beginning_of_month = Date.new( d.year, d.month )
  end_of_month = if d.month == 12 # handle edgecase
    Date.new( d.year + 1, 1) - 1
  else
    Date.new( d.year, d.month+1 ) - 1
  end
  args['-s'] = beginning_of_month.to_s
  args['-e'] = end_of_month.to_s
  display
end

#nowObject



362
363
364
365
366
367
368
369
370
371
372
373
# File 'lib/timetrap/cli.rb', line 362

def now
  if !Timer.running?
    warn "*#{Timer.current_sheet}: not running"
  end
  Timer.running_entries.each do |entry|
    current = entry.sheet == Timer.current_sheet
    out = current ? '*' : ' '
    out << "#{entry.sheet}: #{format_duration(entry.duration)}".gsub(/  /, ' ')
    out << " (#{entry.note})" if entry.note =~ /.+/
    puts out
  end
end

#outObject



271
272
273
274
275
276
277
278
# File 'lib/timetrap/cli.rb', line 271

def out
  sheet = sheet_name_from_string(unused_args)
  if Timer.stop sheet, args['-a']
    warn "Checked out of sheet #{sheet.inspect}."
  else
    warn "No running entry on sheet #{sheet.inspect}."
  end
end

#parse(arguments) ⇒ Object



129
130
131
# File 'lib/timetrap/cli.rb', line 129

def parse arguments
  args.parse arguments
end

#resumeObject



260
261
262
263
264
265
266
267
268
269
# File 'lib/timetrap/cli.rb', line 260

def resume
  last_entry = Timer.entries(Timer.current_sheet).last
  warn "No entry yet on this sheet yet. Started a new entry." unless last_entry
  note = (last_entry ? last_entry.note : nil)
  warn "Resuming #{note.inspect} from entry ##{last_entry.id}" if note

  self.unused_args = note || unused_args

  self.in
end

#set_global_optionsObject

currently just sets whether output should be rounded to 15 min intervals



183
184
185
# File 'lib/timetrap/cli.rb', line 183

def set_global_options
  Timetrap::Entry.round = true if args['-r']
end

#sheetObject



313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
# File 'lib/timetrap/cli.rb', line 313

def sheet
  sheet = unused_args
  case sheet
  when nil, ''
    list
    return
  when '-'
    if Timer.last_sheet
      sheet = Timer.last_sheet
    else
      warn 'LAST_SHEET is not set'
      return
    end
  end

  Timer.current_sheet = sheet
  warn "Switching to sheet #{sheet.inspect}"
end

#todayObject



375
376
377
378
# File 'lib/timetrap/cli.rb', line 375

def today
    args['-s'] = Date.today.to_s
    display
end

#valid_command(command) ⇒ Object



166
167
168
# File 'lib/timetrap/cli.rb', line 166

def valid_command(command)
   return commands.include?(command)
end

#weekObject



380
381
382
383
# File 'lib/timetrap/cli.rb', line 380

def week
  args['-s'] = Date.today.wday == 1 ? Date.today.to_s : Date.parse(Chronic.parse(%q(last monday)).to_s).to_s
  display
end