/* * 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.BlobCrypterException; import org.apache.shindig.common.util.Utf8UrlCoder; import org.apache.commons.lang.StringUtils; import com.google.common.base.Joiner; import com.google.inject.Singleton; import java.util.Map; /** * A SecurityTokenCodec implementation that just provides dummy data to satisfy * tests and API calls. Do not use this for any security applications. * * @since 2.0.0 */ @Singleton public class BasicSecurityTokenCodec implements SecurityTokenCodec { private static final int OWNER_INDEX = 0; private static final int VIEWER_INDEX = 1; private static final int APP_ID_INDEX = 2; private static final int DOMAIN_INDEX = 3; private static final int APP_URL_INDEX = 4; private static final int MODULE_ID_INDEX = 5; private static final int CONTAINER_ID_INDEX = 6; private static final int TOKEN_COUNT = CONTAINER_ID_INDEX + 1; /** * Encodes a token using the a plaintext dummy format. * @param token token to encode * @return token with values separated by colons */ public String encodeToken(SecurityToken token) { return Joiner.on(":").join( Utf8UrlCoder.encode(token.getOwnerId()), Utf8UrlCoder.encode(token.getViewerId()), Utf8UrlCoder.encode(token.getAppId()), Utf8UrlCoder.encode(token.getDomain()), Utf8UrlCoder.encode(token.getAppUrl()), Long.toString(token.getModuleId()), Utf8UrlCoder.encode(token.getContainer())); } /** * {@inheritDoc} * * Returns a token with some faked out values. */ public SecurityToken createToken(Map<String, String> parameters) throws SecurityTokenException { final String token = parameters.get(SecurityTokenCodec.SECURITY_TOKEN_NAME); if (token == null || token.trim().length() == 0) { // No token is present, assume anonymous access return new AnonymousSecurityToken(); } try { String[] tokens = StringUtils.split(token, ':'); if (tokens.length != TOKEN_COUNT) { throw new SecurityTokenException("Malformed security token"); } return new BasicSecurityToken( Utf8UrlCoder.decode(tokens[OWNER_INDEX]), Utf8UrlCoder.decode(tokens[VIEWER_INDEX]), Utf8UrlCoder.decode(tokens[APP_ID_INDEX]), Utf8UrlCoder.decode(tokens[DOMAIN_INDEX]), Utf8UrlCoder.decode(tokens[APP_URL_INDEX]), Utf8UrlCoder.decode(tokens[MODULE_ID_INDEX]), Utf8UrlCoder.decode(tokens[CONTAINER_ID_INDEX]), parameters.get(SecurityTokenCodec.ACTIVE_URL_NAME), null); } catch (BlobCrypterException e) { throw new SecurityTokenException(e); } catch (ArrayIndexOutOfBoundsException e) { throw new SecurityTokenException(e); } } /** * Creates a signer with 24 hour token expiry */ public BasicSecurityTokenCodec() { } }