58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
package postgres
|
|
|
|
const getMapDataPosQuery = `
|
|
select o.id, o.type, o.mtime,
|
|
o.x, o.y, o.z,
|
|
o.posx, o.posy, o.posz,
|
|
oa.key, oa.value
|
|
from objects o
|
|
left join object_attributes oa on o.id = oa.objectid
|
|
where o.type = $1
|
|
and o.posx >= $2 and o.posy >= $3 and o.posz >= $4
|
|
and o.posx <= $5 and o.posy <= $6 and o.posz <= $7
|
|
order by o.id
|
|
`
|
|
const getMapDataWithAttributeLikePosQuery = `
|
|
select o.id, o.type, o.mtime,
|
|
o.x, o.y, o.z,
|
|
o.posx, o.posy, o.posz,
|
|
oa.key, oa.value
|
|
from objects o
|
|
left join object_attributes oa on o.id = oa.objectid
|
|
where o.id in (
|
|
select objectid from object_attributes where key = $8 and value ilike $9
|
|
)
|
|
and o.type = $1
|
|
and o.posx >= $2 and o.posy >= $3 and o.posz >= $4
|
|
and o.posx <= $5 and o.posy <= $6 and o.posz <= $7
|
|
order by o.id
|
|
`
|
|
|
|
const removeMapDataQuery = `
|
|
delete from objects where posx = $1 and posy = $2 and posz = $3
|
|
`
|
|
|
|
const addMapDataQuery = `
|
|
insert into
|
|
objects(x,y,z,posx,posy,posz,type,mtime)
|
|
values($1, $2, $3, $4, $5, $6, $7, $8)
|
|
returning id
|
|
`
|
|
|
|
const addMapDataAttributeQuery = `
|
|
insert into
|
|
object_attributes(objectid, key, value)
|
|
values($1, $2, $3)
|
|
`
|
|
|
|
const getSettingQuery = `
|
|
select value from settings where key = $1
|
|
`
|
|
|
|
const setSettingQuery = `
|
|
insert into settings(key, value)
|
|
values($1, $2)
|
|
on conflict(key)
|
|
do update set value = EXCLUDED.value
|
|
`
|