Fail deleting long name groups

Bug #1359109 reported by Daniel Parejo
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Mahara
Fix Released
Medium
Daniel Parejo

Bug Description

When you delete a group, it concatenates '.deleted.'.time() that is about 19 characters. Hence, if your group name is longer than 108 characters it will throw a DB exception for exceeding the 128 characters field for the group name. To avoid this, I've added the following code to function group_delete($groupid, $shortname=null, $institution=null, $notifymembers=true):

//Daniel Parejo
    $delete_name = $group->name;
    if (strlen($delete_name) > 100) {
        $delete_name = substr($delete_name, 0, 100) . '(...)';
    }
//End added code

    update_record('group',
        array(
            'deleted' => 1,
            'name' => $delete_name . '.deleted.' . time(), //modified code
            'shortname' => null,
            'institution' => null,
            'category' => null,
            'urlid' => null,
        ),
        array(
            'id' => $group->id,
        )
    );
    db_commit();

This solution is not perfect since it will fail if two groups that are not different in their 101 first characters are tried to be removed in the same time instant. Still, way better than before, though I think a more solid solution should be implemented.

Tags: groups db patch
description: updated
tags: added: groups
Revision history for this message
Kristina Hoeppner (kris-hoeppner) wrote :

Hi Daniel,

Thank you for your patch. Do you want to put it into our review system at reviews.mahara.org yourself or want one of our developers to do that?

Instructions for getting started with Gerrit, the review system, are at https://wiki.mahara.org/index.php/Developer_Area/Contributing_Code

Cheers
Kristina

Changed in mahara:
status: New → In Progress
assignee: nobody → Daniel Parejo (danielparejom)
importance: Undecided → Medium
tags: added: patch
removed: delete group
Revision history for this message
Mahara Bot (dev-mahara) wrote : A patch has been submitted for review

Patch for "master" branch: https://reviews.mahara.org/4283

Robert Lyon (robertl-9)
Changed in mahara:
milestone: none → 15.04.0
Revision history for this message
Mahara Bot (dev-mahara) wrote : A change has been merged

Reviewed: https://reviews.mahara.org/4283
Committed: http://gitorious.org/mahara/mahara/commit/3f6c7f8001e7c4663ad48f92bc1a14d96e5d72dc
Submitter: Robert Lyon (<email address hidden>)
Branch: master

commit 3f6c7f8001e7c4663ad48f92bc1a14d96e5d72dc
Author: Daniel Parejo <email address hidden>
Date: Tue Feb 17 12:14:37 2015 +1300

Bug 1359109: Fail deleting long group names

Patch originally submitted by Daniel Parejo in bug report

Change-Id: I33d3d9c6ff12c69ef871de47fe15524659ceba36
Signed-off-by: Robert Lyon <email address hidden>

Robert Lyon (robertl-9)
Changed in mahara:
status: In Progress → Fix Committed
Robert Lyon (robertl-9)
Changed in mahara:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.