spejstore-labelmaker/main.rb

236 lines
6.9 KiB
Ruby
Raw Normal View History

2017-05-28 00:53:46 +00:00
require 'rubygems'
require 'sinatra'
require 'rqrcode'
2017-05-28 00:53:46 +00:00
require 'prawn'
require 'prawn/measurements'
require 'prawn/qrcode'
require 'prawn-svg'
require 'color'
require 'excon'
require 'rmagick'
require 'json'
require 'zlib'
include Prawn::Measurements
# module Prawn
# module Text
# module Formatted #:nodoc:
# # @private
# class LineWrap #:nodoc:
# def whitespace()
# # Wrap by these special characters as well
# "&:/\\" +
# "\s\t#{zero_width_space()}"
# end
# end
# end
# end
# end
2017-09-25 11:37:13 +00:00
2017-05-28 00:53:46 +00:00
module Excon
class Response
def json!()
2017-09-25 11:37:13 +00:00
# Convenience function
2017-05-28 00:53:46 +00:00
JSON.parse(body)
end
end
end
2023-03-05 22:56:28 +00:00
BACKEND_URL = 'http://192.168.75.155:8000/api/1/'
2017-05-28 00:53:46 +00:00
CODE_PREFIX = "HTTP://I/"
2023-03-08 22:36:34 +00:00
templates = {
"prywatne" => { "name" => "Ten przedmiot jest własnością prywatną", "image" => "assets/person.svg"},
"hsowe" => { "name" => "Ten przedmiot należy do HSWro", "image" => "assets/hswro.svg"},
"hackuj" => { "name" => "Hackuj ile dusza zapragnie", "image" => "assets/glider.svg"},
"zepsute" => { "name" => "Ten przedmiot jest zepsuty", "image" => "assets/dead.svg"},
"eksploatuje" => { "name" => "Ten przedmiot eksploatuje materiały", "image" => "assets/money.svg"},
"niehackuj" => { "name" => "Nie hackuj tego przedmiotu", "image" => "assets/glider.svg"},
# meme
"bhp" => { "name" => "Gdy ci smutno, gdy ci źle, użyj pasty BHP", "image" => "assets/hswro.svg"},
}
2017-05-28 00:53:46 +00:00
def api(uri)
Excon.get(BACKEND_URL + uri + "/").json!
end
def render_identicode(data, id, extent)
pts = [[0, 0], [0, 1], [1, 1], [1, 0], [0, 0]]
4.times do |n|
color = Color::HSL.from_fraction((id % 6) / 6.0, 1.0, 0.3).html[1..6]
id /= 6
save_graphics_state do
soft_mask do
fill_color 'ffffff'
polygon = [pts[n], [0.5, 0.5], pts[n+1]].map{ |v| [v[0]*bounds.height, v[1]*bounds.height] }
fill_polygon(*(polygon))
end
print_qr_code data, stroke: false,
extent: extent, foreground_color: color,
pos: [bounds.left, bounds.top]
end
end
fill_color '000000'
end
DYMO_LABEL_SIZE = [89, 36]
2022-05-21 22:57:16 +00:00
ZEBRA_LABEL_SIZE = [50, 30]
2023-03-08 22:36:34 +00:00
def render_test(dict_or_api, extra, item_or_label_id, size: ZEBRA_LABEL_SIZE)
2023-03-05 22:56:28 +00:00
if dict_or_api
item = item_or_label_id
else
item = api("items/#{item_or_label_id}")
end
2017-05-28 00:53:46 +00:00
pdf = Prawn::Document.new(page_size: size.map { |x| mm2pt(x) },
2017-05-28 22:51:24 +00:00
margin: [2, 2, 2, 6].map { |x| mm2pt(x) }) do
2017-05-28 00:53:46 +00:00
font_families.update("DejaVuSans" => {
normal: "fonts/DejaVuSans.ttf",
italic: "fonts/DejaVuSans-Oblique.ttf",
bold: "fonts/DejaVuSans-Bold.ttf",
bold_italic: "fonts/DejaVuSans-BoldOblique.ttf"
})
font 'DejaVuSans'
2017-05-28 22:51:24 +00:00
# Width of right side
qr_size = [bounds.height / 2, 27].max
2017-05-28 22:51:24 +00:00
# Right side
bounding_box([bounds.right - qr_size, bounds.top], width: qr_size) do
2023-03-05 22:56:28 +00:00
2023-03-08 22:36:34 +00:00
if extra == "qr"
2023-03-05 22:56:28 +00:00
print_qr_code CODE_PREFIX + item['short_id'], stroke: false,
foreground_color: '000000',
extent: bounds.width, margin: 0, pos: bounds.top_left
2023-03-08 22:36:34 +00:00
elsif extra == "img"
image_size = [bounds.height / 2, 27].max
svg IO.read(item['image']), width: image_size, position: :right
2023-03-05 22:56:28 +00:00
end
owner_text = item["owner"] ? "owner: #{item['owner']}\n\n" : ""
metadata_text = owner_text # todo: creation date?
text_box metadata_text,
at: [bounds.right - qr_size, -7], size: 8, align: :right, overflow: :shrink_to_fit
2017-05-28 22:51:24 +00:00
end
# Left side
bounding_box(bounds.top_left, width: bounds.width - qr_size) do
text_box item['name'],
2017-09-25 11:37:13 +00:00
size: 40, align: :center, valign: :center, width: bounds.width-10,
inline_format: true, overflow: :shrink_to_fit, disable_wrap_by_char: true
2017-05-28 22:51:24 +00:00
end
2017-05-28 00:53:46 +00:00
end
pdf.render
end
2017-05-28 20:25:38 +00:00
set :bind, '0.0.0.0'
get '/api/1/preview/:id.pdf' do
2017-05-28 00:53:46 +00:00
headers["Content-Type"] = "application/pdf; charset=utf8"
2023-03-08 22:36:34 +00:00
render_test(false,"qr",params["id"])
2017-05-28 00:53:46 +00:00
end
get '/api/1/preview/:id.png' do
2017-05-28 00:53:46 +00:00
headers["Content-Type"] = "image/png"
img = Magick::ImageList.new()
2023-03-08 22:36:34 +00:00
img = img.from_blob(render_test(false,"qr",params["id"])){ self.density = 200 }.first
2017-05-28 00:53:46 +00:00
img.format = 'png'
img.background_color = 'white'
img.to_blob
end
post '/api/1/print/:id' do
2017-05-28 00:53:46 +00:00
temp = Tempfile.new('labelmaker')
2023-03-08 22:36:34 +00:00
temp.write(render_test(false,"qr", params["id"]))
2023-03-05 22:56:28 +00:00
temp.close
system("lpr -P Zebra #{temp.path}")
end
get '/api/1/templates/preview/:id' do
headers["Content-Type"] = "application/pdf; charset=utf8"
2023-03-08 22:36:34 +00:00
render_test(true, "img", templates[params["id"]])
2023-03-05 22:56:28 +00:00
end
get '/api/1/templates/print/:id' do
temp = Tempfile.new('labelmaker')
temp.write(render_hack(templates[params["id"]]))
temp.close
system("lpr -P Zebra #{temp.path}")
end
get '/api/1/nametag/preview/:id' do
headers["Content-Type"] = "application/pdf; charset=utf8"
2023-03-08 22:36:34 +00:00
render_test(true, "img",{"text" => params['id'], "image" => "assets/hswro.svg"})
2023-03-05 22:56:28 +00:00
end
get '/api/1/nametag/print/:id' do
temp = Tempfile.new('labelmaker')
2023-03-08 22:36:34 +00:00
temp.write(render_test(true, "img",{"text" => params['id'], "image" => "assets/hswro.svg"}))
2023-03-05 22:56:28 +00:00
temp.close
system("lpr -P Zebra #{temp.path}")
end
get '/api/1/customitem/preview/:owner/:name' do
test = {"owner" => params["owner"], "short_id" => "test", "name" => params["name"]}
headers["Content-Type"] = "application/pdf; charset=utf8"
2023-03-08 22:36:34 +00:00
render_test(true,"blank",test)
2023-03-05 22:56:28 +00:00
end
get '/api/1/customitem/print/:owner/:name' do
test = {"owner" => params["owner"], "short_id" => "test", "name" => params["name"]}
temp = Tempfile.new('labelmaker')
2023-03-08 22:36:34 +00:00
temp.write(render_test(true,"blank",test))
temp.close
system("lpr -P Zebra #{temp.path}")
end
# TESTY
get '/api/1/dupatest/preview' do
test = {"owner" => "test", "short_id" => "test", "name" => "test", "image" => "assets/glider.svg"}
headers["Content-Type"] = "application/pdf; charset=utf8"
render_test(true,"img",test)
end
get '/api/1/testgift/preview' do
test = {"name" => "Przedmiot podarował: lynx, małpa, franek", "image" => "assets/gift.svg"}
headers["Content-Type"] = "application/pdf; charset=utf8"
render_test(true,"img",test)
end
get '/api/1/testgift/print' do
test = {"name" => "Przedmiot podarował: lynx, małpa, franek", "image" => "assets/gift.svg"}
temp = Tempfile.new('labelmaker')
temp.write(render_test(true, "img",test))
temp.close
system("lpr -P Zebra #{temp.path}")
end
get '/api/1/testshow' do
test = {"owner" => "grzegorz_brzęczyszczykiewicz", "short_id" => "wszczebrzeszyniechrzaszczbrzmiwtrzcinie", "name" => "pchnąć w tę łódź jeża lub ośm skrzyń fig"}
headers["Content-Type"] = "application/pdf; charset=utf8"
render_test(true, "qr", test)
end
get '/api/1/testprint' do
test = {"owner" => "grzegorz_brzęczyszczykiewicz", "short_id" => "wszczebrzeszyniechrzaszczbrzmiwtrzcinie", "name" => "pchnąć w tę łódź jeża lub ośm skrzyń fig"}
temp = Tempfile.new('labelmaker')
temp.write(render_test(true,"qr",test))
2017-05-28 00:53:46 +00:00
temp.close
2023-03-05 22:56:28 +00:00
system("lpr -P Zebra #{temp.path}")
2017-05-28 00:53:46 +00:00
end