mirror of https://github.com/BOINC/boinc.git
51 lines
1.0 KiB
PHP
51 lines
1.0 KiB
PHP
<?php
|
|
|
|
require_once("../inc/db.inc");
|
|
require_once("../inc/xml.inc");
|
|
require_once("../inc/team.inc");
|
|
require_once("../inc/team_types.inc");
|
|
|
|
xml_header();
|
|
$retval = db_init_xml();
|
|
if ($retval) xml_error($retval);
|
|
|
|
$auth = process_user_text($_GET["account_key"]);
|
|
$user = lookup_user_auth($auth);
|
|
if (!$user) {
|
|
xml_error(-136);
|
|
}
|
|
|
|
$name = $_GET["name"];
|
|
if (strlen($name) == 0) {
|
|
xml_error(-1, "must set team name");
|
|
}
|
|
|
|
$url = $_GET["url"];
|
|
$type_name = $_GET["type"]; // textual
|
|
$type = team_type_num($type_name);
|
|
$name_html = $_GET["name_html"];
|
|
$description = $_GET["description"];
|
|
$country = get_str("country");
|
|
if ($country == "") {
|
|
$country = "International";
|
|
}
|
|
|
|
// the following cleanses its args
|
|
//
|
|
$new_team = make_team(
|
|
$user->id, $name, $url, $type, $name_html, $description, $country
|
|
);
|
|
|
|
if ($new_team) {
|
|
user_join_team($new_team, $user);
|
|
echo "<create_team_reply>
|
|
<success/>
|
|
<team_id>$new_team->id</team_id>
|
|
</create_team_reply>
|
|
";
|
|
} else {
|
|
xml_error(-137, "could not create team");
|
|
}
|
|
|
|
?>
|