total_credit = 0.0; $p->expavg_credit = 0.0; while (!feof($f)) { $buf = fgets($f); if (strstr($buf, "")) break; if ($x = parse_element($buf, "")) { $p->name = $x; } if ($x = parse_element($buf, "")) { $p->name = $x; } if ($x = parse_element($buf, "")) { $p->url = $x; } if ($x = parse_element($buf, "")) { $p->total_credit = $x; } if ($x = parse_element($buf, "")) { $p->expavg_credit = $x; } if ($x = parse_element($buf, "")) { $p->id = $x; } if ($x = parse_element($buf, "")) { $p->country = $x; } if ($x = parse_element($buf, "")) { $p->team_id = $x; } if ($x = parse_element($buf, "")) { $p->team_name = $x; } if ($x = parse_element($buf, "")) { $p->create_time = $x; } } return $p; } function parse_user($f, $user) { $user->projects = array(); while (!feof($f)) { $buf = fgets($f); if (strstr($buf, "")) break; if (strstr($buf, "")) { $user->projects[] = parse_project($f); } } return $user; } function get_other_projects($user) { $cpid = md5($user->cross_project_id . $user->email_addr); $url = "http://boinc.netsoft-online.com/get_user.php?cpid=$cpid"; $f = fopen($url, "r"); if (!$f) { return $user; } $u = parse_user($f, $user); fclose($f); return $u; } function show_project($project) { if ($project->url == "http://www.worldcommunitygrid.org/") { $x = $project->name; } else { $x = "url"."show_user.php?userid=$project->id\">$project->name"; } echo " $x ".number_format($project->total_credit, 0)." ".number_format($project->expavg_credit, 0)." ".date_str($project->create_time)." "; } function cmp($a, $b) { if ($a->expavg_credit == $b->expavg_credit) return 0; return ($a->expavg_credit < $b->expavg_credit)? 1 : -1; } function show_other_projects($user, $personal) { if (count($user->projects) > 1) { usort($user->projects, "cmp"); if ($personal) { echo "

Projects in which you are participating

"; } else { echo "

Projects in which $user->name is participating

"; } start_table(); row_heading_array(array( "Project
Click for user page", "Total credit", "Average credit", "Since" )); foreach($user->projects as $project) { show_project($project); } end_table(); } } function total_posts($user) { return BoincPost::count("user=$user->id"); } function show_credit($user) { row2(tra("Total credit"), format_credit_large($user->total_credit)); row2(tra("Recent average credit"), format_credit($user->expavg_credit)); project_user_credit($user); } require_once("../inc/stats_sites.inc"); // show dynamic user info (private) // function show_user_stats_private($user) { global $cpid_stats_sites; row1(tra("Work done")); row2(tra("%1 member since", PROJECT), date_str($user->create_time)); show_credit($user); $config = get_config(); if (parse_bool($config, "show_results")) { row2(tra("Pending credit"), "".tra("View").""); } row2(tra("Computers on this account"), "".tra("View")."" ); row2(tra("Tasks"), "id\">".tra("View").""); $cpid = md5($user->cross_project_id . $user->email_addr); $x = ""; shuffle($cpid_stats_sites); foreach ($cpid_stats_sites as $site) { $name = $site[0]; $y = sprintf($site[1], $cpid); $x .= "$name
"; } $x .= "
".tra("Cross-project ID").": $cpid\n"; row2(tra("Cross-project statistics"), $x); row2(tra("Stats on your cell phone"), URL_BASE."userw.php?id=$user->id"); row2(tra("Account number")."
".tra("Used in URLs")."", $user->id); } // show static user info (private) // function show_user_info_private($user) { if (is_valid_email_addr($user->email_addr)) { $email_text = $user->email_addr; } else { $email_text = "Verification pending"; } row1(tra("Account information")); row2(tra("Email address"), $email_text); row2(tra("Name"), $user->name); if (strlen($user->url)) { $x = "http://$user->url"; } else { $x = "none"; } row2(tra("URL"), $x); row2(tra("Country"), $user->country); row2(tra("Postal code"), $user->postal_code); row2(tra("Change"), "".tra("email address")." | ".tra("password")." | ".tra("other account info").""); row2("", "authenticator)."\">".tra("Log out").""); row1(tra("Community")); if ($user->has_profile) { $x = "id\">".tra("View or edit")." | ".tra("Delete").""; } else { $x = "".tra("Create").""; } row2(tra("Profile"), $x); $tot = total_posts($user); if ($tot) { row2(tra("Message boards"), "id>".tra("%1 posts", $tot).""); } row2(tra("Private messages"), pm_notification($user)); row1(tra("Teams")); if ($user->teamid) { $team = lookup_team($user->teamid); $x = "id\">$team->name | ".tra("Quit team").""; if (is_team_admin($user, $team)) { $x .= " | teamid\">".tra("Administer").""; } // if there's a foundership request, notify the founder // if ($user->id==$team->userid && $team->ping_user >0) { $x .= " (foundership change request pending)"; } row2(tra("Team"), $x); } else { row2(tra("Team"), tra("None")." | ".tra("find a team").""); } $teams_founded = BoincTeam::enum("userid=$user->id"); foreach ($teams_founded as $team) { if ($team->id != $user->teamid) { $x = "id\">$team->name"; $x .= "| id."\">".tra("Administer").""; if ($team->ping_user > 0) { $x .= " (foundership change request pending)"; } row2(tra("Founder but not member of"), $x); } } row1("".tra("Preferences")); row2( tra("General preferences")."
".tra("specify when and how BOINC uses your computer")."", "".tra("View or edit")."" ); row2(tra("%1 preferences", PROJECT)."
".tra("control resource share and customize graphics")."", "".tra("View or edit")."" ); row2(tra("Message board preferences")."
".tra("configure features and appearance of message boards")."", "".tra("View or edit")."" ); } // show summary of dynamic and static info (public) // function show_user_summary_public($user) { row2(PROJECT." member since", date_str($user->create_time)); row2("Country", $user->country); if (strlen($user->url)) { row2("URL", "url\">http://$user->url"); } show_credit($user); if ($user->teamid && ($team = lookup_team($user->teamid))) { row2("Team", "id\">$team->name"); } else { row2("Team", "None"); } if ($user->show_hosts) { row2("Computers", "id\">View"); } else { row2("Computers", "hidden"); } $tot = total_posts($user); if ($tot) { row2("Message boards", "id\">$tot posts"); } if ($user->donated == 1) { if (file_exists("../project/donations.inc")) { require_once("../project/donations.inc"); $x .= DONATION_LINK; row2("Donor",$x); } } row2("Contact", "id."\">Send private message"); } function show_profile_link($user) { if ($user->has_profile) { row2("Profile", "id\">View"); } } // show a summary of the user. // NOTE: This is intended to be shown only to that user. // it has info that other users aren't supposed to see function show_user_page_private($user) { $config = get_config(); start_table("width=\"100%\""); show_user_info_private($user); show_user_stats_private($user); // Does this project accept donations? Then put in a project specific // function to show user donation information in ../project/donations.inc // if (parse_bool($config, "donations_accepted")) { if (file_exists("../project/donations.inc")) { require_once("../project/donations.inc"); show_user_donations_private($user); } } end_table(); } function make_user( $email_addr, $name, $passwd_hash, $country=null, $postal_code=null, $project_prefs=null, $teamid=0 ) { if (!is_valid_email_addr($email_addr)) return null; $authenticator = random_string(); $cross_project_id = random_string(); $now = time(); if (!is_valid_country($country)) return null; $country = BoincDb::escape_string($country); $postal_code = strip_tags(process_user_text($postal_code)); $ret = BoincUser::insert("(create_time, email_addr, name, authenticator, country, postal_code, total_credit, expavg_credit, expavg_time, project_prefs, teamid, send_email, show_hosts, cross_project_id, passwd_hash) values($now, '$email_addr', '$name', '$authenticator', '$country', '$postal_code', 0, 0, unix_timestamp(), '$project_prefs', $teamid, 1, 1, '$cross_project_id', '$passwd_hash')"); if ($ret) { $db = BoincDb::get(); $id = $db->insert_id(); return BoincUser::lookup_id($id); } else { return null; } } $cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit ?>