1 /* Copyright (C) 2000-2004 Thomas Bopp, Thorsten Hampel, Ludger Merkens
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 * $Id: secure_mapping.pike,v 1.1 2008/03/31 13:39:57 exodusd Exp $
19 inherit "/kernel/module";
20 inherit "/kernel/db_mapping";
23 class secure_mapping : public module,db_mapping{
31 * Callback function when the module is loaded.
43 * look up a user object from the sTeam database by username.
45 * @param string - username
46 * @return object - proxy associated with the user.
49 object lookup(string key)
57 * removes a key from the key lookup table, called on deletion of a key.
58 * @param string key - the name the key is registered with
62 int unregister(string key)
65 try_event(EVENT_DB_UNREGISTER, CALLER, key);
67 run_event(EVENT_DB_UNREGISTER, CALLER, key);
72 * registers a key in the sTeam database with it's keyname.
74 * @param string - uname (name to register with)
75 * @param object - key (the (proxy) object to register)
79 int register(string uname, object key)
82 try_event(EVENT_DB_REGISTER, CALLER, uname, key);
83 ::set_value(uname, key);
84 res = (::get_value(uname) == key);
85 run_event(EVENT_DB_REGISTER, CALLER, uname, key);
89 // int get_object_id()
91 // return __module::get_object_id();
99 try_event(EVENT_DB_QUERY, CALLER);
101 run_event(EVENT_DB_QUERY, CALLER);