Line data Source code
1 : // Copyright (C) 2009 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.auth.openid; 16 : 17 : import com.google.gerrit.server.account.externalids.ExternalId; 18 : 19 : public class OpenIdProviderPattern { 20 : public static OpenIdProviderPattern create(String pattern) { 21 152 : OpenIdProviderPattern r = new OpenIdProviderPattern(); 22 152 : r.regex = pattern.startsWith("^") && pattern.endsWith("$"); 23 152 : r.pattern = pattern; 24 152 : return r; 25 : } 26 : 27 : protected boolean regex; 28 : protected String pattern; 29 : 30 152 : protected OpenIdProviderPattern() {} 31 : 32 : public boolean matches(String id) { 33 99 : return regex ? id.matches(pattern) : id.startsWith(pattern); 34 : } 35 : 36 : public boolean matches(ExternalId extId) { 37 3 : return matches(extId.key().get()); 38 : } 39 : 40 : @Override 41 : public String toString() { 42 0 : return pattern; 43 : } 44 : }