diff --git a/s/item.tpl.html b/s/item.tpl.html index 34dcfc5..b8e4032 100644 --- a/s/item.tpl.html +++ b/s/item.tpl.html @@ -19,7 +19,7 @@

404 - Not f0cked

{% endif %} -
{% if next != null %} | {% endif %} random {% if prev != null %} | {% endif %}

+
{% if last != null %}<- newest{% endif %}{% if next != null %} | {% endif %} random {% if prev != null %} | {% endif %}{% if first != null %}oldest ->{% endif %}

src: {{ src }}
dest: {{ dest }}
diff --git a/src/main.js b/src/main.js index 9a761be..3dc6d07 100644 --- a/src/main.js +++ b/src/main.js @@ -219,7 +219,7 @@ http.createServer((req, res) => { }); } else if(Number.isInteger(parseInt(url))) { // itempage - sql.query("select * from `f0ck`.`items` where `id` = ? limit 1; select `id` from `f0ck`.`items` where `id` = (select min(`id`) from `f0ck`.`items` where `id` > ?); select `id` from `f0ck`.`items` where `id` = (select max(`id`) from `f0ck`.`items` where `id` < ?)", [url, url, url], (err, rows, fields) => { + sql.query("select * from `f0ck`.`items` where `id` = ? limit 1; select `id` from `f0ck`.`items` where `id` = (select min(`id`) from `f0ck`.`items` where `id` > ?); select `id` from `f0ck`.`items` where `id` = (select max(`id`) from `f0ck`.`items` where `id` < ?); select `id` from `f0ck`.`items` order by `id` asc limit 1; select `id` from `f0ck`.`items` order by `id` desc limit 1", [url, url, url], (err, rows, fields) => { var tpl = swig.compile(templates.item); var data = { id: '', @@ -232,7 +232,9 @@ http.createServer((req, res) => { userchannel: '', usernetwork: '', next: null, - prev: null + prev: null, + first: null, + last: null }; if(rows[0].length) { var e = rows[0][0]; @@ -264,6 +266,10 @@ http.createServer((req, res) => { data.next = rows[1][0].id; if(rows[2].length) data.prev = rows[2][0].id; + if(rows[3].length) + data.first = rows[3][0].id; + if(rows[4].length) + data.first = rows[4][0].id; } res.writeHead(200, { 'Content-Type': 'text/html' }); res.end(tpl(data), 'utf-8');