forked from Bigjoos/U-232
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsharemarks.php
More file actions
228 lines (194 loc) · 10.3 KB
/
sharemarks.php
File metadata and controls
228 lines (194 loc) · 10.3 KB
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<?php
/**
* http://btdev.net:1337/svn/test/Installer09_Beta
* Licence Info: GPL
* Copyright (C) 2010 BTDev Installer v.1
* A bittorrent tracker source based on TBDev.net/tbsource/bytemonsoon.
* Project Leaders: Mindless,putyn.
**/
//== Sharemarks.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');
require_once(INCL_DIR.'html_functions.php');
dbconn(false);
loggedinorreturn();
$lang = array_merge( load_language('global'), load_language('torrenttable_functions') );
$htmlout='';
function sharetable($res, $variant = "index") {
global $TBDEV, $CURUSER, $lang;
$htmlout='';
$htmlout.=
<span>Icon Legend :
<img src='{$TBDEV['pic_base_url']}plus.gif' alt='Delete Bookmark' border='none' /> = Delete Bookmark |
<img src='{$TBDEV['pic_base_url']}download.gif' alt='Download Bookmark' border='none' />= Download Torrent |
<img alt='Bookmark is Private' src='{$TBDEV['pic_base_url']}key.gif' border='none' /> = Bookmark is Private |
<img src='{$TBDEV['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'>Type</td>
<td class='colhead' align='left'>Name</td>";
$userid = (int)$_GET['id'];
if ($CURUSER['id'] == $userid)
$htmlout.= ($variant == 'index' ? '<td class="colhead" align="center">Download</td><td class="colhead" align="right">' : '').'Delete</td>';
else
$htmlout.= ($variant == 'index' ? '<td class="colhead" align="center">Download</td><td class="colhead" align="right">' : '').'Bookmark</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";
while ($row = mysql_fetch_assoc($res))
{
$id = $row["id"];
$htmlout .= "<tr>\n";
$htmlout .= "<td align='center' style='padding: 0px'>";
if (isset($row["cat_name"]))
{
$htmlout .= "<a href='browse.php?cat={$row['category']}'>";
if (isset($row["cat_pic"]) && $row["cat_pic"] != "")
$htmlout .= "<img border='0' src='{$TBDEV['pic_base_url']}caticons/{$row['cat_pic']}' alt='{$row['cat_name']}' />";
else
{
$htmlout .= $row["cat_name"];
}
$htmlout .= "</a>";
}
else
{
$htmlout .= "-";
}
$htmlout .= "</td>\n";
$dispname = htmlspecialchars($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>";
$htmlout.= ($variant == "index" ? "<td align='center'><a href=\"download.php?torrent=".$id."\"><img src='".$TBDEV['pic_base_url']."download.gif' border='0' alt='Download Bookmark!' title='Download Bookmark!' /></a></td>" : "");
$bm = sql_query("SELECT * FROM bookmarks WHERE torrentid=$id && userid=$CURUSER[id]");
$bms = mysql_fetch_assoc($bm);
$bookmarked = (empty($bms)?'<a href=\'bookmark.php?torrent=' . $id . '&action=add\'><img src=\'' . $TBDEV['pic_base_url'] . 'bookmark.gif\' border=\'0\' alt=\'Bookmark it!\' title=\'Bookmark it!\'></a>':'<a href="bookmark.php?torrent=' . $id . '&action=delete"><img src=\'' . $TBDEV['pic_base_url'] . 'plus.gif\' border=\'0\' alt=\'Delete Bookmark!\' title=\'Delete Bookmark!\' /></a>');
$htmlout.= ($variant == "index" ? "<td align='center'>{$bookmarked}</td>" : "");
if ($variant == "mytorrents")
$htmlout .= "</td><td align='center'><a href='edit.php?returnto=" . urlencode($_SERVER["REQUEST_URI"]) . "&id={$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'>{$row["numfiles"]}</td>\n";
}
else
{
if ($variant == "index")
{
$htmlout .= "<td align='right'><b><a href='filelist.php?id=$id'>" . $row["numfiles"] . "</a></b></td>\n";
}
else
{
$htmlout .= "<td align='right'><b><a href='filelist.php?id=$id'>" . $row["numfiles"] . "</a></b></td>\n";
}
}
if (!$row["comments"])
{
$htmlout .= "<td align='right'>{$row["comments"]}</td>\n";
}
else
{
if ($variant == "index")
{
$htmlout .= "<td align='right'><b><a href='details.php?id=$id&hit=1&tocomm=1'>" . $row["comments"] . "</a></b></td>\n";
}
else
{
$htmlout .= "<td align='right'><b><a href='details.php?id=$id&page=0#startcomments'>" . $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 ($row["seeders"])
{
if ($variant == "index")
{
if ($row["leechers"]) $ratio = $row["seeders"] / $row["leechers"]; else $ratio = 1;
$htmlout .= "<td align='right'><b><a href='peerlist.php?id=$id#seeders'>
<font color='" .get_slr_color($ratio) . "'>{$row["seeders"]}</font></a></b></td>\n";
}
else
{
$htmlout .= "<td align='right'><b><a class='" . linkcolor($row["seeders"]) . "' href='peerlist.php?id=$id#seeders'>{$row["seeders"]}</a></b></td>\n";
}
}
else
{
$htmlout .= "<td align='right'><span class='" . linkcolor($row["seeders"]) . "'>" . $row["seeders"] . "</span></td>\n";
}
if ($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'>{$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=" . $row["owner"] . "'><b>" . htmlspecialchars($row["username"]) . "</b></a>") : "<i>(".$lang["torrenttable_unknown_uploader"].")</i>") . "</td>\n";
$htmlout .= "</tr>\n";
}
$htmlout .= "</table>\n";
return $htmlout;
}
//== Sharemarks
$userid = isset($_GET['id']) ? (int)$_GET['id'] : '';
if (!is_valid_id($userid))
stderr("Error", "Invalid ID.");
$res = sql_query("SELECT id, username FROM users WHERE id = $userid") or sqlerr();
$arr = mysql_fetch_array($res);
$htmlout.="<h1>Sharemarks for <a href=\"userdetails.php?id=".$userid."\">".$arr['username']."</a></h1>";
$htmlout.="<b><a href=\"bookmarks.php\">My Bookmarks</a></b>";
$res = sql_query("SELECT COUNT(id) FROM bookmarks WHERE userid = $userid");
$row = mysql_fetch_array($res);
$count = $row[0];
$torrentsperpage = $CURUSER["torrentsperpage"];
if (!$torrentsperpage)
$torrentsperpage = 25;
if ($count) {
$pager = pager($torrentsperpage, $count, "sharemarks.php?&");
$query1 = "SELECT bookmarks.id as bookmarkid, users.username, users.id as owner, torrents.id, torrents.name, torrents.type, torrents.comments, torrents.leechers, torrents.seeders, categories.name AS cat_name, categories.image AS cat_pic, 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 LEFT JOIN users on torrents.owner = users.id LEFT JOIN categories ON torrents.category = categories.id WHERE bookmarks.userid = $userid AND bookmarks.private = 'no' ORDER BY torrents.id DESC {$pager['limit']}" or sqlerr(__FILE__, __LINE__);
$res = sql_query($query1) or sqlerr();
}
if ($count) {
$htmlout .= $pager['pagertop'];
$htmlout .= sharetable($res, "index", TRUE);
$htmlout .= $pager['pagerbottom'];
}
print stdhead("Sharemarks for " . $arr['username']) . $htmlout . stdfoot();
?>