mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 05:24:06 -08:00
7616c4d06d
git-svn-id: https://zxing.googlecode.com/svn/trunk@2558 59b500cc-1b3d-0410-9834-0bbf25fbcc57
127 lines
3.2 KiB
C#
Executable file
127 lines
3.2 KiB
C#
Executable file
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
|
|
/*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
namespace com.google.zxing.client.result
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// @author Sean Owen
|
|
/// </summary>
|
|
public sealed class URIParsedResult : ParsedResult
|
|
{
|
|
|
|
private static readonly string USER_IN_HOST = ":/*([^/@]+)@[^/]+";
|
|
|
|
private readonly string uri;
|
|
private readonly string title;
|
|
|
|
public URIParsedResult(string uri, string title) : base(ParsedResultType.URI)
|
|
{
|
|
this.uri = massageURI(uri);
|
|
this.title = title;
|
|
}
|
|
|
|
public string URI
|
|
{
|
|
get
|
|
{
|
|
return uri;
|
|
}
|
|
}
|
|
|
|
public string Title
|
|
{
|
|
get
|
|
{
|
|
return title;
|
|
}
|
|
}
|
|
|
|
/// <returns> true if the URI contains suspicious patterns that may suggest it intends to
|
|
/// mislead the user about its true nature. At the moment this looks for the presence
|
|
/// of user/password syntax in the host/authority portion of a URI which may be used
|
|
/// in attempts to make the URI's host appear to be other than it is. Example:
|
|
/// http://yourbank.com@phisher.com This URI connects to phisher.com but may appear
|
|
/// to connect to yourbank.com at first glance. </returns>
|
|
public bool PossiblyMaliciousURI
|
|
{
|
|
get
|
|
{
|
|
//return USER_IN_HOST.matcher(uri).find();
|
|
return new Regex(USER_IN_HOST).IsMatch(uri);
|
|
}
|
|
}
|
|
|
|
public override string DisplayResult
|
|
{
|
|
get
|
|
{
|
|
StringBuilder result = new StringBuilder(30);
|
|
maybeAppend(title, result);
|
|
maybeAppend(uri, result);
|
|
return result.ToString();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Transforms a string that represents a URI into something more proper, by adding or canonicalizing
|
|
/// the protocol.
|
|
/// </summary>
|
|
private static string massageURI(string uri)
|
|
{
|
|
uri = uri.Trim();
|
|
int protocolEnd = uri.IndexOf(':');
|
|
if (protocolEnd < 0)
|
|
{
|
|
// No protocol, assume http
|
|
uri = "http://" + uri;
|
|
}
|
|
else if (isColonFollowedByPortNumber(uri, protocolEnd))
|
|
{
|
|
// Found a colon, but it looks like it is after the host, so the protocol is still missing
|
|
uri = "http://" + uri;
|
|
}
|
|
return uri;
|
|
}
|
|
|
|
private static bool isColonFollowedByPortNumber(string uri, int protocolEnd)
|
|
{
|
|
int nextSlash = uri.IndexOf('/', protocolEnd + 1);
|
|
if (nextSlash < 0)
|
|
{
|
|
nextSlash = uri.Length;
|
|
}
|
|
if (nextSlash <= protocolEnd + 1)
|
|
{
|
|
return false;
|
|
}
|
|
for (int x = protocolEnd + 1; x < nextSlash; x++)
|
|
{
|
|
if (uri[x] < '0' || uri[x] > '9')
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
}
|
|
} |