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

com.sigpwned.dropwizard.auth.social.example.webapp.resource.MeResource Maven / Gradle / Ivy

/*-
 * =================================LICENSE_START==================================
 * dropwizard-jose-jwt-example-webapp
 * ====================================SECTION=====================================
 * Copyright (C) 2022 Andy Boothe
 * ====================================SECTION=====================================
 * Licensed 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.
 * ==================================LICENSE_END===================================
 */
package com.sigpwned.dropwizard.auth.social.example.webapp.resource;

import javax.annotation.security.PermitAll;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.SecurityContext;
import com.sigpwned.dropwizard.auth.social.example.webapp.model.TwitterAccount;
import com.sigpwned.dropwizard.auth.social.linting.Generated;
import com.sigpwned.dropwizard.auth.social.linting.VisibleForTesting;

/**
 * A simple example endpoint that returns the current user. Note that the class is annotated with
 * {@link PermitAll}, which requires all calls to this endpoint to include credentials. The user is
 * authenticated using the OAuth 1.0 flow.
 */
@PermitAll
@Path("/me")
public class MeResource {
  @Context
  @VisibleForTesting
  SecurityContext context;

  @GET
  @Produces(MediaType.APPLICATION_JSON)
  public TwitterAccount getMe() {
    return (TwitterAccount) getContext().getUserPrincipal();
  }

  /**
   * @return the context
   */
  @Generated
  private SecurityContext getContext() {
    return context;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy