forked from cefsharp/CefSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCefCustomScheme.cs
111 lines (100 loc) · 4.87 KB
/
CefCustomScheme.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
// Copyright © 2010-2016 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
using System.Collections.Generic;
using System.Linq;
using CefSharp.Internals;
namespace CefSharp
{
public class CefCustomScheme
{
/// <summary>
/// Schema Name e.g. custom
/// </summary>
public string SchemeName { get; set; }
/// <summary>
/// Optional Domain Name. An empty value for a standard scheme
/// will cause the factory to match all domain names. The |domain_name| value
/// will be ignored for non-standard schemes.
/// </summary>
public string DomainName { get; set; }
/// <summary>
/// If true the scheme will be treated as a standard scheme.
/// Standard schemes are subject to URL canonicalization and parsing rules as
/// defined in the Common Internet Scheme Syntax RFC 1738 Section 3.1 available
/// at http://www.ietf.org/rfc/rfc1738.txt
///
/// In particular, the syntax for standard scheme URLs must be of the form:
/// <pre>
/// [scheme]://[username]:[password]@[host]:[port]/[url-path]
/// </pre>
/// Standard scheme URLs must have a host component that is a fully qualified
/// domain name as defined in Section 3.5 of RFC 1034 [13] and Section 2.1 of
/// RFC 1123. These URLs will be canonicalized to "scheme://host/path" in the
/// simplest case and "scheme://username:password@host:port/path" in the most
/// explicit case. For example, "scheme:host/path" and "scheme:///host/path"
/// will both be canonicalized to "scheme://host/path". The origin of a
/// standard scheme URL is the combination of scheme, host and port (i.e.,
/// "scheme://host:port" in the most explicit case).
///
/// For non-standard scheme URLs only the "scheme:" component is parsed and
/// canonicalized. The remainder of the URL will be passed to the handler
/// as-is. For example, "scheme:///some%20text" will remain the same.
/// Non-standard scheme URLs cannot be used as a target for form submission.
/// </summary>
public bool IsStandard { get; set; }
/// <summary>
/// If true the scheme will be treated as local (i.e. with the
/// same security rules as those applied to "file" URLs). Normal pages cannot
/// link to or access local URLs. Also, by default, local URLs can only perform
/// XMLHttpRequest calls to the same URL (origin + path) that originated the
/// request. To allow XMLHttpRequest calls from a local URL to other URLs with
/// the same origin set the CefSettings.file_access_from_file_urls_allowed
/// value to true. To allow XMLHttpRequest calls from a local URL to all
/// origins set the CefSettings.universal_access_from_file_urls_allowed value
/// to true.
/// </summary>
public bool IsLocal { get; set; }
/// <summary>
/// If true the scheme will be treated as display-isolated.
/// This means that pages cannot display these URLs unless they are
/// from the same scheme. For example, pages in another origin cannot create
/// iframes or hyperlinks to URLs with this scheme.
/// </summary>
public bool IsDisplayIsolated { get; set; }
public ISchemeHandlerFactory SchemeHandlerFactory { get; set; }
public CefCustomScheme()
{
IsStandard = true;
IsLocal = false;
IsDisplayIsolated = false;
}
/// <summary>
/// Method used internally
/// </summary>
/// <param name="args">command line arguments</param>
/// <returns>list of scheme objects</returns>
public static List<CefCustomScheme> ParseCommandLineArguments(IEnumerable<string> args)
{
var schemes = args.FirstOrDefault(a => a.StartsWith(CefSharpArguments.CustomSchemeArgument));
var customSchemes = new List<CefCustomScheme>();
if (!string.IsNullOrEmpty(schemes))
{
//Remove the "--custom-scheme=" part of the argument
schemes.Substring(CefSharpArguments.CustomSchemeArgument.Length + 1).Split(';').ToList().ForEach(x =>
{
var tokens = x.Split('|');
var customScheme = new CefCustomScheme
{
SchemeName = tokens[0],
IsStandard = tokens[1] == "T",
IsLocal = tokens[2] == "T",
IsDisplayIsolated = tokens[3] == "T"
};
customSchemes.Add(customScheme);
});
}
return customSchemes;
}
}
}