-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathbookmarks.php
162 lines (162 loc) · 10.4 KB
/
bookmarks.php
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<?php
/**
* https://github.com/Bigjoos/
* Licence Info: GPL
* Copyright (C) 2010 U-232 v.3
* A bittorrent tracker source based on TBDev.net/tbsource/bytemonsoon.
* Project Leaders: Mindless, putyn.
*
*/
//==bookmarks.php - by pdq
require_once (dirname(__FILE__).DIRECTORY_SEPARATOR.'include'.DIRECTORY_SEPARATOR.'bittorrent.php');
require_once (INCL_DIR.'user_functions.php');
require_once (INCL_DIR.'torrenttable_functions.php');
require_once (INCL_DIR.'pager_functions.php');
dbconn(false);
loggedinorreturn();
$lang = array_merge(load_language('global') , load_language('torrenttable_functions'));
$htmlout = '';
function bookmarktable($res, $variant = "index")
{
global $INSTALLER09, $CURUSER, $lang;
$htmlout = '';
$htmlout.= "
<span>Icon Legend :
<img src='{$INSTALLER09['pic_base_url']}aff_cross.gif' alt='Delete Bookmark' border='none' /> = Delete Bookmark |
<img src='{$INSTALLER09['pic_base_url']}zip.gif' alt='Download Bookmark' border='none' /> = Download Torrent |
<img alt='Bookmark is Private' src='{$INSTALLER09['pic_base_url']}key.gif' border='none' /> = Bookmark is Private |
<img src='{$INSTALLER09['pic_base_url']}public.gif' alt='Bookmark is Public' border='none' /> = Bookmark is Public</span>
<table border='1' cellspacing='0' cellpadding='5'>
<tr>
<td class='colhead' align='center'>{$lang["torrenttable_type"]}</td>
<td class='colhead' align='left'>{$lang["torrenttable_name"]}</td>";
$htmlout.= ($variant == 'index' ? '<td class="colhead" align="center">Delete</td><td class="colhead" align="right">' : '').'Download</td><td class="colhead" align="right">Share</td>';
if ($variant == "mytorrents") {
$htmlout.= "<td class='colhead' align='center'>{$lang["torrenttable_edit"]}</td>\n";
$htmlout.= "<td class='colhead' align='center'>{$lang["torrenttable_visible"]}</td>\n";
}
$htmlout.= "<td class='colhead' align='right'>{$lang["torrenttable_files"]}</td>
<td class='colhead' align='right'>{$lang["torrenttable_comments"]}</td>
<td class='colhead' align='center'>{$lang["torrenttable_added"]}</td>
<td class='colhead' align='center'>{$lang["torrenttable_size"]}</td>
<td class='colhead' align='center'>{$lang["torrenttable_snatched"]}</td>
<td class='colhead' align='right'>{$lang["torrenttable_seeders"]}</td>
<td class='colhead' align='right'>{$lang["torrenttable_leechers"]}</td>";
if ($variant == 'index') $htmlout.= "<td class='colhead' align='center'>{$lang["torrenttable_uppedby"]}</td>\n";
$htmlout.= "</tr>\n";
$categories = genrelist();
foreach ($categories as $key => $value) $change[$value['id']] = array(
'id' => $value['id'],
'name' => $value['name'],
'image' => $value['image']
);
while ($row = mysqli_fetch_assoc($res)) {
$row['cat_name'] = htmlsafechars($change[$row['category']]['name']);
$row['cat_pic'] = htmlsafechars($change[$row['category']]['image']);
$id = (int)$row["id"];
$htmlout.= "<tr>\n";
$htmlout.= "<td align='center' style='padding: 0px'>";
if (isset($row["cat_name"])) {
$htmlout.= '<a href="browse.php?cat='.(int)$row['category'].'">';
if (isset($row["cat_pic"]) && $row["cat_pic"] != "") $htmlout.= "<img border='0' src='{$INSTALLER09['pic_base_url']}caticons/{$CURUSER['categorie_icon']}/".htmlsafechars($row['cat_pic'])."' alt='".htmlsafechars($row['cat_name'])."' />";
else {
$htmlout.= htmlsafechars($row["cat_name"]);
}
$htmlout.= "</a>";
} else {
$htmlout.= "-";
}
$htmlout.= "</td>\n";
$dispname = htmlsafechars($row["name"]);
$htmlout.= "<td align='left'><a href='details.php?";
if ($variant == "mytorrents") $htmlout.= "returnto=".urlencode($_SERVER["REQUEST_URI"])."&";
$htmlout.= "id=$id";
if ($variant == "index") $htmlout.= "&hit=1";
$htmlout.= "'><b>$dispname</b></a> </td>\n";
$htmlout.= ($variant == "index" ? "<td align='center'><a href='bookmark.php?torrent={$id}&action=delete'><img src='{$INSTALLER09['pic_base_url']}aff_cross.gif' border='0' alt='Delete Bookmark!' title='Delete Bookmark!' /></a></td>" : "");
$htmlout.= ($variant == "index" ? "<td align='center'><a href='download.php?torrent={$id}'><img src='{$INSTALLER09['pic_base_url']}zip.gif' border='0' alt='Download Bookmark!' title='Download Bookmark!' /></a></td>" : "");
$bm = sql_query("SELECT * FROM bookmarks WHERE torrentid=".sqlesc($id)." && userid=".sqlesc($CURUSER['id']));
$bms = mysqli_fetch_assoc($bm);
if ($bms['private'] == 'yes' && $bms['userid'] == $CURUSER['id']) {
$makepriv = "<a href='bookmark.php?torrent={$id}&action=public'><img src='{$INSTALLER09['pic_base_url']}key.gif' border='0' alt='Mark Bookmark Public!' title='Mark Bookmark Public!' /></a>";
$htmlout.= "".($variant == "index" ? "<td align='center'>{$makepriv}</td>" : "");
} elseif ($bms['private'] == 'no' && $bms['userid'] == $CURUSER['id']) {
$makepriv = "<a href='bookmark.php?torrent=".$id."&action=private'><img src='{$INSTALLER09['pic_base_url']}public.gif' border='0' alt='Mark Bookmark Private!' title='Mark Bookmark Private!' /></a>";
$htmlout.= "".($variant == "index" ? "<td align='center'>{$makepriv}</td>" : "");
}
if ($variant == "mytorrents") $htmlout.= "</td><td align='center'><a href='edit.php?returnto=".urlencode($_SERVER["REQUEST_URI"])."&id=".(int)$row["id"]."'>{$lang["torrenttable_edit"]}</a>\n";
if ($variant == "mytorrents") {
$htmlout.= "<td align='right'>";
if ($row["visible"] == "no") $htmlout.= "<b>".$lang["torrenttable_not_visible"]."</b>";
else $htmlout.= "".$lang["torrenttable_visible"]."";
$htmlout.= "</td>\n";
}
if ($row["type"] == "single") {
$htmlout.= "<td align='right'>".(int)$row['numfiles']."</td>\n";
} else {
if ($variant == "index") {
$htmlout.= "<td align='right'><b><a href='filelist.php?id=$id'>".(int)$row['numfiles']."</a></b></td>\n";
} else {
$htmlout.= "<td align='right'><b><a href='filelist.php?id=$id'>".(int)$row['numfiles']."</a></b></td>\n";
}
}
if (!$row["comments"]) {
$htmlout.= "<td align='right'>".(int)$row['comments']."</td>\n";
} else {
if ($variant == "index") {
$htmlout.= "<td align='right'><b><a href='details.php?id=$id&hit=1&tocomm=1'>".(int)$row['comments']."</a></b></td>\n";
} else {
$htmlout.= "<td align='right'><b><a href='details.php?id=$id&page=0#startcomments'>".(int)$row['comments']."</a></b></td>\n";
}
}
$htmlout.= "<td align='center'><span style='white-space: nowrap;'>".str_replace(",", "<br />", get_date($row['added'], ''))."</span></td>\n";
$htmlout.= "<td align='center'>".str_replace(" ", "<br />", mksize($row["size"]))."</td>\n";
if ($row["times_completed"] != 1) $_s = "".$lang["torrenttable_time_plural"]."";
else $_s = "".$lang["torrenttable_time_singular"]."";
$htmlout.= "<td align='center'><a href='snatches.php?id=$id'>".number_format($row["times_completed"])."<br />$_s</a></td>\n";
if ((int)$row["seeders"]) {
if ($variant == "index") {
if ($row["leechers"]) $ratio = (int)$row["seeders"] / (int)$row["leechers"];
else $ratio = 1;
$htmlout.= "<td align='right'><b><a href='peerlist.php?id=$id#seeders'><font color='".get_slr_color($ratio)."'>".(int)$row['seeders']."</font></a></b></td>\n";
} else {
$htmlout.= "<td align='right'><b><a class='".linkcolor($row["seeders"])."' href='peerlist.php?id=$id#seeders'>".(int)$row['seeders']."</a></b></td>\n";
}
} else {
$htmlout.= "<td align='right'><span class='".linkcolor($row["seeders"])."'>".(int)$row['seeders']."</span></td>\n";
}
if ((int)$row["leechers"]) {
if ($variant == "index") $htmlout.= "<td align='right'><b><a href='peerlist.php?id=$id#leechers'>".number_format($row["leechers"])."</a></b></td>\n";
else $htmlout.= "<td align='right'><b><a class='".linkcolor($row["leechers"])."' href='peerlist.php?id=$id#leechers'>".(int)$row['leechers']."</a></b></td>\n";
} else $htmlout.= "<td align='right'>0</td>\n";
if ($variant == "index") $htmlout.= "<td align='center'>".(isset($row["username"]) ? ("<a href='userdetails.php?id=".(int)$row['owner']."'><b>".htmlsafechars($row["username"])."</b></a>") : "<i>(".$lang["torrenttable_unknown_uploader"].")</i>")."</td>\n";
$htmlout.= "</tr>\n";
}
$htmlout.= "</table>\n";
return $htmlout;
}
//==Bookmarks
$userid = isset($_GET['id']) ? (int)$_GET['id'] : $CURUSER['id'];
if (!is_valid_id($userid)) stderr("Error", "Invalid ID.");
if ($userid != $CURUSER["id"]) stderr("Error", "Access denied. Try <a href=\"sharemarks.php?id=".$userid."\">Here</a>");
$res = sql_query("SELECT id, username FROM users WHERE id = ".sqlesc($userid)) or sqlerr(__FILE__, __LINE__);
$arr = mysqli_fetch_array($res);
$htmlout.= "<h1>My Bookmarks</h1>";
$htmlout.= "<b><a href='sharemarks.php?id=".$CURUSER['id']."'>My Sharemarks</a></b>";
$res = sql_query("SELECT COUNT(id) FROM bookmarks WHERE userid = ".sqlesc($userid)) or sqlerr(__FILE__, __LINE__);
$row = mysqli_fetch_array($res);
$count = $row[0];
$torrentsperpage = $CURUSER["torrentsperpage"];
if (!$torrentsperpage) $torrentsperpage = 25;
if ($count) {
$pager = pager($torrentsperpage, $count, "bookmarks.php?&");
$query1 = "SELECT bookmarks.id as bookmarkid, torrents.username, torrents.owner, torrents.id, torrents.name, torrents.type, torrents.comments, torrents.leechers, torrents.seeders, torrents.save_as, torrents.numfiles, torrents.added, torrents.filename, torrents.size, torrents.views, torrents.visible, torrents.hits, torrents.times_completed, torrents.category FROM bookmarks LEFT JOIN torrents ON bookmarks.torrentid = torrents.id WHERE bookmarks.userid =".sqlesc($userid)." ORDER BY torrents.id DESC {$pager['limit']}" or sqlerr(__FILE__, __LINE__);
$res = sql_query($query1) or sqlerr(__FILE__, __LINE__);
}
if ($count) {
$htmlout.= $pager['pagertop'];
$htmlout.= bookmarktable($res, "index", TRUE);
$htmlout.= $pager['pagerbottom'];
}
echo stdhead('Bookmarks').$htmlout.stdfoot();
?>