All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencastproject.publication.youtube.auth.ClientCredentials Maven / Gradle / Ivy

/*
 * Licensed to The Apereo Foundation under one or more contributor license
 * agreements. See the NOTICE file distributed with this work for additional
 * information regarding copyright ownership.
 *
 *
 * The Apereo Foundation licenses this file to you under the Educational
 * Community 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://opensource.org/licenses/ecl2.txt
 *
 * 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.opencastproject.publication.youtube.auth;

import org.opencastproject.util.data.Collections;

import org.apache.commons.lang3.builder.ToStringBuilder;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;

import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.List;

/**
 * ClientCredentials class represents the set of parameters required to make an authorization
 * request.
 */
public final class ClientCredentials {

  private String clientId;
  private String credentialDatastore;
  private String dataStoreDirectory;
  private File clientSecrets;

  public String getClientId() {
    return clientId;
  }

  public String getCredentialDatastore() {
    return credentialDatastore;
  }

  public String getDataStoreDirectory() {
    return dataStoreDirectory;
  }

  public List getScopes() {
    return Collections.list("https://www.googleapis.com/auth/youtube",
        "https://www.googleapis.com/auth/youtube.upload", "https://www.googleapis.com/auth/youtube.readonly");
  }

  public File getClientSecrets() {
    return clientSecrets;
  }

  public void setClientSecrets(final File clientSecrets) throws IOException, ParseException {
    this.clientSecrets = clientSecrets;
    this.clientId = getValueFromArray(clientSecrets);
  }

  public void setCredentialDatastore(final String credentialDatastore) {
    this.credentialDatastore = credentialDatastore;
  }

  public void setDataStoreDirectory(final String dataStoreDirectory) {
    this.dataStoreDirectory = dataStoreDirectory;
  }

  @Override
  public String toString() {
    return ToStringBuilder.reflectionToString(this);
  }

  /**
   * Parses a file and returns a value matching the keys provided if it exists.
   * The file is assumed to be composed of one array, with each array element
   * in turn being a JSONObject containing a name : value pair.
   *
   * @param file
   *          file to parse
   * @return matching value. Throws an exception if there is no matching value.
   * @throws java.io.FileNotFoundException
   * @throws java.io.IOException
   * @throws java.lang.IllegalArgumentException
   */
  private String getValueFromArray(final File file) throws IOException, ParseException, IllegalArgumentException {
    final JSONParser parser = new JSONParser();
    final FileReader reader = new FileReader(file);
    final JSONObject jsonObject = (JSONObject) parser.parse(reader);

    if (!jsonObject.containsKey("installed")) {
      throw new IllegalArgumentException("client_secret file does not contain \"installed\" as a top level key. Did you"
          + "set the type for your 'OAuth 2.0-Client-ID' correctly?");
    }
    final JSONObject array = (JSONObject) jsonObject.get("installed");

    if (!array.containsKey("client_id")) {
      throw new IllegalArgumentException("client_secret file does not contain \"client_id\".");
    }
    return (String) array.get("client_id");
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy