def getByUrl(self, url): """See `IBranchLookup`.""" if url is None: return None url = url.rstrip('/') try: uri = URI(url) except InvalidURIError: return None path = self.uriToHostingPath(uri) if path is not None: branch, trailing = self.getByHostingPath(path) if branch is not None: return branch if uri.scheme == 'lp': if not self._uriHostAllowed(uri): return None try: return self.getByLPPath(uri.path.lstrip('/'))[0] except ( CannotHaveLinkedBranch, InvalidNamespace, InvalidProductName, NoSuchBranch, NoSuchPerson, NoSuchProduct, NoSuchProductSeries, NoSuchDistroSeries, NoSuchSourcePackageName, NoLinkedBranch): return None return Branch.selectOneBy(url=url)
def getByUrl(self, url): """See `IBranchLookup`.""" if url is None: return None url = url.rstrip('/') try: uri = URI(url) except InvalidURIError: return None path = self.uriToHostingPath(uri) if path is not None: branch, trailing = self.getByHostingPath(path) if branch is not None: return branch if uri.scheme == 'lp': if not self._uriHostAllowed(uri): return None try: return self.getByLPPath(uri.path.lstrip('/'))[0] except (CannotHaveLinkedBranch, InvalidNamespace, InvalidProductName, NoSuchBranch, NoSuchPerson, NoSuchProduct, NoSuchProductSeries, NoSuchDistroSeries, NoSuchSourcePackageName, NoLinkedBranch): return None return Branch.selectOneBy(url=url)
def getByUrl(self, url): """See `IBranchLookup`.""" if url is None: return None url = url.rstrip('/') try: uri = URI(url) except InvalidURIError: return None path = self.uriToHostingPath(uri) if path is not None: branch, trailing = self.getByHostingPath(path) if branch is not None: return branch if uri.scheme == 'lp': if not self._uriHostAllowed(uri): return None return self.getByPath(uri.path.lstrip('/')) return Branch.selectOneBy(url=url)