Package org.apache.hadoop.hbase.stargate.auth

Source Code of org.apache.hadoop.hbase.stargate.auth.JDBCAuthenticator

/*
* Copyright 2010 The Apache Software Foundation
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.hadoop.hbase.stargate.auth;

import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.stargate.User;
import org.apache.hadoop.util.StringUtils;

public class JDBCAuthenticator extends Authenticator {

  static final Log LOG = LogFactory.getLog(JDBCAuthenticator.class);
  static final int MAX_RETRIES = 5;
  static final long RETRY_SLEEP_TIME = 1000 * 2;

  String url;
  String table;
  String user;
  String password;
  Connection connection;
  PreparedStatement userFetchStmt;

  /**
   * Constructor
   * @param conf
   */
  public JDBCAuthenticator(HBaseConfiguration conf) {
    this(conf.get("stargate.auth.jdbc.url"),
      conf.get("stargate.auth.jdbc.table"),
      conf.get("stargate.auth.jdbc.user"),
      conf.get("stargate.auth.jdbc.password"));
  }

  /**
   * Constructor
   * @param url
   * @param table
   * @param user
   * @param password
   */
  public JDBCAuthenticator(String url, String table, String user,
      String password) {
    this.url = url;
    this.table = table;
    this.user = user;
    this.password = password;
  }

  @Override
  public User getUserForToken(String token) throws IOException {
    int retries = 0;
    while (truetry {
      if (connection == null) {
        connection = DriverManager.getConnection(url, user, password);
        userFetchStmt = connection.prepareStatement(
          "SELECT name, admin, disabled FROM " + table + " WHERE token = ?");
      }
      ResultSet results;
      synchronized (userFetchStmt) {
        userFetchStmt.setString(1, token);
        results = userFetchStmt.executeQuery();
      }
      if (!results.next()) {
        return null;
      }
      return new User(results.getString(1), token, results.getBoolean(2),
        results.getBoolean(3));
    } catch (SQLException e) {
      connection = null;
      if (++retries > MAX_RETRIES) {
        throw new IOException(e);
      } else try {
        LOG.warn(StringUtils.stringifyException(e));
        Thread.sleep(RETRY_SLEEP_TIME);
      } catch (InterruptedException ex) {
        // ignore
      }
    }
  }

}
TOP

Related Classes of org.apache.hadoop.hbase.stargate.auth.JDBCAuthenticator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.