opensim-tools – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
68 vero 1 #!/usr/bin/php
2 <?php
3  
4 /////////////////////////////////////////////////////////////
5 // Wizardry and Steamworks (c) was.fm - 2014, License: MIT //
6 // //
7 // Permission is hereby granted, free of charge, to any //
8 // person obtaining a copy of this software and associated //
9 // documentation files (the "Software"), to deal in the //
10 // Software without restriction, //including without //
11 // limitation the rights to use, copy, modify, merge, //
12 // publish, distribute, sublicense, and/or sell copies of //
13 // the Software, and to permit persons to whom the //
14 // Software is furnished to do so, subject to the //
15 // following conditions: //
16 // //
17 // The above copyright notice and this permission notice //
18 // shall be included in all copies or substantial portions //
19 // of the Software. //
20 // //
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF //
22 // ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT //
23 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS //
24 // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO //
25 // EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE //
26 // FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER //
27 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING //
28 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR //
29 // THE USE OR OTHER DEALINGS IN THE SOFTWARE. //
30 /////////////////////////////////////////////////////////////
31  
32 /////////////////////////////////////////////////////////////
33 // CONFIGfURATION //
34 /////////////////////////////////////////////////////////////
35  
36 // Hostname or IP of your OpenSim MySQL server.
37 define("MYSQL_HOSTNAME", "localhost");
38 // Username of the OpenSim MySQL user.
39 define("MYSQL_USERNAME", "opensim");
40 // Password of the OpenSim MySQL user.
41 define("MYSQL_PASSWORD", "***");
42 // Name of the OpenSim database on the MySQL server.
43 define("MYSQL_DATABASE", "opensim");
44  
45 /////////////////////////////////////////////////////////////
46 // INTERNALS //
47 /////////////////////////////////////////////////////////////
48  
49 require_once('/var/www/lib/wasRemoteAdmin.php');
50  
51 if(!defined('STDIN')) {
52 print 'This script is meant to be run on the command line.'."\n";
53 return 1;
54 }
55  
56 $connection_ok = mysql_connect(MYSQL_HOSTNAME, MYSQL_USERNAME, MYSQL_PASSWORD);
57 if(!$connection_ok) {
58 print 'Could not connect to the OpenSim database. Please edit the script and make sure the credentials are correct.'."\n";
59 return 1;
60 }
61 $db_selected = mysql_select_db(MYSQL_DATABASE);
62 if(!$db_selected) {
63 print 'Could not select the opensim database. Please edit this script and make sure the credentials are correct.'."\n";
64 return 1;
65 }
66  
67 $query = 'SELECT RegionName FROM regions';
68 $result = mysql_query($query);
69 $regions = array();
70 while($row = mysql_fetch_array($result)) {
72 vero 71 if(!preg_match('/^http:\/\//', $row[0])) {
70 vero 72 array_push($regions, $row[0]);
73 }
68 vero 74 }
75  
76 $agents = 0;
77 $req = new wasRemoteAdmin('http://127.0.0.1:10000', 'opensim');
78 foreach($regions as $region) {
79 $rep = new SimpleXMLElement($req->admin_get_agents($region, "false"));
80 foreach($rep->params->param->value->struct->member as $member) {
81 if($member->name == "regions") {
82 foreach($member->value->array->data->value->struct->member as $member) {
83 if($member->name == "agents") {
74 vero 84 $agents += count($member->value->array->data->value);
68 vero 85 }
86 }
87 }
88 }
89 }
90  
91 if($agents == 0) {
73 vero 92 $req->admin_console_command("scripts suspend");
68 vero 93 return 0;
94 }
73 vero 95 $req->admin_console_command("scripts resume");
68 vero 96 return 0;