PDA

View Full Version : Custom user fields


hkvic
10-05-2004, 02:23 PM
First off - sorry if cross posting is frowned on, but was advised to post this here after posting in the community forums...Anyway original post was:

I have just purchased VB after being with ikonboard for quite a while. I am going to be importing my old ikonboard 3.11 Mysql database which contains approx 2000 users and around 70,000 posts.

This database has been hacked over a period of time with custom additions. The main one that concerns me is that I have added 7 custom rows in the ib_member_profiles table which contain first and last member names, dates and other data.

My question is: is there any way to adapt the impex files so that I can import this additional data? If not, then I guess I'll have to enter all the details again by hand.

Any help or advice would be appreciated.

PS. wish I'd made this move years ago - I wouldn't be going through all this now.

Xenon
10-05-2004, 04:00 PM
it shouldn't be such a problem to manipulate the impex to import those things as well.

As it is a very custom request, you might have to post a service request, but AFAICS it shouldn't be very hard, just a few more lines :)

hkvic
10-05-2004, 05:11 PM
Many thanks for that. Should I leave this here a while to see if there are any other responses or should I post a service request straight away?

I've only joined recently and am not really up to speed on the protocols here yet.

Colin F
10-05-2004, 05:18 PM
You're free to post a service request. Be aware though, that service requests are payed requests, so only post if you're willing to compensate the coder willing to help you. Also, have a look at the following thread before picking a coder: https://vborg.vbsupport.ru/showthread.php?t=69734

Unfortunatelly, I don't know impex well enough to help you.

Good luck though :)

hkvic
10-05-2004, 05:50 PM
Cheers. I'll give it some serious consideration.

Jerry
10-06-2004, 09:58 AM
Two things we are going to be interested in here to get this done are :

The files ;

impex/systems/ikon_mysql/000.php The API module for the data source
impex/systems/ikon_mysql/004.php The import user module

The commands ;

add_custom_field()
add_custom_value()


Checking we are getting the data

First we need know that ImpEx is bring the data in when it imports users.

The extra fields are in the member_profiles table (ignoring the table prefix for this example).

Checking 000.php and finding get_ikon_mysql_user_details() we can see that we select * from the member_profiles (with a join on the calendar for some more info). So anything that is in the member_profiles table will be returned to module 004 when importing users.

If this wasn't the case and the fields were some where else, we'd have to alter this function to add the details to the array for that user id (have a look at EVE to see what I mean there).


Preparing vBulletin for the data

So now we know that the extra fields we are interested in are being passed to module 004, import user.

To prepare the target database so that it knows about the custom fields and what to do with them, we have to tell it about it, this is where we use :

$this->add_custom_field()

We place this inside the init() function of the class, this is the first function that is called once, the one that asks for paths, counts per page, does all the set up, cleans up from any previous import, etc. Lines 55 to 77 in ikon_mysql/004.php.

This takes 5 arguments and looks like this :


// Add all the custom fields we want to import
$tdt = $sessionobject->get_session_var('targetdatabasetype');
$ttp = $sessionobject->get_session_var('targettableprefix');

$this->add_custom_field($Db_target, $tdt, $ttp, 'age','user age');
$this->add_custom_field($Db_target, $tdt, $ttp, 'gender','user gender');
.....


As with an ImpEx function the first 3 arguments as the database object, the database type and the table prefix. I've used the short name variable $tdt and $ttp, so it fits on a line and is more readable.

Line 177 of ImpExDatabase.php for add_custom_field(). It adds the fields and coloums to profilefield and userfield.


Importing it

No now we know its coming in, and that we have set up the database to accept the data, we have to actually import it with each user by adding it to the user object just before its imported.

On lines 142-219 we are adding all the data, calling the parsing functions, building dates into unix timestamps etc. This is where we are filling up a user object with all its data before calling import_user() on it.

Lines 204-206 are doing some add_default_value() so well add our new lines after that :

$try->add_custom_value(varname, value);

So for us it is :


$try->add_custom_value('age', $user_details['AGE']);
$try->add_custom_value('gender', $user_details['GENDER']);


Note, we are using $try and not $this . $try is the user object and that is what we are adding the data to. You can see on line 123 and 142 that its a user object.

The first argument is the varname that we created up in the init section same as the 4th argument to the add_custom_field() function.

The second argument is the actual data for that user, as we have already checked the 000.php and the get_ikon_mysql_user_details() function we know the data is being returned, and for each pass in this loop the $user_details[] array will have all the data in there we need, we just have to put the correct column name in at the right place. Though we might have to trim or addslasshes depending on what the data might be, examples of that are all over the code in the import user module.

And that is it really.

Summary
000, make sure you are getting the data in get_ikon_mysql_user_details()

004->init(), add the correct filed to the database with add_custom_field()

004->resume(), actual import the data when importing the user add_custom_value()

Jerry
10-06-2004, 09:42 PM
So for instance if the extra fields where :

MEMBER_FNAME
MEMBER_LNAME
MEMBER_START
MEMBER_END
MEMBER_YEAR
MEMBER_STATE
MEMBER_HOUSE

The code would be :


// Add all the custom fields we want to import
$tdt = $sessionobject->get_session_var('targetdatabasetype');
$ttp = $sessionobject->get_session_var('targettableprefix');

$this->add_custom_field($Db_target, $tdt, $ttp, 'fname','First Name');
$this->add_custom_field($Db_target, $tdt, $ttp, 'lname','Last Name');
$this->add_custom_field($Db_target, $tdt, $ttp, 'start','Start');
$this->add_custom_field($Db_target, $tdt, $ttp, 'end','End');
$this->add_custom_field($Db_target, $tdt, $ttp, 'year','Year');
$this->add_custom_field($Db_target, $tdt, $ttp, 'state','State');
$this->add_custom_field($Db_target, $tdt, $ttp, 'house','House');


and


$try->add_custom_value('fname', $user_details['MEMBER_FNAME']);
$try->add_custom_value('lname', $user_details['MEMBER_LNAME']);
$try->add_custom_value('start', $user_details['MEMBER_START']);
$try->add_custom_value('end', $user_details['MEMBER_END']);
$try->add_custom_value('year', $user_details['MEMBER_YEAR']);
$try->add_custom_value('state', $user_details['MEMBER_STATE']);
$try->add_custom_value('house', $user_details['MEMBER_HOUSE']);



As shown in the attached file braced by :


// *******************
// The custom stuff
// *******************

hkvic
10-07-2004, 07:39 AM
Excellent, many thanks.

I've only been with VB for a couple of days and am amazed at the superb support offered.

XXP
03-14-2007, 11:38 PM
The commands ;

add_custom_field()
add_custom_value()

. . .

Summary
000, make sure you are getting the data in get_ikon_mysql_user_details()

004->init(), add the correct filed to the database with add_custom_field()

004->resume(), actual import the data when importing the user add_custom_value()

In the ImpExData.php module it says for function add_custom_value that the first argument, called "$key", is "the name of value being set".

What "name" is that? Is that any valid field name?

Also, if you don't mind, does the "set_value" function work for any valid existing (i.e., defined) vB field in the vbfields.php file?

Thanks.

Marco van Herwaarden
03-15-2007, 06:40 AM
This thread is more then 2 years old. I suggest you post your question in the ImpEx forum on vb.com.

XXP
03-15-2007, 03:47 PM
This thread is more then 2 years old. I suggest you post your question in the ImpEx forum on vb.com.

That's really not nice or helpful, Marco. In a post dated 1/4/2007 replying to a thread about this exact topic, "custom user fields" on, as you say, the Impex forum on vb.com (http://www.vbulletin.com/forum/showpost.php?p=1281812&postcount=2) Steve Machol, customer support manager, says that because the topic "involves rewriting the code" that we should, "please try asking over at vbulletin.org."

Now it turns out that if you come over here, as instructed by Mr. Machol, and search for "customer user threads", then this very thread comes up as number one in the list.

The least that your non-reply is, is not helpful. You could at least have the courtesy to point to an answer. If you don't have something helpful to say, just don't say anything at all. The worst that it is, is unkind and impolite. It certainly does not qualify as user support.

Brad
03-15-2007, 03:54 PM
What Marco posted is helpful. ;)

This deals directly with the impex system, Jerry is the person that maintains that code and you'll get a faster responce from him if you post in the impex forum at vBulletin.com.

There aren't many people here familar with impex, I for one have not used it in many years and would have to spend a lot of time re-learning it to even began helping you in this situation. You need to go to the source, and the source is Jerry! ;)

XXP
03-15-2007, 04:08 PM
What Marco posted is helpful. ;)...

....the source is Jerry! ;)

Actually no, it wasn't helpful. It was disrespectful. As yours borders on also as you obviously didn't read what the link from vb.com instructed, nor did you read the note to which my original replied above. It IS from "Jerry" and it is here in this thread.

Are you guys really trying to avoid answering this one little question?

Weird.

Brad
03-15-2007, 04:33 PM
Actually no, it wasn't helpful. It was disrespectful. As yours borders on also as you obviously didn't read what the link from vb.com instructed, nor did you read the note to which my original replied above. It IS from "Jerry" and it is here in this thread.

Are you guys really trying to avoid answering this one little question?

Weird.
I'm trying to tell you that Jerry rarely visits these forums and you'd be better off posting at vBulletin.com in the proper forum (even if Steve sent you over here because it deals with 'code modification').

This is a special case as it deals directly with the impex system. If you were asking a question about vBulletin (not the impex system) you'd find that we'd be jumping at the chance to help you.

I don't mean any disrespect, nor did Marco. However at the same time I do not appreciate begin talked down to, I've been here since 2001 after all and I think I know a little about how things work around here.

XXP
03-15-2007, 05:59 PM
Hi Brad, and thanks for your reply.

I don't mean any disrespect, nor did Marco. However at the same time I do not appreciate begin talked down to,...
I'm right with you on that and apologize to you for getting steamed at being talked down to by you and Marco.

Can't figure Marco's "over 2 years old" comment though. The code references and the problems cited in this thread are current with the vB versions published on this date.

I'm trying to tell you that Jerry rarely visits these forums and you'd be better off posting at vBulletin.com in the proper forum (even if Steve sent you over here because it deals with 'code modification').

OK. Thanks. That is helpful to know. Thanks.

I'll take a quote of Jerry's note above and see if I can get it answered unmolested over on the ".com" side.

This is a special case as it deals directly with the impex system. If you were asking a question about vBulletin (not the impex system) you'd find that we'd be jumping at the chance to help you.


OK; we're down to nits now but it may be useful for you guys to see that the vBulletin Feature List (http://www.vbulletin.com/features.php) actually includes the "Import Facility" as part of the salient integral features of vBulletin.

Thanks again. Good to know about Jerry not coming around.

Marco van Herwaarden
03-15-2007, 07:24 PM
Sorry to see that you took my advice the wrong way.

I was not aware that you already posted on vb.com. A simple question as what the meaning/use of a function/variable inside ImpEx does, can be answered on vB.com without being directed to vB.org. If you would ask for help with modifying ImpEx, then vB.org should be the place to ask.

This thread is 2 years old, in the mean time there have been many changes in vBulletin, ImpEx and probably even the source system. This makes any information in this thread at least outdated, if it is still correct at all. Jerry is the developer of ImpEx, and as Brad already explained, he hardly ever visits vB.org, so it is not very likely that you will find your answer here.

My response was simply an attempt to point you to the place where you would most likley get the answer to your question the fastest.

Brad
03-15-2007, 08:09 PM
OK; we're down to nits now but it may be useful for you guys to see that the vBulletin Feature List actually includes the "Import Facility" as part of the salient integral features of vBulletin.


That may be the case however this community (vB.org) is mainly about users of the software helping other users. Even the staff here is not paid for their time. :)

You're asking a question about code most of us rarely use...meaning there aren't many 'experts on impex' around here. Granted I could probably download the latest copy of impex and answer you question, but as I'm on dial-up I'd have to go out of my way to do this, wait for maybe an hour for my download, and that's all before I even look at the code.

Obvoiusly in this situation I perfer to point you towards someone that knows the thing like the back of their hand (Jerry) instead of searching around and giving you answers based on things I can't test myself first. I'm happy to answer any questions you have, but I can't pull the correct answers out of thin air. :)

XXP
03-15-2007, 09:21 PM
Ack!

This is so weird. It's like vB twilight zone.

Over on dot.com Steve Mchol says to come here. Over here you guys say go over to dot.com.

Rod Serling, come get me please.