PDA

View Full Version : HowTo Create Custom Usergroup Permissions


Andreas
06-09-2005, 10:00 PM
Usergoup Permissions are being controlled through XML files, you don't have to edit usergroup.php anymore

To create your own usergroup permissions, the first thing to do is to modify table usergroup (keep table prefixes in mind!):

ALTER TABLE usergroup ADD myhackpermissions INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL ;

If your hack does need some integer settings as well (and not just On/Off-Options):

ALTER TABLE usergroup ADD myhackintset INT( 10 ) DEFAULT '100' NOT NULL ;

Then you must create a an XML-File bitfield_myhack.xml and place it in includes/xml:


<?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="vbulletin">
<bitfielddefs>
<group name="ugp">
<group name="myhackpermissions">
<bitfield name="canfoo" group="my_hack_permissions" phrase="can_foo_forum" install="1,2,3,4,5,6,7">1</bitfield>
<bitfield name="canbaa" group="my_hack_permissions" phrase="can_baa_forum" install="">2</bitfield>
<bitfield intperm="true" name="myhackintset" group="my_hack_permissions" phrase="myhack_int_desc"></bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>


As you can see, you must create a new permission group below group ugp (short for usergroup permissions).

Parameter product of Tag bitfields should be the identifier of your Product (https://vborg.vbsupport.ru/showthread.php?t=92953)

Paramater name of Tag group must match the column name in table usergroup.

The Parameters for Tag bitfield are:


name is the identifier you can use in your hack code (eg. $permissions['myhackpermissions'] & $vbulletin->bf_ugp['myhackpermissions']['canfoo'])
In case of integer options this name must match the column name in table usergroup.
intperm indicates that this Option is a integer value
group is the varname for the Phrase that should be displayed as Permission Group Title.
This is also being used to set up different Groups for your permissions.
phrase is the varname of the Phrase that should be displayed for this option in Usergroup Manager
install is a comma-separated list of the usergroups where this permission should be visible
If this parameter is empty or omitted, this Option will be used for all Usergroups


The value of <bitfield> is the decimal value of the bit (eg. 1 for the first, 2 for the second, 4 for the third, and so on).
In case of an Integer Option this is the default value.

If you want to hide certain permission groups for some usergroups, for example from Guests as they don't make sense for them:


<ignoregroups>
<group name="myhackpermissions" ignoregroups="1" />
</ignoregroups>


Parameter name is the name of the permission group you want to hide, ignoregroups is a comma seperated list of usergoup IDs where this permission group should not show up.
Place this section below the <bitfielddefs>-Section.

Now create the necessary phrases (in Phrasegroup Permissions) at this point.

As vBulletin caches Bitfields in Datastore, you must rebuild this cache before the new usergroup permissions can be actually used (They will already show up in Usergroup Manager, but cannot be saved - you will get an error).
To do so, point your browser to admincp/index.php?do=buildbitfields.

You can also use the following Code (in a Custom Installer or Install-Code of a Product (https://vborg.vbsupport.ru/showthread.php?t=92953)) to update the Bitfield Cache:

if (is_newer_version('3.5.1', $vbulletin->options['templateversion']))
{
// Rebuild Bitfields
// Do this for vBulletin < 3.5.1 *ONLY*; later versions rebuild
// automatically and calling the builder in install code causes
// the bitfields NOT to be rebuild correctly
require_once(DIR . '/includes/class_bitfield_builder.php');
vB_Bitfield_Builder::save($db);
build_forum_permissions();
}


If you install/upgrade vBulletin and custom bitfield_xxx.xml files are already in place, they will be used - you don't have to update the Bitfield Cache in this case.

This How-To is (C) 2005 by KirbyDE and you are not allowed to redistribute it in any way without my explicit consent.

noppid
06-10-2005, 06:04 PM
Very nice, no more chances of stepping on toes. :)

I think the field add for a custom permission, bitfield, may need to look like this instead...


ALTER TABLE usergroup ADD myhackpermissions INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL ;

Revan
06-10-2005, 06:14 PM
Good tut, I hope Administrator Permissions is next... *hint* ;)

Andreas
06-10-2005, 06:41 PM
@noppid
Right. Should have been UNSIGNED of course, corrected :)

deathemperor
06-11-2005, 01:57 AM
very very nice, this will boost the learning of vb3.5, no one wrote something like this for vb3.0

Guest190829
06-11-2005, 02:03 AM
Yay! This is what I was going to ask for! :up: :up:

burnist
06-11-2005, 08:36 AM
I think I love you KirbyDE :)

amykhar
06-12-2005, 02:02 AM
Question: Is there something similar for forum permissions?

Shaved
06-13-2005, 11:06 AM
Im with amykhar I tried to apply this to forumperms but with no effect.

I want simple yes/no option. I even tried editing the bitfield_vbulletin.xml directly and no effect any help appreciated.

*edit *

Got it to work.

Note to self read full post before asking for help

Andreas
06-16-2005, 04:15 PM
Update: Simplified instructions to rebuild Bitfield Cache.

@amykhar
You can extend the forumpermissions bitfield, however I fear this will cause problems sooner or later - 20 of 32 Bits are already being used.

To do so:


<?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="vbulletin">
<bitfielddefs>
<group name="ugp">
<group name="forumpermissions">
<bitfield name="canfoo" group="my_forumperms" phrase="can_foo">2147483648</bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>

Ron1n
06-18-2005, 12:24 AM
Why cant this be added to bitfield_vbulletin.xml? I have tried, but it doesnt work.

Andreas
06-18-2005, 12:29 AM
It can ... but you shouldn't do that, as bitfield_vbulletin.xml will be overwritten during an upgrade, which means you would have to redo the changes.
If you use your own XML file it will still be there and used after an upgrade.

Ron1n
06-18-2005, 10:49 PM
how does one go about putting a title on the grey table header? I tried phrase="_phrase_var_" and text="phrase text" but neither worked.

Andreas
06-18-2005, 11:43 PM
Quoting myself to answer your question:


The Parameters for Tag bitfield are:


group is the varname for the Phrase that should be displayed as Permission Group Title.
This is also being used to set up different Groups for your permissions.

Ron1n
06-19-2005, 02:05 AM
yea, i read that but figured I also needed another param because it wasnt (and isnt) working

<?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="vBulletin">
<bitfielddefs>
<group name="ugp">
<group name="download_permissions">
<bitfield name="canviewfiles" group="download_permissions" phrase="downloads_can_view_files" install="">1</bitfield>
<bitfield name="candownloadfiles" group="download_permissions" phrase="downloads_can_download_files" install="">2</bitfield>
<bitfield name="canratefiles" group="download_permissions" phrase="downloads_can_rate_files" install="">4</bitfield>
<bitfield name="canlinktofiles" group="download_permissions" phrase="downloads_can_linkto_files" install="">8</bitfield>
<bitfield name="canuploadfiles" group="download_permissions" phrase="downloads_can_upload_files" install="">16</bitfield>
<bitfield name="canavoidpurgatory" group="download_permissions" phrase="downloads_can_avoid_purgatory" install="">32</bitfield>
<bitfield name="canmanagepurgatory" group="download_permissions" phrase="downloads_can_manage_purgatory" install="">64</bitfield>
<bitfield name="caneditownfiles" group="download_permissions" phrase="downloads_can_edit_own" install="">128</bitfield>
<bitfield name="caneditallfiles" group="download_permissions" phrase="downloads_can_edit_all" install="">256</bitfield>
<bitfield name="canviewdisabled" group="download_permissions" phrase="downloads_can_view_disabled" install="">512</bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>

download_permissions is a phrase that says Download Permissions

I'll try looking over everything to see if there are errors, but I dont see how I could have messed up.

merk
06-20-2005, 04:42 AM
Have you tried phrase="download_permissions" instead of name=?

Chris M
06-20-2005, 02:27 PM
Kirby - Any way to make this work with Forum Options? :)

Rather than editing forum.php ;)

Satan

deathemperor
06-21-2005, 03:40 PM
there're optional ways to use the permission:

along with

$permissions['myhackpermissions'] & $vbulletin->bf_ugp['myhackpermissions']['canfoo']

you can use

$permissions['myhackpermissions'] & $vbulletin->bf_ugp_myhackpermissions['canfoo']

or

$permissions['myhackpermissions'] & 1

the last one is the shortest one but then you won't understand what it does, 1 is the value of <bitfield> tag, just similar as the old permission settings.

I found that the 'canfoo' is case sensitive, this took me almost a day to figure out lol

HakkieDEV
06-25-2005, 09:05 AM
I still don't understand how I could add forumpermissions?

I've tried to play with it, I've added an xml file with the content of kirbyDE, but it didn't work.

Andreas
06-25-2005, 10:25 AM
Take a look at my recent Get New Posts Hack and you'll see :)

HakkieDEV
06-25-2005, 11:33 AM
I've had a look and I see that it also adds a field in the usergroup permissions area.

However, I'd like to know how I could add some extra permission fields in the forum area (admincp/forum.php).

Andreas
06-25-2005, 07:39 PM
Not possible without editing the File.

HakkieDEV
06-26-2005, 06:13 AM
Ah, okay, thanks.

It was driving me crazy. :)

TitanKing
07-12-2005, 07:11 AM
Can anyone please explain to me the forumpermissions bits, how will I get the permissions out of there... thank you...

MrNase
07-27-2005, 05:06 PM
Here's my bitfield_vbgarage.xml and here's the error I get once my custom permissions are in place:



<?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="vBulletin">
<bitfielddefs>
<group name="ugp">
<group name="canvbgarage">
<bitfield name="canenter" group="canvbgarage" phrase="can_enter_vbgarage" install="">1</bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>



If the file is there and active I get this error when I try to save the permissions. The newly added permissions are not saved and they remain 'no'..

Andreas
07-27-2005, 05:27 PM
Make sure you don't have any Plugins enabled and try again.

Edit: install="" might also cause this error

MrNase
07-27-2005, 05:33 PM
It's a fresh install without any plugins.. I also removed install="" with no success :(

I added another group and here's the sql error I get now:


### UPDATE QUERY GENERATED BY fetch_query_sql() ###
`title` = 'Administrators',
`description` = '',
`usertitle` = 'Administrator',
`opentag` = '',
`closetag` = '',
`passwordexpires` = '180',
`passwordhistory` = '360',
`canvbgarage` = '',
`canvbgarage2` = '',
`forumpermissions` = '1048575',
`attachlimit` = '0',
`pmquota` = '50',
`pmpermissions` = '3',
`pmsendmax` = '5',
`calendarpermissions` = '63',
`wolpermissions` = '31',
`adminpermissions` = '3',
`genericpermissions` = '205520831',
`genericoptions` = '31',
`profilepicmaxwidth` = '100',
`profilepicmaxheight` = '100',
`profilepicmaxsize` = '65535',
`avatarmaxwidth` = '80',
`avatarmaxheight` = '80',
`avatarmaxsize` = '20000'
WHERE usergroupid=6;


You can see that canvbgarage is empty but it shouldn't..

I edited the usergroup #6 via phpmyadmin and changed canvbgarage to 1 and the usergroup manager still says no and my scripts are still not working :(

Andreas
07-27-2005, 05:41 PM
Did you rebuild the Bitfield Cache?

Btw:

I'd use a XML like

<?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="garage">
<bitfielddefs>
<group name="ugp">
<group name="vbgaragepermissions">
<bitfield name="canenter" group="vbgarage_permissions" phrase="can_enter_vbgarage" install="">1</bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>

MrNase
07-27-2005, 05:47 PM
Verdammt, ich wusste doch das ich was vergessen hatte *vordenkopfschlag* :D

No I didn't :D

Next question: If Iam using the XML like you suggested, what does this has to look like:

if ($permissions['canvbgarage'] & $vbulletin->bf_ugp['canvbgarage']['canenter'])

Andreas
07-27-2005, 05:54 PM
Well, it's just variable Names so it's not really important, but IMHO it makes Code more readable :)


if ($permissions['vbgaragepermissions'] & $vbulletin->bf_ugp['vbgaragepermissions']['canenter'])

Brinnie
07-29-2005, 08:08 PM
very nice,

thank you! :D

Mr Blunt
08-21-2005, 04:50 AM
KirbyDE .... Great How-To!!

One thing I would like to point out to everyone which I think is extremely relevant to this thread is the install="X" field will not be recognized during a product installation script ... at least not without extra code which I haven't figured out how to write yet. Simply rebuilding the bitfields (while it will allow the new permissions to begin functioning) will result in all zero's as default for all groups.

http://www.vbulletin.com/forum/bugs35.php?do=view&bugid=1054

This is the vBulletin response.

This is happening because the install field in the bitfield XML is only used when vBulletin is first installed (see lines 2280-2315 in install/mysql_schema.php). You may want to reproduce some of the code from there in your plugin to get it to take up the default values.
I played with this all day today and basically got nowhere.
Maybe someone else will have better luck than me.

Andreas
08-23-2005, 12:57 PM
Untested, but


// Rebuild Bitfields
require_once(DIR . '/includes/class_bitfield_builder.php');
vB_Bitfield_Builder::save($db);
$myobj =& vB_Bitfield_Builder::init();

$groupinfo = array();

for ($x = 1; $x < 9; $x++)
{
$groupinfo["$x"]['mypermissions'] = 0;
}

foreach ($myobj->data['ugp']['mypermissions'] AS $permtitle => $permvalue)
{
if (empty($permvalue['group']))
{
continue;
}

if (!empty($permvalue['install']))
{
foreach ($permvalue['install'] AS $gid)
{
$groupinfo["$gid"]['mypermission'] += $permvalue['value'];
}
}
}

foreach ($groupinfo AS $usergroupid => $permissions)
{
$db->query_write("UPDATE " . TABLE_PREFIX . "usergroup SET mypermissions=$permissions[mypermissions] WHERE usergroupid=$usergroupid");
}
build_forum_permissions();

Mr Blunt
08-23-2005, 05:55 PM
You were close Kirby
You only forgot the WHERE usergroupid=$usergroupid in the query.
Works like a charm!!!
Thank you, Sir!!

$db->hide_errors();
$db->query_write("UPDATE " . TABLE_PREFIX . "usergroup SET mypermissions=$permissions[mypermissions] WHERE usergroupid=$usergroupid");
$db->show_errors();

Andreas
08-23-2005, 05:58 PM
I knew there was a reason why I specified a Variable for the Key in foreach() :p

Kirk Y
08-23-2005, 07:36 PM
lol... Kirby, might I ask why I'm in your signature?

Andreas
08-23-2005, 07:43 PM
Yes. I've read this Post you made and found it very amusing :)

Mr Blunt
08-23-2005, 08:16 PM
Can anyone verify or deny for certain if two of the same "canfoo" bitfield names can exist as long as they are each under a different groupname?

For example, something like "canview" under groupname "bluntswhodlpermissions".

I could see almost every hack using a "canview", LOL, but the groupname is very unique.

I ask because I do see a lot of vbulletin code which checks for clashes, but the code gets a little too deep for me to fully understand so far.

I ask in this thread to help reinforce this how-to. I mean if we must all diversify this variable as well, then maybe the how-to should reflect that we should put part of our myhack name in this too somehow .... or maybe we are all good with real simple short vars here if duplicate canfoo's are ok as long as the groupname is unique. I suspect the latter, but I leave it as a question.

Just trying to help avert potential problems down the road while we are all learning the vb350 ways.

Andreas
08-23-2005, 08:21 PM
You can have "canfoo" in myperms1, myperms2, mypers3, doesntmatterperms and so on - doesn't cause Problems, as they are different Bitfields and those Names are just Shortcuts for the Bits :)

Mr Blunt
08-23-2005, 08:36 PM
3 thumbs up for Kirby!!
Appreciate the time!!

Kirk Y
08-23-2005, 11:42 PM
Yes. I've read this Post you made and found it very amusing :)

Ha ha... well I'm glad I can find ways to amuse you. I was just curious... not like you see v3 Arcade in the Navbar or anything, eh?

jesus likes pie
10-07-2005, 12:51 AM
Can you make a specific user be allowed to use html?

If so, how?

EDIT: hey, I have an idea, could I make a secondary usergroup that has it enabled, put the desired user as secondary usergroup for it, but have him display as his primary one?

Will that work? If not.....what will?

sorry guys...wrong thread. rofl...

Andreas
10-07-2005, 12:52 AM
Yes it will work, if the primary usergroup does allow membergroups.

Reaktor7
10-07-2005, 02:03 AM
i am pretty sure there is a plugin for that which may make things a little neater....

harmor19
10-22-2005, 01:46 PM
I got the same error someone else got about the escape strings

In the product I have I put that "Rebuild Bitfields" script Andreas wrote

<plugins>
<plugin active="1">
<title>Testimonialss</title>
<phpcode><![CDATA[ // Rebuild Bitfields
require_once(DIR . '/includes/class_bitfield_builder.php');
vB_Bitfield_Builder::save($db);
$myobj =& vB_Bitfield_Builder::init();

$groupinfo = array();

for ($x = 1; $x < 9; $x++)
{
$groupinfo["$x"]['mypermissions'] = 0;
}

foreach ($myobj->data['ugp']['mypermissions'] AS $permtitle => $permvalue)
{
if (empty($permvalue['group']))
{
continue;
}

if (!empty($permvalue['install']))
{
foreach ($permvalue['install'] AS $gid)
{
$groupinfo["$gid"]['mypermission'] += $permvalue['value'];
}
}
}

foreach ($groupinfo AS $usergroupid => $permissions)
{
$db->query_write("UPDATE " . TABLE_PREFIX . "usergroup SET mypermissions=$permissions[mypermissions] WHERE usergroupid=$usergroupid");
}
build_forum_permissions();]]></phpcode>
</plugin>
</plugins>

I don't know if I plugins can be used without a hook so maybe that's my problem.

Here's my bitfield
<?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="testimonials">
<bitfielddefs>
<group name="ugp">
<group name="testimonials">
<bitfield name="can_mod_testimonials" group="testimonials_permissions" phrase="can_mod_testimonials" install="">1</bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>

Andreas
10-22-2005, 08:00 PM
You must use the Code as Product install Code.

harmor19
10-22-2005, 09:34 PM
It was in a product but removed the plugin tags around it.

when I upload the product I get this error

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO plugin
(`active`, `value`, `product`)
VALUES
('1', '\r\n ', 'testimonials-Harmor19');

MySQL Error : Unknown column 'value' in 'field list'

Andreas
10-22-2005, 11:01 PM
Did you create the product XML by hand?
There is almost no chance the product manager would generate smth. like that ...

harmor19
10-22-2005, 11:19 PM
Well I took references frommy other product xml's.

Thanks.

Now I'm on to update my testimonials mod.

akanevsky
10-28-2005, 09:32 PM
Hi, this is the XML I'm trying to use:

<?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="vBulletin">
<bitfielddefs>
<group name="ugp">
<group name="charlimit">
<bitfield name="isexempt" group="post_thread_permissions" phrase="exempt_from_char_limit"></bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>

On save, it says "Warning: mysql_real_escape_string() expects parameter 1 to be string, array given in /includes/class_core.php on line 635... why?

harmor19
10-28-2005, 09:36 PM
download the xml's Andreas did for me and look off of those.

akanevsky
10-28-2005, 09:39 PM
I don't see any difference other than the group used, and I don't think that's what causes the problem.

Ok, figured that I needed to rebuild bitfields.. But it still does not save.

Andreas
10-28-2005, 09:56 PM
vbulletin, NOT vBulletin - better yet use your own product id.

akanevsky
10-28-2005, 10:06 PM
I changed the product ID to my own. There are no results though.

As I said, after sumbitting the usergroup options, it says "usergroup X saved", but then after I reload the page, the option is back to "off" (as it was originally)... :( My latest XML:

<?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="dv_ugpefcm">
<bitfielddefs>
<group name="ugp">
<group name="charlimit">
<bitfield name="isexempt" group="post_thread_permissions" phrase="exempt_from_char_limit" install="">0</bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>

Andreas
10-28-2005, 10:17 PM
Did you rebuild the bitfield cache?

akanevsky
10-28-2005, 10:18 PM
Yes. Using the admincp navbar link in debug mode.

Figured: The problem was that I specified invalid decimal bitfield value. Now it is working (after I changed 0 to 1). :)

Mr Blunt
10-29-2005, 02:38 PM
I don't think '' and '0' are valid bitfield values.

1st bitfield should have value of 1
2nd should have 2
3rd should have 4
4th should have 8
5th should have 16
and so on....

akanevsky
10-29-2005, 03:25 PM
Yes, I already figured that, thanks.
It should be mentioned in the first post though.

Andreas
10-29-2005, 07:45 PM
I assumed everybody knows how the binary system works ;)

akanevsky
10-29-2005, 08:12 PM
Even if yes, it is not mentioned that XML uses binary data as the values. YOu did not specify what to put between the tags :)

Andreas
10-29-2005, 08:51 PM
The value of <bitfield> is the decimal value of the bit (eg. 1 for the first, 2 for the second, 4 for the third, and so on).

So ... ?

akanevsky
10-29-2005, 08:59 PM
Ah, I didn't see that :(

Alan @ CIT
11-10-2005, 09:22 AM
I have a usergroup xml file with 3 bitfield options. How can I get them to be "Yes" by default when the product is installed?

At the moment, I've set the database column default to 7, then rebuild the bitfields, which makes them all appear as "Yes" when you edit a usergroup, but you need to go into each usergorup and click "Save" to make them take effect.

If you don't, they are still set as "No" in the forum, despite Usergroup Manager saying they are yes.

Any ideas?

Chris M
11-10-2005, 09:33 AM
You can either run a manual query to update the bitfield values or you will have to save each Usergroup - There is no way to set it to a default value for existing usergroups since the datastore will not contain the values for the new settings ;)

Chris

Alan @ CIT
11-10-2005, 09:39 AM
Dang, I was afraid of that. Cool, thanks Chris :)

sabret00the
11-18-2005, 12:38 PM
thanks, very useful.

deathemperor
11-28-2005, 04:09 AM
I found that the product attribute of the <bitfields> on vb3.5.0 is not case sensitive while 3.5.1 is

Mr Blunt
12-11-2005, 12:56 PM
Untested, but


// Rebuild Bitfields
require_once(DIR . '/includes/class_bitfield_builder.php');
vB_Bitfield_Builder::save($db);
$myobj =& vB_Bitfield_Builder::init();

$groupinfo = array();

for ($x = 1; $x < 9; $x++)
{
$groupinfo["$x"]['mypermissions'] = 0;
}

foreach ($myobj->data['ugp']['mypermissions'] AS $permtitle => $permvalue)
{
if (empty($permvalue['group']))
{
continue;
}

if (!empty($permvalue['install']))
{
foreach ($permvalue['install'] AS $gid)
{
$groupinfo["$gid"]['mypermission'] += $permvalue['value'];
}
}
}

foreach ($groupinfo AS $usergroupid => $permissions)
{
$db->query_write("UPDATE " . TABLE_PREFIX . "usergroup SET mypermissions=$permissions[mypermissions] WHERE usergroupid=$usergroupid");
}
build_forum_permissions();

Did this become broken in vb351 or vb352? For my hack, this code doesn't seem to allow the default install groups to be set during installation anymore (someone complained after installing it on vb3.5.2, which is when I tried the install/uninstall code again on my own test forum).

I spent the last 8 hours clicking around and found Andreas had a problem with his signature hack when vb351 came out, but since I didn't see the previous version, I don't know what he did to fix.

Sorry if this was answered elsewhere.

Andreas
12-11-2005, 01:26 PM
Yep, that does not work any longer for 3.5.1+ as the bitfield builder ignores bitfields for non-active products.
You must adjust it a bit to just use the XMLReader.

Mr Blunt
12-11-2005, 11:43 PM
Yep, that does not work any longer for 3.5.1+ as the bitfield builder ignores bitfields for non-active products.
You must adjust it a bit to just use the XMLReader.
Sigh, 12 hours of studying vb code and I haven't made any progress.

For the record, I gave up and moved the code to a seperate admin file and call it after installation.

Cheertobi
12-21-2005, 12:21 PM
Hi,

I cannot get this work ;(

I made the following bitfield:

<?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="vbulletin">
<bitfielddefs>
<group name="ugp">
<group name="teampermissions">
<bitfield name="caneditteam" group="team_permissions" phrase="can_edit_team" install="">1</bitfield>
<bitfield name="candeleteteams" group="team_permissions" phrase="can_delete_teams" install="">2</bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>

But $permissions['teampermissions'] seems to be empty and $vbulletin->bf_ugp_teampermissions['caneditteam']) or $vbulletin->bf_ugp_teampermissions['candeleteteams']) are always "true", even if they are selected in the admincp or not.

Tobi

Cheertobi
12-22-2005, 07:40 PM
Does noone have an idea what is wrong in my coding?!

Andreas
12-23-2005, 08:13 PM
Did you rebuild the bitfield cache?

@MrBlunt
Well, as said - just directly use the XMLReader and set your bits accordingly.
Or fake the product being installed and call the bitfield builder.

Cheertobi
12-23-2005, 09:44 PM
Did you rebuild the bitfield cache?
Yes I did that. Andreas, can we maybe move over to vbhacks-germany? It might be easier for me to explain what I have done and what not work like expected in german?!

Regards,

Tobi

Andreas
12-23-2005, 10:30 PM
If you already have a thread there or create on - sure

Delphiprogrammi
01-12-2006, 12:22 PM
hi,

Thanks for your explanation verry usefull.One question through.My permissions show up fine the only thing that annoys me a little is that that little help icon that refuses to shoowup nexto my permissions ? i bet it got something todo with the adminhelp manager you see in debug mode ?

buh i hate XML most of the time i doesn't work for me


<?xml version="1.0" encoding="iso-8859-1"?>
<bitfields product="myproduct">
<bitfielddefs>
<group name="ugp">
<group name="myproductpermissions">
<bitfield name="canview" group="myproduct_permissions" phrase="can_view" install="2,5,6,7">1</bitfield>
<bitfield name="canmanage" group="myproduct_permissions" phrase="can_manage" install="2,5,6,7">2</bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>


can't even choose between yes or no i can change it and vbulletin says options saved successfully but when i goback to check .... (you can guess)the value doesn't change


"ALTER TABLE " . TABLE_PREFIX . "usergroup ADD myproductpermissions INT(10) UNSIGNED NOT NULL DEFAULT 0";


really hate XML :devious:

CyberRanger
01-17-2006, 04:52 PM
posted in wrong thread ...

joefitz
02-07-2006, 01:18 AM
Just an FYI, for those interested in having custom forum permissions that correspond with custom usergroup permissions, you may want to check out my hack discussed in the following thread:
Custom Usergroup Forum Permissions (https://vborg.vbsupport.ru/showthread.php?t=107342)

Andreas
02-07-2006, 01:29 AM
There is a reason why there is no built-in support for custom forum permissions ;)

vasudeva
04-06-2006, 01:43 PM
There is a reason why there is no built-in support for custom forum permissions ;)

What is that reason, for those of us new to the game? I'm trying to get my head around expanding vB's permissions system and would appreciate any insights.

akanevsky
06-25-2006, 06:55 PM
I wonder why the "INSTALL" bit never works correctly. If I install such xml, all settings are initially off, regardless of install value.

andrefedalto
07-12-2006, 07:59 PM
thanks Andreas for this nice custom usergroup permission howto...

i used to make my usergroup permissions with a plugin in the hook 'admin_usergroup_edit', but i needed 1 column in 'usergroup' table for each permission :( (too bad for lots of new perms)

but now this xml really rocks :)

Mythotical
07-30-2006, 06:52 AM
EDIT: Got it fixed

sabret00the
07-30-2006, 12:01 PM
how do you check for INT Permissions?

rogersnm
08-08-2006, 08:17 AM
So can you just do: <?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="vbulletin">
<bitfielddefs>
<group name="ugp">
<group name="myhackpermissions">
<bitfield name="canfoo" group="my_hack_permissions" phrase="can_foo_forum" install="">1</bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>
And then the query
ALTER TABLE usergroup ADD myhackpermissions INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL ;

To add a Yes/No?

harmor19
08-09-2006, 09:45 PM
I couldn't get it to work so I made my own function in the hook "global_start".
I kept everything else the same but removed "can_administer".

I had to use this query to add the field to the "administrator" table.
$db->query_write("ALTER TABLE `" . TABLE_PREFIX . "administrator` ADD hostingadminperms INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL ;");


I put this in global_start

function can_admin_hosting()
{
global $vbulletin, $db;

$getuserperms = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "administrator WHERE userid='".$vbulletin->userinfo['userid']."' ");
$perms = $db->fetch_array($getuserperms);

return $perms['hostingadminperms'];

}


In your admin backend file I just used
can_admin_hosting();

MaryTheG(r)eek
10-21-2006, 04:59 AM
Very helpfull topic. Could you please extend it a bit saying me how I can set a default value per bitfield (for all usergroups) ?

I've the following code in bitfield_vbmates.xml

<?xml version="1.0" encoding="ISO-8859-1"?>
<bitfields product="vbmates">
<bitfielddefs>
<group name="ugp">
<group name="vbmates">
<bitfield name="canuse" group="vbmates_permissions" phrase="vbmates_can_use">1</bitfield>
<bitfield name="canadd" group="vbmates_permissions" phrase="vbmates_can_add">2</bitfield>
..... and others below..........
</group>
</group>
</bitfielddefs>
</bitfields>


Then I setup correctly persmissions per user group. Why with the code:


if(!$permissions['vbmates'] & $vbulletin->bf_ugp['vbmates']['canadd']){
$vbulletin->url = "vbmates.php?" . $vbulletin->session->vars['sessionurl'] ."";
eval(print_standard_redirect('vbmates_no_add_profi le', true, true));
}


a usergroup can go on while they dont have permission for it? Please note:
1.- I changed bitfield_vbmates.xml after the first product installation
2.- I've also trying to use in this file: <group name="vbmates_permissions"> but no chance.

Ok, I found it. It needed one couple of parenthesis more. Instead of:
if(!$permissions['vbmates'] & $vbulletin->bf_ugp['vbmates']['canadd'])
should be ...
if(!($permissions['vbmates'] & $vbulletin->bf_ugp['vbmates']['canadd']))

mrpaint
10-22-2006, 12:46 PM
Hi, can you help me a bit in this problem?

My bitfield_get_direct_links.xml:
<?xml version="1.0" encoding="ISO-8859-1"?>

<bitfields product="get_direct_links">
<bitfielddefs>
<group name="ugp">
<group name="get_direct_links_permissions">
<bitfield intperm="true" name="get_direct_links_number" group="get_direct_links_permissions" phrase="get_direct_links_number_desc">5</bitfield>
</group>
</group>
</bitfielddefs>
</bitfields>

In UserGroupt Manager, it work well but in my php code, when I call var_dump($vbulletin->bf_ugp);
I can't find my get_direct_links_permissions. And when I call
var_dump($permissions['get_direct_links_permissions']);
It is NULL

Can you help me? Thank you very much!

PS: Sorry for my bad English

Kungfu
11-05-2006, 06:37 PM
I have some problems with an int bitfield.

<bitfield intperm="true" name="myhackintset" group="my_hack_permissions" phrase="myhack_int_desc"></bitfield>

Its baiscally like this one, only difference is it installs to all usergroups, including custom usergroups. Well my problem is this, i want to check if a person is in two usergroups, but one of the usergroups bitfield is set to 0. Example, Registered usergroup setting is 0, but Custom usergroup setting is 1. Instead of taking the 1 as the value, i need the 0.

Anyway to do this? Hope thats clear.

timetunnel
11-26-2006, 07:31 PM
Hello.

How to change a custom bitfield_xx.xml parameter via vB Options?

For example, as I add new usergroups, I want to update the 'install' or 'ignore' param (e.g. comma-separated value) via ACP vs. editing the file.

Is that possible e.g. putting an ACP variable in the xml file?

Thanks in advance.

Update: Using a variable in the 'xml' file is not necessary but vB requires code revisions in order to update bitfield 'usergroups' via ACP vs. modifying 'bitfield_xx.xml' file. It may be better to work with the 'ignoregroups' feature in usergroups.php combined with vBulletin Options' User Profile Options instead of the 'install' parameter of the 'xml' file since 'ignoregroups' works in v.3.6.3 after installation whereas, it seems that the 'install' parameter of <bitfields> is only recognized during new installations.

Antivirus
01-19-2007, 05:52 PM
Very useful info, thanks. I have permissions working properly for different usergroups within my hack, but I haven't been able to figure out how to put usergroup ids that have a certain setting into a string for use as a conditional query. For instance...

I have a y/n bitfield usergroup permission set up as:
$permissions['myhackperms'] & $vbulletin->bf_ugp_myhackperms['canfoo']

and I want to run a query on which users have bitfield 'canfoo' set to yes? regardless of what usergroup they're in.


$sql = $db->query_read("
SELECT usergroup.usergroupid, usergroup.myhackperms
FROM " . TABLE_PREFIX . "usergroup
WHERE canfoo = 1
");

then after the result of this, i can put the usergroupids into a string and query which users are members of the usergroups in the string...

I know the query to get the usergroupids is wrong, it's due to me not knowing how to decode the bitfield, is there a function already written which vb uses to do these kinds of things? If so can someone point it out please?

Antivirus
01-28-2007, 01:15 AM
figured it out, nevermind :)

Mythotical
06-17-2007, 05:11 AM
How would I call a permission in a template?

X Quiz
07-21-2007, 01:25 PM
thanks, but how can I make my own permission for admin pages?

I mean to use:

if (!can_administer('XXXXXXXXXX'))
{
print_cp_no_permission();
}


XXXXXXXXXX = my permission



and then I can edit the permission from:
admincp/adminpermissions.php?do=modify

Delphiprogrammi
07-22-2007, 05:31 PM
thanks, but how can I make my own permission for admin pages?

I mean to use:

if (!can_administer('XXXXXXXXXX'))
{
print_cp_no_permission();
}


XXXXXXXXXX = my permission



and then I can edit the permission from:
admincp/adminpermissions.php?do=modify

read this (https://vborg.vbsupport.ru/showthread.php?t=95918)

Nullifi3d
10-14-2007, 04:11 PM
Apologies if this has already been asked and answered, but I need to adjust some permissions (upon product install) per usergroup so that some usergroups don't have access to certain features while others do. What would be the query for changing the permissions after the bitfield has been updated?

Blaine0002
12-07-2007, 05:23 PM
ok the only question i have for this, is how do you check the permissions of a usergroup a certain user is in?

kainthedragoonx
02-01-2008, 04:41 PM
I just want to say that this help is awesome! Thanks to you for creating it!

Just remember that the bit number needs to be in the XML or it will not save! Took me like ten minutes to realize that....

of course I am a noob!

akanevsky
06-10-2009, 01:01 PM
So is there any way to create custom forum permissions without having to worry about future vBulletin bits?

Dax IX
10-21-2009, 05:12 PM
Is this article still valid with 3.8.4? I'd rather know that before just jumping right into editing my database.

Neo_obs
01-29-2010, 10:20 PM
How do I call an integer setting?

I have
<bitfield intperm="true" name="tunez_votes" group="tunez_perm" phrase="tunez_votes"></bitfield>

And I have the value set to 1 in the usergroup permissions page.

But I can't seem to call it, any ideas?

borbole
06-02-2010, 08:14 PM
Thank you for this article. It helps me a lot with a mod that I will be creating soon.

Artistichaven
04-25-2011, 12:17 PM
Does this work with 3.8.7, because it's not saving the value...

EquinoxWorld
06-29-2011, 02:56 PM
Can this documentation be used with vb4? Is this still valid??

Cadellin
08-13-2011, 12:13 PM
I've used it in vB4 and haven't found any issues or errors. If your doing something sensitive I would wait for a definitive answer though.

liamwli
02-20-2013, 07:53 PM
Is there a vB4 version of this article?

dany_danay
10-18-2013, 06:38 PM
please update it to vb4