bairy
03-19-2006, 10:00 PM
Recently I have had a couple of my members disagree with me. They've then decided they want to throw a fit and managed to edit or delete several dozen of their posts before I've spotted them and being able to stop it.
Therefore I've written this hack.
What it does:
Every time someone* edits or soft deletes a post of theirs, the time of that event is logged. The edit post script reads the last 5 times that user edited or deleted a (different) post and if they've done 5 edits/deletes in 10 mins it automatically puts them into a "can not edit" list.
The user of your choice (probably you) then gets a PM telling you they've triggered this auto and you can investigate it.
The list is in the admin control panel so you can remove (or if you like, manually add) people to it.
*Usergroups 5,6,7 (supermods, admin, mods) are excluded from the check.
Changes:
1 vB option (optional)
1 phrase addition
4 file edits (1 is optional but recommended)
4 SQLs to run
Downsides:
= You have to disable the ajax in-line editing, or the error message gets really messy for people who are on the "can't edit or delete" list.
OR There is one extra query per showthread.
= There is one more query on every initial edit post request, and 3 more if that post is saved.
Note that people in the list who can't edit do still see the edit button. This was deliberate as when clicked it will supply them with a message. I thought this better than confusion over where it is.
I'm not a great coder and my knowledge of vB is what I can pick up as I go. I have successfully got this hack working on my board and I think I've covered all the angles and so far as I can tell, it will work on any board. However, make sure you have a backup of your database, and backups of the files you're editing, just in case, and at this time I still consider the hack as beta.
I'll try to give support where I can but I'm not "officially" supporting it.
UPDATES
1.01: Minor update
1. Added TABLE_PREFIX to my queries.
2. In editpost.php,$pmdm->set_recipients('bairy'); became $pmdm->set_recipients('bairy', $movealongnothingtoseehere); (where bairy is the name you chose).
Previously php moaned there was no 2nd parameter for the set_recipients function, now there is and the fact it's blank doesn't matter in this hack.
1.02: Fixed the AJAX problem.
Using one query per showthread, vb will determine if the user is on the can't edit list. If they are, it will disable the ajax inline editor meaning if they click edit, they'll be shown the error message as it's supposed to look.
It won't execute if the inline editor is switched off.
Fix (which is in the updated txt attachment):
Open includes/class_postbit.php
Find (line ~913): // can edit or delete this post, so show the link
$this->post['editlink'] = 'editpost.php?' . $this->registry->session->vars['sessionurl'] . 'do=editpost&p=' . $this->post['postid'];
Add Below:
// Bairy's "too fast too much editors" hack
if (!is_member_of($vbulletin->userinfo, 5, 6, 7) AND !$this->registry->options['cannoteditupdated'] AND $this->registry->options['quickedit'])
{ // If the list isn't updated and ajax inline editing is on, update the list. If ajax i-l-e is off, there's no need to.
$cannoteditlist = $this->registry->db->query_first("SELECT value FROM ".TABLE_PREFIX."setting WHERE varname = 'cannotedit'"); // Refresh the list in realtime (not cached)
$this->registry->options['cannoteditupdated'] = true; // as options is already globalised it seems a good idea to use it instead of making another entire variable
$this->registry->options['cannotedit'] = explode("|", $cannoteditlist['value']);
if (in_array($this->registry->userinfo['userid'], $this->registry->options['cannotedit'])) { $this->registry->options['quickedit'] = false; }
}
// Bairy's "too fast too much editors" hack
Therefore I've written this hack.
What it does:
Every time someone* edits or soft deletes a post of theirs, the time of that event is logged. The edit post script reads the last 5 times that user edited or deleted a (different) post and if they've done 5 edits/deletes in 10 mins it automatically puts them into a "can not edit" list.
The user of your choice (probably you) then gets a PM telling you they've triggered this auto and you can investigate it.
The list is in the admin control panel so you can remove (or if you like, manually add) people to it.
*Usergroups 5,6,7 (supermods, admin, mods) are excluded from the check.
Changes:
1 vB option (optional)
1 phrase addition
4 file edits (1 is optional but recommended)
4 SQLs to run
Downsides:
= You have to disable the ajax in-line editing, or the error message gets really messy for people who are on the "can't edit or delete" list.
OR There is one extra query per showthread.
= There is one more query on every initial edit post request, and 3 more if that post is saved.
Note that people in the list who can't edit do still see the edit button. This was deliberate as when clicked it will supply them with a message. I thought this better than confusion over where it is.
I'm not a great coder and my knowledge of vB is what I can pick up as I go. I have successfully got this hack working on my board and I think I've covered all the angles and so far as I can tell, it will work on any board. However, make sure you have a backup of your database, and backups of the files you're editing, just in case, and at this time I still consider the hack as beta.
I'll try to give support where I can but I'm not "officially" supporting it.
UPDATES
1.01: Minor update
1. Added TABLE_PREFIX to my queries.
2. In editpost.php,$pmdm->set_recipients('bairy'); became $pmdm->set_recipients('bairy', $movealongnothingtoseehere); (where bairy is the name you chose).
Previously php moaned there was no 2nd parameter for the set_recipients function, now there is and the fact it's blank doesn't matter in this hack.
1.02: Fixed the AJAX problem.
Using one query per showthread, vb will determine if the user is on the can't edit list. If they are, it will disable the ajax inline editor meaning if they click edit, they'll be shown the error message as it's supposed to look.
It won't execute if the inline editor is switched off.
Fix (which is in the updated txt attachment):
Open includes/class_postbit.php
Find (line ~913): // can edit or delete this post, so show the link
$this->post['editlink'] = 'editpost.php?' . $this->registry->session->vars['sessionurl'] . 'do=editpost&p=' . $this->post['postid'];
Add Below:
// Bairy's "too fast too much editors" hack
if (!is_member_of($vbulletin->userinfo, 5, 6, 7) AND !$this->registry->options['cannoteditupdated'] AND $this->registry->options['quickedit'])
{ // If the list isn't updated and ajax inline editing is on, update the list. If ajax i-l-e is off, there's no need to.
$cannoteditlist = $this->registry->db->query_first("SELECT value FROM ".TABLE_PREFIX."setting WHERE varname = 'cannotedit'"); // Refresh the list in realtime (not cached)
$this->registry->options['cannoteditupdated'] = true; // as options is already globalised it seems a good idea to use it instead of making another entire variable
$this->registry->options['cannotedit'] = explode("|", $cannoteditlist['value']);
if (in_array($this->registry->userinfo['userid'], $this->registry->options['cannotedit'])) { $this->registry->options['quickedit'] = false; }
}
// Bairy's "too fast too much editors" hack