]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
All groups start with a random admin
authorEvan Prodromou <evan@status.net>
Sat, 26 Mar 2011 19:16:04 +0000 (15:16 -0400)
committerEvan Prodromou <evan@status.net>
Sat, 26 Mar 2011 19:16:04 +0000 (15:16 -0400)
scripts/createsim.php

index 6615e903f7fd0887bd254098f5de27f3d65c859e..46dc62d4cae07d4dd21e5bab7f59b8ba3a91f130 100644 (file)
@@ -51,16 +51,20 @@ function newUser($i)
     }
 }
 
-function newGroup($i)
+function newGroup($i, $j)
 {
     global $groupprefix;
+    global $userprefix;
 
-    $user = User_group::register(array('nickname' => sprintf('%s%d', $groupprefix, $i),
-                                       'local'    => true,
-                                       'fullname' => sprintf('Test Group %d', $i)));
-    if (!empty($user)) {
-        $user->free();
-    }
+    // Pick a random user to be the admin
+
+    $n = rand(0, max($j - 1, 0));
+    $user = User::staticGet('nickname', sprintf('%s%d', $userprefix, $n));
+
+    $group = User_group::register(array('nickname' => sprintf('%s%d', $groupprefix, $i),
+                                        'local'    => true,
+                                        'userid'   => $user->id,
+                                        'fullname' => sprintf('Test Group %d', $i)));
 }
 
 function newNotice($i, $tagmax)
@@ -196,7 +200,7 @@ function main($usercount, $groupcount, $noticeavg, $subsavg, $joinsavg, $tagmax)
     $g = 1;
 
     newUser(0);
-    newGroup(0);
+    newGroup(0, $n);
 
     // # registrations + # notices + # subs
 
@@ -214,13 +218,13 @@ function main($usercount, $groupcount, $noticeavg, $subsavg, $joinsavg, $tagmax)
     {
         $e = rand(0, $events);
 
-        if ($e > 0 && $e <= $ut) {
+        if ($e >= 0 && $e <= $ut) {
             printfv("$i Creating user $n\n");
             newUser($n);
             $n++;
         } else if ($e > $ut && $e <= $gt) {
             printfv("$i Creating group $g\n");
-            newGroup($g);
+            newGroup($g, $n);
             $g++;
         } else if ($e > $gt && $e <= $nt) {
             printfv("$i Making a new notice\n");