Compare commits

...

3 Commits

Author SHA1 Message Date
Roberto Alsina 9263815727 * Misma funcion query que la otra funcion
* Mejor soporte de nombres que no estan en la base de datos
2023-06-04 18:17:22 -03:00
Roberto Alsina a55784a4cd Valor default para title 2023-06-04 18:16:21 -03:00
Roberto Alsina 4c46cb2958 Sync format_buffer code 2023-06-04 17:43:51 -03:00
2 changed files with 26 additions and 15 deletions

View File

@ -4,7 +4,7 @@ require "ishi/html"
require "json"
class Handler
def format_buffer(buffer, canvas_name, title)
def format_buffer(buffer, canvas_name, title = "")
# Process the gnuplot output so it works in the page
#
# buffer is the Ishi output

View File

@ -6,16 +6,17 @@ require "json"
require "uuid"
class Handler
def format_buffer(buffer, canvas_name)
def format_buffer(buffer, canvas_name, title = "")
# Process the gnuplot output so it works in the page
#
# buffer is the Ishi output
# name is a string to replace for gnuplot_canvas so
# we can have multiple charts in a page
# we can have multiple charts in a page
# title is added on top of the chart
html = buffer.to_s.split("\n")
html = html[html.index("<script type=\"text/javascript\">")..html.index("</script>")]
html = html.join("\n") + %(
html = "<b>#{title}</b>" + html.join("\n") + %(
<div class="gnuplot">
<canvas id="Tile" width="32" height="32" hidden></canvas>
<table class="plot">
@ -30,12 +31,17 @@ class Handler
</script>
</div>
)
# This ID needs to be unique in case
# This ID needs to be unique in case
# we have 2 charts in the same page
html.gsub("gnuplot_canvas", canvas_name)
end
def query(sql)
# Runs a SQL query against the Rqlite database.
#
# Returns an array of values (which need to be casted)
# Or nil if there are no results
params = URI::Params.encode({"q": sql})
response = HTTP::Client.get URI.new(
"http",
@ -47,12 +53,10 @@ class Handler
# This API only has a values key when there are actual results
results = JSON.parse(response.body)["results"][0].as_h
if results.has_key?("values")
return results["values"].as_a.map { |r|
[r[0].as_i, r[1].as_i]
}
return results["values"].as_a
end
# Return a dummy result
[[1922, 0]]
# No result, return nil
nil
end
nombres = [] of String
@ -92,15 +96,22 @@ class Handler
sql = "SELECT anio, contador FROM nombres WHERE nombre = '#{nombre}' ORDER BY anio"
x = Array(Int32).new
y = Array(Int32).new
query(sql).map { |r|
x << r[0]
y << r[1]
}
results = query(sql)
if results.nil? # No results, all 0s
x = (1922..2015).to_a
y = x.map {|_| 0}
else # We got results
displayed = true
results.map { |r|
x << r[0].as_i
y << r[1].as_i
}
end
plot(x, y, title: nombre.titleize, style: :lines, linewidth: 3)
}
end
{
return {
body: format_buffer(buffer, "historico"),
status_code: 200,
headers: HTTP::Headers{"Content-Type" => "text/html"},