org.apache.shindig.auth.BasicSecurityToken.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.shindig.auth.BasicSecurityToken.java

Source

/*
 * 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.shindig.auth;

import org.apache.shindig.common.crypto.BasicBlobCrypter;
import org.apache.shindig.common.crypto.BlobCrypter;
import org.apache.shindig.common.crypto.BlobCrypterException;

import com.google.common.collect.Maps;

import java.util.Map;

/**
 * Primitive token implementation that uses strings as tokens.
 */
public class BasicSecurityToken extends AbstractSecurityToken implements SecurityToken {
    /** serialized form of the token */
    private final String token;

    /** data from the token */
    private final Map<String, String> tokenData;

    /** tool to use for signing and encrypting the token */
    private final BlobCrypter crypter = new BasicBlobCrypter(INSECURE_KEY);

    private final String activeUrl;

    private static final byte[] INSECURE_KEY = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };

    private static final String OWNER_KEY = "o";
    private static final String APP_KEY = "a";
    private static final String VIEWER_KEY = "v";
    private static final String DOMAIN_KEY = "d";
    private static final String APPURL_KEY = "u";
    private static final String MODULE_KEY = "m";
    private static final String CONTAINER_KEY = "c";
    private static final String EXPIRES_KEY = "x";

    /**
     * Generates a token from an input string
     * @param token String form of token
     * @param maxAge max age of the token (in seconds)
     * @throws BlobCrypterException never
     */
    public BasicSecurityToken(String token, int maxAge, String activeUrl) throws BlobCrypterException {
        this.token = token;
        this.tokenData = crypter.unwrap(token, maxAge);
        this.activeUrl = activeUrl;
    }

    public BasicSecurityToken(String owner, String viewer, String app, String domain, String appUrl,
            String moduleId, String container, String activeUrl, Long expiresAt) throws BlobCrypterException {
        tokenData = Maps.newHashMapWithExpectedSize(7);
        putNullSafe(OWNER_KEY, owner);
        putNullSafe(VIEWER_KEY, viewer);
        putNullSafe(APP_KEY, app);
        putNullSafe(DOMAIN_KEY, domain);
        putNullSafe(APPURL_KEY, appUrl);
        putNullSafe(MODULE_KEY, moduleId);
        putNullSafe(CONTAINER_KEY, container);
        if (expiresAt != null)
            putNullSafe(EXPIRES_KEY, expiresAt.toString());

        token = crypter.wrap(tokenData);
        this.activeUrl = activeUrl;
    }

    private void putNullSafe(String key, String value) {
        if (value != null) {
            tokenData.put(key, value);
        }
    }

    /**
     * {@inheritDoc}
     */
    public String getAppId() {
        return tokenData.get(APP_KEY);
    }

    /**
     * {@inheritDoc}
     */
    public String getDomain() {
        return tokenData.get(DOMAIN_KEY);
    }

    /**
     * {@inheritDoc}
     */
    public String getContainer() {
        return tokenData.get(CONTAINER_KEY);
    }

    /**
     * {@inheritDoc}
     */
    public String getOwnerId() {
        return tokenData.get(OWNER_KEY);
    }

    /**
     * {@inheritDoc}
     */
    public String getViewerId() {
        return tokenData.get(VIEWER_KEY);
    }

    /**
     * {@inheritDoc}
     */
    public String getAppUrl() {
        return tokenData.get(APPURL_KEY);
    }

    /**
     * {@inheritDoc}
     */
    public long getModuleId() {
        return Long.parseLong(tokenData.get(MODULE_KEY));
    }

    public Long getExpiresAt() {
        return Long.parseLong(tokenData.get(EXPIRES_KEY));
    }

    /**
     * {@inheritDoc}
     */
    public String getUpdatedToken() {
        return null;
    }

    public String getAuthenticationMode() {
        return AuthenticationMode.SECURITY_TOKEN_URL_PARAMETER.name();
    }

    /**
     * {@inheritDoc}
     */
    public String getTrustedJson() {
        return null;
    }

    /**
     * {@inheritDoc}
     */
    public boolean isAnonymous() {
        return false;
    }

    public String getActiveUrl() {
        if (activeUrl == null) {
            throw new UnsupportedOperationException("No active URL available");
        }
        return activeUrl;
    }
}