zakautho_config *config;
+ xmlDocPtr xdoc;
+ xmlNodePtr xnode;
+
+ GError *error;
+ GdaConnection *gdacon;
+
if (!r->user)
{
return AUTHZ_DENIED_NO_USER;
if (config->xml_filename != NULL)
{
- xmlDocPtr xdoc;
- xmlNodePtr xnode;
-
xdoc = xmlParseFile (config->xml_filename);
if (xdoc != NULL)
{
}
else if (config->db_cnc_string != NULL)
{
- GError *error;
- GdaConnection *gdacon;
-
error = NULL;
gdacon = gda_connection_open_from_string (NULL, config->db_cnc_string, NULL, 0, &error);
if (gdacon == NULL || error != NULL)
return AUTHZ_DENIED;
}
}
+ else
+ {
+ ap_log_rerror (APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02594)
+ "libzakautho configuration must be loaded from xml file or from database. "
+ "Please use AuthZakAuthoXmlFilename or AuthZakAuthoDbCncString in apache configuration.");
+ return AUTHZ_DENIED;
+ }
_user = g_strdup_printf (config->user_decoration != NULL ? config->user_decoration : "%s", r->user);
role_user = zak_autho_get_role_from_id (autho, _user);