~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/auth_http/auth_http.cc

  • Committer: Lee Bieber
  • Date: 2010-11-23 05:05:31 UTC
  • mfrom: (1945.1.8 bug675670)
  • Revision ID: kalebral@gmail.com-20101123050531-sf6ma8he7s47yryd
Merge Monty - fix bug 675670: Drizzle falsely reporting conflicts with tmp/mysql.socket but starts normally

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
using namespace drizzled;
33
33
using namespace std;
34
34
 
35
 
static bool sysvar_auth_http_enable;
36
 
static char* sysvar_auth_http_url= NULL;
37
 
 
38
35
static size_t curl_cb_read(void *ptr, size_t size, size_t nmemb, void *stream)
39
36
{
40
37
  (void) ptr;
47
44
{
48
45
  CURLcode rv;
49
46
  CURL *curl_handle;
 
47
  const std::string auth_url;
50
48
public:
51
 
  Auth_http(std::string name_arg)
52
 
    : drizzled::plugin::Authentication(name_arg)
 
49
  Auth_http(std::string name_arg, const std::string &url_arg) :
 
50
    drizzled::plugin::Authentication(name_arg),
 
51
    auth_url(url_arg)
53
52
  {
54
53
    // we are trusting that plugin initializers are called singlethreaded at startup
55
54
    // if something else also calls curl_global_init() in a threadrace while we are here,
78
77
  {
79
78
    long http_response_code;
80
79
 
81
 
    if (sysvar_auth_http_enable == false)
82
 
      return true;
83
 
 
84
80
    assert(sctx.getUser().c_str());
85
81
 
86
 
 
87
82
    // set the parameters: url, username, password
88
 
    rv= curl_easy_setopt(curl_handle, CURLOPT_URL, sysvar_auth_http_url);
 
83
    rv= curl_easy_setopt(curl_handle, CURLOPT_URL, auth_url.c_str());
89
84
#if defined(HAVE_CURLOPT_USERNAME)
90
85
 
91
86
    rv= curl_easy_setopt(curl_handle, CURLOPT_USERNAME,
123
118
 
124
119
static int initialize(drizzled::module::Context &context)
125
120
{
 
121
  const module::option_map &vm= context.getOptions();
 
122
 
126
123
  /* 
127
124
   * Per libcurl manual, in multi-threaded applications, curl_global_init() should
128
125
   * be called *before* curl_easy_init()...which is called in Auto_http's 
131
128
  if (curl_global_init(CURL_GLOBAL_NOTHING) != 0)
132
129
    return 1;
133
130
 
134
 
  auth= new Auth_http("auth_http");
 
131
  const string auth_url(vm["url"].as<string>());
 
132
  if (auth_url.size() == 0)
 
133
  {
 
134
    errmsg_printf(ERRMSG_LVL_ERROR,
 
135
                  _("auth_http plugin loaded but required option url not "
 
136
                    "specified. Against which URL are you intending on "
 
137
                    "authenticating?\n"));
 
138
    return 1;
 
139
  }
 
140
 
 
141
  auth= new Auth_http("auth_http", auth_url);
135
142
  context.add(auth);
 
143
  context.registerVariable(new sys_var_const_string_val("url", auth_url));
136
144
 
137
145
  return 0;
138
146
}
139
147
 
140
148
static void init_options(drizzled::module::option_context &context)
141
149
{
142
 
   context("enable", po::value<bool>(&sysvar_auth_http_enable)->default_value(false)->zero_tokens(),
143
 
           N_("Enable HTTP Auth check"));
 
150
  context("url", po::value<string>()->default_value(""),
 
151
          N_("URL for HTTP Auth check"));
144
152
145
153
 
146
 
static DRIZZLE_SYSVAR_BOOL(
147
 
  enable,
148
 
  sysvar_auth_http_enable,
149
 
  PLUGIN_VAR_NOCMDARG,
150
 
  N_("Enable HTTP Auth check"),
151
 
  NULL, /* check func */
152
 
  NULL, /* update func */
153
 
  false /* default */);
154
 
 
155
 
 
156
 
static DRIZZLE_SYSVAR_STR(
157
 
  url,
158
 
  sysvar_auth_http_url,
159
 
  PLUGIN_VAR_READONLY,
160
 
  N_("URL for HTTP Auth check"),
161
 
  NULL, /* check func */
162
 
  NULL, /* update func*/
163
 
  "http://localhost/" /* default */);
164
 
 
165
 
static drizzle_sys_var* auth_http_system_variables[]= {
166
 
  DRIZZLE_SYSVAR(enable),
167
 
  DRIZZLE_SYSVAR(url),
168
 
  NULL
169
 
};
170
 
 
171
154
 
172
155
DRIZZLE_DECLARE_PLUGIN
173
156
{
178
161
  "HTTP based authenication.",
179
162
  PLUGIN_LICENSE_GPL,
180
163
  initialize, /* Plugin Init */
181
 
  auth_http_system_variables,
 
164
  NULL,
182
165
  init_options    /* config options */
183
166
}
184
167
DRIZZLE_DECLARE_PLUGIN_END;