-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathread.rb
62 lines (49 loc) · 1.78 KB
/
read.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
require_relative 'lib/post'
require_relative 'lib/memo'
require_relative 'lib/link'
require_relative 'lib/task'
require 'optparse'
options = {}
OptionParser.new do |opt|
opt.banner = 'Usage: read.rb [options]'
opt.on('-h', 'Prints this help') do
puts opt
exit
end
opt.on('--type POST_TYPE', 'какой тип постов показывать ' \
'(по умолчанию любой)') { |o| options[:type] = o }
# Опция --id передает номер записи в базе данных (идентификатор)
opt.on('--id POST_ID', 'если задан id — показываем подробно ' \
' только этот пост') { |o| options[:id] = o }
# Опция --limit передает, сколько записей мы хотим прочитать из базы
opt.on('--limit NUMBER', 'сколько последних постов показать ' \
'(по умолчанию все)') { |o| options[:limit] = o }
end.parse!
result = if options[:id].nil?
Post.find_all(options[:limit], options[:type])
else
Post.find_by_id(options[:id])
end
if result.is_a? Post
puts "Запись #{result.class.name}, id = #{options[:id]}"
result.to_strings.each do |line|
puts line
end
else
print '| id '
print '| @type '
print '| @created_at '
print '| @text '
print '| @url '
print '| @due_date '
print '|'
result&.each do |row|
puts
row.each do |element|
element_text = "| #{element.to_s.delete("\n")[0..17]}"
element_text << ' ' * (21 - element_text.size)
print element_text
end
end
end
puts