View Javadoc
1   /*
2    * MIT License
3    *
4    * Copyright (c) 2010-2024 The Waffle Project Contributors: https://github.com/Waffle/waffle/graphs/contributors
5    *
6    * Permission is hereby granted, free of charge, to any person obtaining a copy
7    * of this software and associated documentation files (the "Software"), to deal
8    * in the Software without restriction, including without limitation the rights
9    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10   * copies of the Software, and to permit persons to whom the Software is
11   * furnished to do so, subject to the following conditions:
12   *
13   * The above copyright notice and this permission notice shall be included in all
14   * copies or substantial portions of the Software.
15   *
16   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22   * SOFTWARE.
23   */
24  package waffle.servlet;
25  
26  import jakarta.servlet.http.HttpServletRequest;
27  import jakarta.servlet.http.HttpServletRequestWrapper;
28  
29  import java.security.Principal;
30  
31  /**
32   * Negotiate Request wrapper.
33   */
34  public class NegotiateRequestWrapper extends HttpServletRequestWrapper {
35  
36      /** The principal. */
37      private final WindowsPrincipal principal;
38  
39      /**
40       * Instantiates a new negotiate request wrapper.
41       *
42       * @param newRequest
43       *            the new request
44       * @param newPrincipal
45       *            the new principal
46       */
47      public NegotiateRequestWrapper(final HttpServletRequest newRequest, final WindowsPrincipal newPrincipal) {
48          super(newRequest);
49          this.principal = newPrincipal;
50      }
51  
52      /**
53       * User principal.
54       *
55       * @return the user principal
56       */
57      @Override
58      public Principal getUserPrincipal() {
59          return this.principal;
60      }
61  
62      /**
63       * Authentication type.
64       *
65       * @return the auth type
66       */
67      @Override
68      public String getAuthType() {
69          return "NEGOTIATE";
70      }
71  
72      /**
73       * Remote username.
74       *
75       * @return the remote user
76       */
77      @Override
78      public String getRemoteUser() {
79          return this.principal.getName();
80      }
81  
82      /**
83       * Returns true if the user is in a given role.
84       *
85       * @param role
86       *            the role
87       *
88       * @return true, if is user in role
89       */
90      @Override
91      public boolean isUserInRole(final String role) {
92          return this.principal.hasRole(role);
93      }
94  }