in java/com/googlesource/gerrit/plugins/supermanifest/SuperManifestRefUpdatedListener.java [582:609]
public Repository openByUri(String uriStr) throws IOException {
// A URL in this host is <canonicalWebUrl>/<repoName>.
//
// In googlesource the canonicalWebUrl is xxxx-review.googlesource.com and
// the repos are xxx.googlesource.com. Keep taking the path for backwards compatibility and
// clean it up when googlesource does the right thing.
String repoName;
if (uriStr.startsWith(canonicalWebUrl)) {
repoName = uriStr.substring(canonicalWebUrl.length());
} else {
logger.atWarning().log(
"%s: taking path from %s that looks from another host", canonicalWebUrl, uriStr);
URI uri;
try {
uri = new URI(uriStr);
} catch (URISyntaxException e) {
throw new RepositoryNotFoundException("Cannot parse uri: " + uriStr);
}
repoName = uri.getPath();
}
while (repoName.startsWith("/")) {
repoName = repoName.substring(1);
}
return openByName(Project.nameKey(repoName));
}