summaryrefslogtreecommitdiff
path: root/nopsyncd/tempstorage.lua
blob: 4ae437a6db7b572250575532dd9920c616e04cc6 (plain)
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
--
--  rhnop
--
--  Copyright (C) 2011 Christian Pointner <equinox@helsinki.at>
--
--  This file is part of rhnop.
--
--  rhnop is free software: you can redistribute it and/or modify
--  it under the terms of the GNU General Public License as published by
--  the Free Software Foundation, either version 3 of the License, or
--  any later version.
--
--  rhnop is distributed in the hope that it will be useful,
--  but WITHOUT ANY WARRANTY; without even the implied warranty of
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--  GNU General Public License for more details.
--
--  You should have received a copy of the GNU General Public License
--  along with rhnop. If not, see <http://www.gnu.org/licenses/>.
--

require "luasql.sqlite3"

local tempstorage = {}

function tempstorage:init()
   local err

   self.env, err = luasql.sqlite3()
   if self.env == nil then
      return nil, err
   end

   self.con, err = self.env:connect("nopsync.db")
   if self.con == nil then
      return nil, err
   end
   
   local ret, err = self.con:setautocommit(true)
   if ret == nil then
      return nil, err
   end

   local rows, err = self.con:execute("CREATE TABLE IF NOT EXISTS now (timestamp VARCHAR(16) PRIMARY KEY ASC NOT NULL, cart INT NOT NULL, len INT, showtitle VARCHAR(255), title VARCHAR(255), artist VARCHAR(255), album VARCHAR(255), ismusic BOOLEAN)")
   if rows == nil then
      return nil, err
   end

   return true
end

function tempstorage:getLastCart()
   local cur, err = self.con:execute("SELECT cart from (SELECT cart,timestamp,MAX(timestamp) AS tsmax FROM now) where timestamp = tsmax")
   if cur == nil then
      return nil, err
   end

   local cart = cur:fetch()
   if cart == nil then cart = 0 end
   return cart
end

function tempstorage:insertMusic(timestamp, cart, len, title, artist, album)
   cart = tonumber(cart)
   len = tonumber(len)
   if cart < 400000 or cart > 450000 then
      poolnum = 0
   else
      poolnum = math.floor(cart/1000) - 399
   end
   -- usage of undocumented escape function...
   local cur, err = self.con:execute("INSERT into now VALUES(" .. self.con:escape(timestamp) .. ", " .. cart .. ", " .. len .. ", 'Musikpool " .. poolnum .. "', '" .. self.con:escape(title) .. "', '" .. self.con:escape(artist) .."', '" .. self.con:escape(album) .. "', 1)")
   if cur == nil then
      return nil, err
   end

   return true
end

function tempstorage:close()
   if self.con then
      self.con:close()
   end

   if self.env then
      self.env:close()
   end
end

return tempstorage