+++ /dev/null
-<?php
-/***************************************************************************
- * Copyright (C) 2003-2006 Polytechnique.org *
- * http://opensource.polytechnique.org/ *
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * You should have received a copy of the GNU General Public License *
- * along with this program; if not, write to the Free Software *
- * Foundation, Inc., *
- * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
- ***************************************************************************/
-
-function set_new_usage($uid, $usage, $alias=false) {
- XDB::execute("UPDATE auth_user_md5 set nom_usage={?} WHERE user_id={?}",$usage ,$uid);
- XDB::execute("DELETE FROM aliases WHERE FIND_IN_SET('usage',flags) AND id={?}", $uid);
- if ($alias && $usage) {
- XDB::execute("UPDATE aliases SET flags=flags & 255-1 WHERE id={?}", $uid);
- XDB::execute("INSERT INTO aliases VALUES({?}, 'alias', 'usage,bestalias', {?}, null)",
- $alias, $uid);
- }
- $r = XDB::query("SELECT alias FROM aliases WHERE FIND_IN_SET('bestalias', flags) AND id = {?}", $uid);
- if ($r->fetchOneCell() == "") {
- XDB::execute("UPDATE aliases SET flags = 1 | flags WHERE id = {?} LIMIT 1", $uid);
- }
- require_once 'user.func.inc.php';
- user_reindex($uid);
-}
-
-// vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
-?>
$page->trig("updaté correctement.");
}
if (Env::v('nomusageN') != $mr['nom_usage']) {
- require_once('nomusage.inc.php');
set_new_usage($mr['user_id'], Env::v('nomusageN'), make_username(Env::v('prenomN'), Env::v('nomusageN')));
}
$r = XDB::query("SELECT *, a.alias AS forlife, u.flags AS sexe
WHERE id = {?} AND type!='homonyme'
ORDER BY type!= 'a_vie'", $mr["user_id"]));
$page->assign('xorgmails', $xorgmails);
- $page->assign('email_panne', $email_panne);
+ $page->assign('email_panne', $email_panne);
$page->assign('emails',$redirect->emails);
$page->assign('mr',$mr);
$page->changeTpl('admin/homonymes.tpl');
$page->assign('xorg_title','Polytechnique.org - Administration - Homonymes');
require_once("homonymes.inc.php");
-
+
if ($target) {
if (! list($prenom,$nom,$forlife,$loginbis) = select_if_homonyme($target)) {
$target=0;
$page->assign('loginbis',$loginbis);
}
}
-
+
$page->assign('op',$op);
$page->assign('target',$target);
-
+
// on a un $target valide, on prepare les mails
if ($target) {
-
+
// on examine l'op a effectuer
switch ($op) {
case 'mail':
break;
}
}
-
+
if ($op == 'list') {
$res = XDB::iterator(
"SELECT a.alias AS homonyme,s.id AS user_id,s.alias AS forlife,
$page->assign_by_ref('hnymes',$hnymes);
}
}
-
+
function handler_ax_xorg(&$page) {
$page->changeTpl('admin/ax-xorg.tpl');
$page->assign('xorg_title','Polytechnique.org - Administration - AX/X.org');
-
+
// liste des différences
$res = XDB::query(
'SELECT u.promo,u.nom AS nom,u.prenom AS prenom,ia.nom AS nomax,ia.prenom AS prenomax,u.matricule AS mat,ia.matricule_ax AS matax
OR u.prenom != ia.prenom OR (u.promo != ia.promo AND u.promo != ia.promo+1 AND u.promo != ia.promo-1)
ORDER BY u.promo,u.nom,u.prenom');
$page->assign('diffs', $res->fetchAllAssoc());
-
+
// gens à l'ax mais pas chez nous
$res = XDB::query(
'SELECT ia.promo,ia.nom,ia.nom_patro,ia.prenom
LEFT JOIN auth_user_md5 AS u ON u.matricule_ax = ia.matricule_ax
WHERE u.nom IS NULL');
$page->assign('mank', $res->fetchAllAssoc());
-
+
// gens chez nous et pas à l'ax
$res = XDB::query('SELECT promo,nom,prenom FROM auth_user_md5 WHERE matricule_ax IS NULL');
$page->assign('plus', $res->fetchAllAssoc());
}
-
+
function handler_deaths(&$page, $promo = 0, $validate = false) {
$page->changeTpl('admin/deces_promo.tpl');
$page->assign('xorg_title','Polytechnique.org - Administration - Deces');
-
+
if (!$promo)
$promo = Env::i('promo');
if (Env::has('sub10')) $promo -= 10;
if (Env::has('sub01')) $promo -= 1;
if (Env::has('add01')) $promo += 1;
if (Env::has('add10')) $promo += 10;
-
+
$page->assign('promo',$promo);
-
+
if ($validate) {
$new_deces = array();
$res = XDB::iterRow("SELECT user_id,matricule,nom,prenom,deces FROM auth_user_md5 WHERE promo = {?}", $promo);
}
$page->assign('new_deces',$new_deces);
}
-
+
$res = XDB::iterator('SELECT matricule, nom, prenom, deces FROM auth_user_md5 WHERE promo = {?} ORDER BY nom,prenom', $promo);
$page->assign('decedes', $res);
}
-
+
function handler_synchro_ax(&$page, $user = null, $action = null) {
$page->changeTpl('admin/synchro_ax.tpl');
$page->assign('xorg_title','Polytechnique.org - Administration - Synchro AX');
-
+
require_once('synchro_ax.inc.php');
-
+
if (is_ax_key_missing()) {
$page->assign('no_private_key', true);
$page->run();
}
-
+
require_once('user.func.inc.php');
if ($user)
return;
}
}
-
+
if (Env::has('mat')) {
$res = XDB::query(
- "SELECT alias
+ "SELECT alias
FROM aliases AS a
INNER JOIN auth_user_md5 AS u ON (a.id=u.user_id AND a.type='a_vie')
WHERE matricule={?}", Env::i('mat'));
$login = $res->fetchOneCell();
}
-
+
if ($login) {
if ($action == 'import') {
ax_synchronize($login, S::v('uid'));
$userax= get_user_ax($user['matricule_ax']);
require_once 'profil.func.inc.php';
$diff = diff_user_details($userax, $user, 'ax');
-
+
$page->assign('x', $user);
$page->assign('diff', $diff);
}
}
-
+
function handler_validate(&$page) {
$page->changeTpl('admin/valider.tpl');
$page->assign('xorg_title','Polytechnique.org - Administration - Valider une demande');
require_once("validations.inc.php");
-
+
if(Env::has('uid') && Env::has('type') && Env::has('stamp')) {
$req = Validate::get_request(Env::v('uid'), Env::v('type'), Env::v('stamp'));
if($req) { $req->handle_formu(); }
}
-
+
$r = XDB::iterator('SHOW COLUMNS FROM requests_answers');
while (($a = $r->next()) && $a['Field'] != 'category');
$page->assign('categories', $categories = explode(',', str_replace("'", '', substr($a['Type'], 5, -1))));
-
+
$hidden = array();
if (Post::has('hide')) {
- $hide = array();
- foreach ($categories as $cat)
+ $hide = array();
+ foreach ($categories as $cat)
if (!Post::v($cat)) {
$hidden[$cat] = 1;
$hide[] = $cat;
$hidden[$hide_type] = true;
}
$page->assign('hide_requests', $hidden);
-
+
$page->assign('vit', new ValidateIterator());
}
function handler_validate_answers(&$page, $action = 'list', $id = null) {
$table_editor->describe('date','date',false);
$table_editor->describe('ext','extension du screenshot',false);
$table_editor->apply($page, $action, $id);
- }
+ }
function handler_postfix_blacklist(&$page, $action = 'list', $id = null) {
require_once('../classes/PLTableEditor.php');
$page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Blacklist');
$table_editor->describe('reject_text','Texte de rejet',true);
$table_editor->describe('email','email',true);
$table_editor->apply($page, $action, $id);
- }
+ }
function handler_postfix_whitelist(&$page, $action = 'list', $id = null) {
require_once('../classes/PLTableEditor.php');
$page->assign('xorg_title','Polytechnique.org - Administration - Postfix : Whitelist');
$table_editor = new PLTableEditor('admin/postfix/whitelist','postfix_whitelist','email', true);
$table_editor->describe('email','email',true);
$table_editor->apply($page, $action, $id);
- }
+ }
function handler_logger_actions(&$page, $action = 'list', $id = null) {
require_once('../classes/PLTableEditor.php');
$page->assign('xorg_title','Polytechnique.org - Administration - Actions');
$table_editor->describe('text','intitulé',true);
$table_editor->describe('description','description',true);
$table_editor->apply($page, $action, $id);
- }
+ }
function handler_downtime(&$page, $action = 'list', $id = null) {
require_once('../classes/PLTableEditor.php');
$page->assign('xorg_title','Polytechnique.org - Administration - Coupures');
$table_editor->describe('services','services affectés',true);
$table_editor->describe('description','description',false);
$table_editor->apply($page, $action, $id);
- }
+ }
function handler_wiki(&$page, $action='list') {
require_once 'wiki.inc.php';
-
+
// update wiki perms
if ($action == 'update') {
$perms_read = Post::v('read');
foreach ($_POST as $wiki_page => $val) if ($val == 'on') {
$wiki_page = str_replace('_', '/', $wiki_page);
if (!$perms_read || !$perms_edit)
- list($perms0, $perms1) = wiki_get_perms($wiki_page);
+ list($perms0, $perms1) = wiki_get_perms($wiki_page);
if ($perms_read)
$perms0 = $perms_read;
if ($perms_edit)
}
}
}
-
+
$perms = wiki_perms_options();
-
+
// list wiki pages and their perms
$wiki_pages = array();
$dir = wiki_work_dir();
}
}
ksort($wiki_pages);
-
+
$page->changeTpl('admin/wiki.tpl');
- $page->assign('wiki_pages', $wiki_pages);
+ $page->assign('wiki_pages', $wiki_pages);
$page->assign('perms_opts', $perms);
}
}