summaryrefslogtreecommitdiffstats
path: root/python/environs
diff options
context:
space:
mode:
authorNicolas Clapies <nclapies@entrouvert.com>2004-07-18 23:35:59 +0000
committerNicolas Clapies <nclapies@entrouvert.com>2004-07-18 23:35:59 +0000
commit244c4e278f655d2434f3b65158a43816ac1a110d (patch)
treebd2346719b66bdad7e9aac9f61a7fee7fbcfcffb /python/environs
parent721642847cd1acf399f191d1bb205d7d6466f4fb (diff)
downloadlasso-244c4e278f655d2434f3b65158a43816ac1a110d.tar.gz
lasso-244c4e278f655d2434f3b65158a43816ac1a110d.tar.xz
lasso-244c4e278f655d2434f3b65158a43816ac1a110d.zip
*** empty log message ***
Diffstat (limited to 'python/environs')
-rw-r--r--python/environs/py_federation_termination.c133
-rw-r--r--python/environs/py_federation_termination.h48
2 files changed, 181 insertions, 0 deletions
diff --git a/python/environs/py_federation_termination.c b/python/environs/py_federation_termination.c
new file mode 100644
index 00000000..a9e9718d
--- /dev/null
+++ b/python/environs/py_federation_termination.c
@@ -0,0 +1,133 @@
+/* $Id$
+ *
+ * PyLasso -- Python bindings for Lasso library
+ *
+ * Copyright (C) 2004 Entr'ouvert
+ * http://lasso.labs.libre-entreprise.org
+ *
+ * Authors: Valery Febvre <vfebvre@easter-eggs.com>
+ * Nicolas Clapies <nclapies@entrouvert.com>
+ *
+ * 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
+ */
+
+#include "../lassomod.h"
+
+#include "py_federation_termination.h"
+
+
+PyObject *LassoFederationTermination_wrap(LassoFederationTermination *federation_termination) {
+ PyObject *ret;
+
+ if (federation_termination == NULL) {
+ Py_INCREF(Py_None);
+ return (Py_None);
+ }
+ ret = PyCObject_FromVoidPtrAndDesc((void *) federation_termination,
+ (char *) "LassoFederationTermination *", NULL);
+ return (ret);
+}
+
+/******************************************************************************/
+
+PyObject *federation_termination_new(PyObject *self, PyObject *args) {
+ PyObject *server_obj, *user_obj;
+ LassoFederationTermination *federation_termination;
+ gint provider_type;
+
+ if (CheckArgs(args, "OOI:federation_termination_new")) {
+ if(!PyArg_ParseTuple(args, (char *) "OOi:federation_termination_new",
+ &server_obj, &user_obj, &provider_type))
+ return NULL;
+ }
+ else return NULL;
+
+ federation_termination = lasso_federation_termination_new(LassoServer_get(server_obj),
+ LassoUser_get(user_obj),
+
+ provider_type);
+
+ return (LassoFederationTermination_wrap(federation_termination));
+}
+
+PyObject *federation_termination_build_notification_msg(PyObject *self, PyObject *args) {
+ PyObject *federation_termination_obj;
+ gint codeError;
+
+ if (CheckArgs(args, "O:federation_termination_build_notification_msg")) {
+ if(!PyArg_ParseTuple(args, (char *) "O:federation_termination_build_notification_msg",
+ &federation_termination_obj))
+ return NULL;
+ }
+ else return NULL;
+
+ codeError = lasso_federation_termination_build_notification_msg(LassoFederationTermination_get(federation_termination_obj));
+
+ return(int_wrap(codeError));
+}
+
+PyObject *federation_termination_destroy(PyObject *self, PyObject *args){
+ PyObject *federation_termination_obj;
+
+ if (CheckArgs(args, "O:federation_termination_destroy")) {
+ if(!PyArg_ParseTuple(args, (char *) "O:federation_termination_destroy",
+ &federation_termination_obj))
+ return NULL;
+ }
+ else return NULL;
+
+ lasso_federation_termination_destroy(LassoFederationTermination_get(federation_termination_obj));
+
+ Py_INCREF(Py_None);
+ return(Py_None);
+}
+
+PyObject *federation_termination_init_notification(PyObject *self, PyObject *args) {
+ PyObject *federation_termination_obj;
+ gchar *remote_providerID;
+ gint codeError;
+
+ if (CheckArgs(args, "OS:federation_termination_init_notification")) {
+ if(!PyArg_ParseTuple(args, (char *) "Os:federation_termination_init_notification",
+ &federation_termination_obj, &remote_providerID))
+ return NULL;
+ }
+ else return NULL;
+
+ codeError = lasso_federation_termination_init_notification(LassoFederationTermination_get(federation_termination_obj),
+ remote_providerID);
+
+ return(int_wrap(codeError));
+}
+
+PyObject *federation_termination_process_notification_msg(PyObject *self, PyObject *args) {
+ PyObject *federation_termination_obj;
+ gchar *notification_msg;
+ gint notification_method;
+ gint codeError;
+
+ if (CheckArgs(args, "OSI:federation_termination_process_notification_msg")) {
+ if(!PyArg_ParseTuple(args, (char *) "Osi:federation_termination_process_notification_msg",
+ &federation_termination_obj, &notification_msg, &notification_method))
+ return NULL;
+ }
+ else return NULL;
+
+ codeError = lasso_federation_termination_process_notification_msg(LassoFederationTermination_get(federation_termination_obj),
+ notification_msg, notification_method);
+
+ return(int_wrap(codeError));
+}
+
diff --git a/python/environs/py_federation_termination.h b/python/environs/py_federation_termination.h
new file mode 100644
index 00000000..cc1ebefb
--- /dev/null
+++ b/python/environs/py_federation_termination.h
@@ -0,0 +1,48 @@
+/* $Id$
+ *
+ * PyLasso -- Python bindings for Lasso library
+ *
+ * Copyright (C) 2004 Entr'ouvert
+ * http://lasso.labs.libre-entreprise.org
+ *
+ * Authors: Valery Febvre <vfebvre@easter-eggs.com>
+ * Nicolas Clapies <nclapies@entrouvert.com>
+ *
+ * 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
+ */
+
+#ifndef __PYLASSO_PY_FEDERATION_TERMINATION_H__
+#define __PYLASSO_PY_FEDERATION_TERMINATION_H__
+
+#include <lasso/environs/federation_termination.h>
+
+#include "py_server.h"
+#include "py_user.h"
+
+typedef struct {
+ PyObject_HEAD
+ LassoFederationTermination *obj;
+} LassoFederationTermination_object;
+
+#define LassoFederationTermination_get(v) (((v) == Py_None) ? NULL : (((LassoFederationTermination_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
+PyObject *LassoFederationTermination_wrap(LassoFederationTermination *federation_termination);
+
+PyObject *federation_termination_new(PyObject *self, PyObject *args);
+PyObject *federation_termination_build_notification_msg(PyObject *self, PyObject *args);
+PyObject *federation_termination_destroy(PyObject *self, PyObject *args);
+PyObject *federation_termination_init_notification(PyObject *self, PyObject *args);
+PyObject *federation_termination_process_notification_msg(PyObject *self, PyObject *args);
+
+#endif /* __PYLASSO_PY_FEDERATION_TERMINATION_H__ */