summaryrefslogtreecommitdiff
path: root/web/biblio-by-month
blob: ee4204456ee821610066ecabd5fd2dfde1dfcaa8 (plain) (blame)
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
#!/usr/bin/env ruby

require 'date'

# TODO: this.
# Take a file as first argument, which is to be the file biblio.csv, containing
# all books read. Then formats this as a table. It sorts the books in
# the order [Ongoing, Completed, Yet to Read], and replaces several values with
# ones more appropriate for viewing pleasure.
# For the final column (index: 11, zero-indexed) we replace the contents with a
# link. So rd/the-progress-of-a-crime becomes
# For column 3 (Part), this is rounded as special logic.
# <a href="https://gabbott.dev/rd/the-progress-of-a-crime>Link</a>

require_relative './biblio-require'

if ARGV[0] == nil then 
  puts "<!-- No argument passed! ma-fmt-tbl Exitting early. -->\n"
  exit
end

# def do_header(h: str): str
# Returns the rows of the table corresponding to the header.
def do_header(h)
  s = "\t<tr class=\"header\">\n"
  values = h.split($delim)

  values.each_with_index do |value, idx|
    next if idx == 0 or idx == 6 or idx == 7 or idx == 8 or idx == 9
    s << ("\t\t<th>" + value + "</th>\n")
  end

  s << "\t</tr>\n"
  return s
end

# Make the string look sexy, ooh la la.
def sexify(val)
  # Round integers if they end .00.
  if val.end_with? ".00" then 
    integral = val.to_i
    unless integral == 0
      return integral.to_s
    end
  end

  # Transform strings.
  if $status_transform.has_key? (val)
    return $status_transform[val]
  end
  if $form_transform.has_key? (val)
    return $form_transform[val]
  end
  if $ownership_transform.has_key? (val)
    return $ownership_transform[val]
  end
  if $general_transform.has_key? (val)
    return $general_transform[val]
  end
  return val
end


ret=""
header=""

# Contains the buckets into which to put the entries.
unknown = [] # typeof(unknown) == array[str]
known   = {} # typeof(known)   == Hash[str => array[str]]

def written_month_of(ym)
  # Takes, e.g. "2023-09" and returns "September 2023". Invariant: entry must 
  # be of form "YYYY-MM".
  month = ym[-2..-1]
  ret = ""
  month_name = Date::MONTHNAMES[month.to_i]
  ret << month_name << " " << ym[0..3]
  return ret
end

def wrap_entries_in_table(entries, header)
  # Call after string made of all entries. This fn wraps them into the table.
  ret = ""
  ret << "<table class=\"biblio\">\n" \
      << header \
      << entries \
      << "</table>\n"

  return ret
end

def make_html_entry(entry) 
  # Makes a singular entry.
  ret = ""
  ret << "\t<tr>\n"
  entry.split($delim).each_with_index do |e, i|
    next if i == 0 or i == 6 or i == 7 or i == 8 or i == 9
    e = e.delete "\n"
    if i == 11 and e != "N/A" then 
      ret << "\t\t<td class=\"biblio-tr\"><a href=\"" \
          << ENV["WEBSITE_URL"] \
          << "/" \
          << e \
          << "\">Link</a></td>\n"
    else
      ret << "\t\t<td class=\"biblio-tr\">" \
          << sexify(e) \
          << "</td>\n"
    end
  end
  
  ret << "\t</tr>\n"
  return ret
end

File.foreach(ARGV[0]).with_index do |line, line_num|
  # 0. If entry not completed, skip, otherwise ...; [done]
  # 1. Figure out what month the line corresponds to;
  # 2. Chuck line into a bucket corresponding to entries in that month;
  # 3. Sorting that bucket into the right month, and make the table out of the
  #    entries.
  if line_num == 0 then # Must go first, otherwise skipped by checks below.
    header << do_header(line)
  end

  next if line == "\n" or line == "\t" or line == "" or line == " " or line == $delim
  next if not line.include? "completed;"

  finished_date = line.split($delim)[5]
  if finished_date == "" or finished_date == "\t" or finished_date == "N/A" then 
    unknown = unknown.append line
  else
    # Invariant: everything completed is either unknown date, or has at least
    # a year and a month (but not necessarily a day). We use this, e.g. 
    # "2023-01", as the index for the month.

    index = finished_date[0..6]
    # It is possible for the index not to be added here, so if this is the case
    # just add the index as [] and then we directly append to what we've just 
    # added.
    if not known.has_key? (index) 
      known[index] = []
    end

    # And now we can append.
    known[index] = (known[index] << line)
  end
end

# Sort hash, so we can simply iterate over it.
known = known.sort.reverse.to_h

# Make HTML for "Unknown"s
unknown = unknown.map! { |entry| make_html_entry(entry) }.join ("\n")
unknown_table = wrap_entries_in_table(unknown, header) # typeof == str

unkn_ret = ""
unkn_ret << "<h2>Unknown</h2>\n" \
         << unknown_table

kn_rets = []
# Make HTML for each month.
known.each do |key, values|
  # Here, values is an array of all entries. We want to merge then together,
  # and thereby get the table.
  values = values.map! { |value| make_html_entry(value) }.join ("\n")
  known_table = wrap_entries_in_table(values, header) # typeof == str
  kn_ret = ""
  kn_ret << "<h2>" \
         << written_month_of(key) \
         << "</h2>\n" \
         << known_table

  kn_rets = kn_rets.append(kn_ret)
end






# File.foreach(ARGV[0]).with_index do |line, line_num| 
#   next if line == "\n" or line == "\t" or line == "" or line == " " or line == $delim
# 
#   # Handle the first line - the header.
#   if line_num == 0 then 
#     header << do_header(line)
#   else
#     # We need to figure out whether it is ongoing, completed, or yet to read.
#     # To do this, we will check if the corresponding string is in the line.
#     if line.include? "completed;" then 
#       target = table_cmp 
#     elsif line.include? "ongoing;" then 
#       target = table_ongoing
#     elsif line.include? "dropped;" then 
#       target = table_drp
#     else
#       target = table_rest
#     end
# 
#   end
# end

# Echo the file. 

puts kn_rets
puts unkn_ret