示例#1
0
  /**
   * Blocks an external component from connecting to the local server. If the component was
   *
   * <p>connected when the permission was revoked then the connection of the entity will be closed.
   *
   * @param subdomain the subdomain of the external component that is not allowed to connect.
   */
  public static void blockAccess(String subdomain) {

    // Remove any previous configuration for this external component

    deleteConfiguration(subdomain);

    // Update the database with the new revoked permission

    ExternalComponentConfiguration config = new ExternalComponentConfiguration(subdomain);

    config.setPermission(Permission.blocked);

    addConfiguration(config);

    // Check if the component was connected and proceed to close the connection

    String domain = subdomain + "." + XMPPServer.getInstance().getServerInfo().getDefaultName();

    Session session = SessionManager.getInstance().getComponentSession(domain);

    if (session != null) {

      session.getConnection().close();
    }
  }
示例#2
0
  private static Collection<ExternalComponentConfiguration> getConfigurations(
      Permission permission) {

    Collection<ExternalComponentConfiguration> answer =
        new ArrayList<ExternalComponentConfiguration>();

    java.sql.Connection con = null;

    PreparedStatement pstmt = null;

    try {

      con = DbConnectionManager.getConnection();

      pstmt = con.prepareStatement(LOAD_CONFIGURATIONS);

      pstmt.setString(1, permission.toString());

      ResultSet rs = pstmt.executeQuery();

      ExternalComponentConfiguration configuration;

      while (rs.next()) {

        configuration = new ExternalComponentConfiguration(rs.getString(1));

        configuration.setSecret(rs.getString(2));

        configuration.setPermission(permission);

        answer.add(configuration);
      }

      rs.close();

    } catch (SQLException sqle) {

      Log.error(sqle);

    } finally {

      try {
        if (pstmt != null) pstmt.close();
      } catch (Exception e) {
        Log.error(e);
      }

      try {
        if (con != null) con.close();
      } catch (Exception e) {
        Log.error(e);
      }
    }

    return answer;
  }
示例#3
0
  /**
   * Allows an external component to connect to the local server with the specified configuration.
   *
   * @param configuration the configuration for the external component.
   */
  public static void allowAccess(ExternalComponentConfiguration configuration) {

    // Remove any previous configuration for this external component

    deleteConfiguration(configuration.getSubdomain());

    // Update the database with the new granted permission and configuration

    configuration.setPermission(Permission.allowed);

    addConfiguration(configuration);
  }
示例#4
0
  /**
   * Returns the configuration for an external component.
   *
   * @param subdomain the subdomain of the external component.
   * @return the configuration for an external component.
   */
  public static ExternalComponentConfiguration getConfiguration(String subdomain) {

    ExternalComponentConfiguration configuration = null;

    java.sql.Connection con = null;

    PreparedStatement pstmt = null;

    try {

      con = DbConnectionManager.getConnection();

      pstmt = con.prepareStatement(LOAD_CONFIGURATION);

      pstmt.setString(1, subdomain);

      ResultSet rs = pstmt.executeQuery();

      while (rs.next()) {

        configuration = new ExternalComponentConfiguration(subdomain);

        configuration.setSecret(rs.getString(1));

        configuration.setPermission(Permission.valueOf(rs.getString(2)));
      }

      rs.close();

    } catch (SQLException sqle) {

      Log.error(sqle);

    } finally {

      try {
        if (pstmt != null) pstmt.close();
      } catch (Exception e) {
        Log.error(e);
      }

      try {
        if (con != null) con.close();
      } catch (Exception e) {
        Log.error(e);
      }
    }

    return configuration;
  }