Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #4  
Old 07-16-2005, 08:53 PM
Mr Blunt Mr Blunt is offline
 
Join Date: Jan 2004
Posts: 133
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dream
little suggestion, you could use a "whodownloaded_" prefix in each field, so youll know no one else will use those fields
No suggestion is little to me.
Please, by all means speak your mind guys.
I'm still learning and WANT to learn.

First off, it's "just one" field.
Called "downloads" under the "user" table.

It's not a vbulletin field.
It's a custom field added to vbulletin's "user" table.
Downside is TWTCommish used a very common name for his field.

I was trying to avoid changing to a new field as I was hoping to keep this compatible with the old whodownloaded hack which many have been using for years.

Quote:
Originally Posted by MarcoH64
As i understand you want to put all this in a single field. I would suggest against it, and would advice you to create a new table for this with seperate fields.
Yes, and I had a feeling you would say this.
I just had a nice crash course in handling arrays so I guess I could pull this off if it's really neccessary.

Quote:
Originally Posted by MarcoH64
If you want to keep it in a single field in the user table i suggest you change your data into an array and srialize it into the field.
I haven't learned about serializing yet. Is this neccessary because of things like special characters in the text I'm writing to the database or for some other reason?

Quote:
Originally Posted by MarcoH64
It is always a good idea to prefix you fields (and tables) with something, so you know you won't get any conflicts.
Duely noted and I will for hacks I write in future.
I was just working with what was around before me.



Hey, would it help if I showed my php code?
Then you can at least see what I'm doing before and after the database.
The code and variable names are pretty easy to follow.
I'll gladly post if someone's maybe willing to help my quest.

Here's my "attachment_complete" hook that writes to the db

Code:
$colon = ':';
$ip = IPADDRESS;
$alt_ip = ALT_IP;
$dateline = TIMENOW;
$userid = $vbulletin->userinfo['userid'];
$attachmentid = $vbulletin->input->clean_gpc('r', 'attachmentid', TYPE_UINT);

if ($userid AND $attachmentid AND $dateline)
{
	$dl = $db->query_first("
		SELECT downloads
		FROM " . TABLE_PREFIX . "user
		WHERE userid = $userid
	");
	$comma = ($dl[downloads]) ? ',' : '';
	if ($vbulletin->options['logip'])
	{
		$db->query_write("
			UPDATE " . TABLE_PREFIX . "user
			SET downloads = '$dl[downloads]$comma$attachmentid$colon$dateline$colon$ip$colon$alt_ip'
			WHERE userid = $userid
		");
	}
	else
	{
		$db->query_write("
			UPDATE " . TABLE_PREFIX . "user
			SET downloads = '$dl[downloads]$comma$attachmentid$colon$dateline$colon$colon'
			WHERE userid = $userid
		");
	}
};
Here's my extension php file to handle the reading and array handling.
Code:
<?php

require_once("./global.php");
$attachmentid = $vbulletin->input->clean_gpc('r', 'attachmentid', TYPE_UINT);

$whodl = array();
$whodl[shownames] = false;
$whodl[showdates] = false;
$whodl[showips] = false;
$whodl[showaltips] = false;

if ($show['whodladmin'])
{
	$whodl[shownames] = true;
	$whodl[showdates] = true;
	$whodl[showips] = true;
	$whodl[showaltips] = true;
}
else
{
	if ($show['whodlnames'])
	{
		$whodl[shownames] = true;
	}
}

if ($whodl[shownames])
{
	$whodl[rows] = 0;
	$whodl[tracked] = 0;
	
	if ($attachmentid)
	{
		$poster = $db->query_first("
			SELECT userid, dateline, filename, visible, counter, postid
			FROM " . TABLE_PREFIX . "attachment
			WHERE attachmentid = $attachmentid
		");

		if ($poster[visible] = 1)
		{
			if (!$poster[userid] OR $poster[userid] == 0)
			{
				$poster[userid] = 0;
				$poster[username] = $vbphrase['unregistered'];
			}
			else
			{
				$postername = $db->query_first("
					SELECT username
					FROM " . TABLE_PREFIX . "user
					WHERE userid = $poster[userid]
				");
			}

			if ($show['whodldatestoposter'] AND $vbulletin->userinfo['userid'] == $poster[userid])
			{
				$whodl[showdates] = true;
			}

			$whodl[postername] = $postername[username];
			$whodl[posterid] = $poster[userid];
			$whodl[posterdate] = vbdate($vbulletin->options['dateformat'],$poster[dateline]);
			$whodl[filename] = $poster[filename];
			$whodl[counter] = $poster[counter];
			$whodl[postid] = $poster[postid];

			$whodlrows = $db->query_read("
				SELECT userid, username, downloads
				FROM " . TABLE_PREFIX . "user
				WHERE downloads LIKE \"$attachmentid:%\" OR downloads LIKE \"%,$attachmentid:%\" OR downloads LIKE \"$attachmentid,%\" OR downloads LIKE \"%,$attachmentid,%\" OR downloads LIKE \"%,$attachmentid\"
				ORDER BY username ASC
			");

			if ($db->num_rows($whodlrows))
			{
				$whodl[rows] = $db->num_rows($whodlrows);
				while ($whodlrow = $db->fetch_array($whodlrows))
				{
					$whodl[usersid] = $whodlrow[userid];
					$whodl[usersname] = $whodlrow[username];
					$whodluser = preg_replace('/:/', ',', $whodlrow[downloads], -1);
					$whodluser = preg_split('/,/', $whodluser, -1);
					$whodluser = array_count_values($whodluser);
					$whodl[userscount] = $whodluser[$attachmentid];
					$whodl[tracked] += $whodl[userscount];
					eval('$whodownloadsbit .= "' . fetch_template('whodownloadsbit') . '";');

					if ($whodl[showdates] OR $whodl[showips] OR $whodl[showaltips])
					{
						$whodlextras = preg_split('/,/', $whodlrow[downloads], -1);
						foreach ($whodlextras as $whodlextra)
						{
							$whodlextra = preg_split('/:/', $whodlextra, -1);
							if ($whodlextra[0] == $attachmentid)
							{
								$whodl[date] = $whodl[showdates] ? vbdate($vbulletin->options['dateformat'],$whodlextra[1]) : '';
								$whodl[ip] = $whodl[showips] ? $whodlextra[2] : '';
								$whodl[alt_ip] = $whodl[showaltips] ? $whodlextra[3] : '';
								eval('$whodownloadsbit .= "' . fetch_template('whodownloadsdate') . '";');
							}
						}
					}
				}
			}
			else
			{
				$whodl[error] = 'No Users Found';
				eval('$whodownloadsbit .= "' . fetch_template('whodownloadsbit') . '";');
			}
		}
		else
		{
			$whodl[error] = 'File Not Found';
			eval('$whodownloadsbit .= "' . fetch_template('whodownloadsbit') . '";');
		}
	}
	else
	{
		$whodl[error] = 'File Not Found';
		eval('$whodownloadsbit .= "' . fetch_template('whodownloadsbit') . '";');
	}
}
else
{
	$whodl[error] = 'Feature Disabled Or No Permission';
	eval('$whodownloadsbit .= "' . fetch_template('whodownloadsbit') . '";');
}
eval('print_output("' . fetch_template('whodownloads') . '");');

?>
and then I add two new $show variables with a global hook to handle permissions for the ability to view the button which opens my whodownloaded popup.
Code:
$show['whodldatestoposter'] = true;
$show['whodladmin'] = iif($vbulletin->userinfo['usergroupid'] == 6, true, false);
$show['whodlnames'] = iif($vbulletin->userinfo['usergroupid'] == 5 OR $vbulletin->userinfo['usergroupid'] == 7 OR $vbulletin->userinfo['usergroupid'] == 2, true, false);
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:36 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05233 seconds
  • Memory Usage 2,746KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (7)bbcode_code
  • (4)bbcode_php
  • (8)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (15)post_thanks_box
  • (15)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (15)post_thanks_postbit_info
  • (15)postbit
  • (15)postbit_onlinestatus
  • (15)postbit_wrapper
  • (1)showthread_list
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_threadedmode.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids_threaded
  • showthread_threaded_construct_link
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete