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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
/*
* Copyright (C) 2011 Red Hat, Inc.
* Copyright (C) 2010 Nokia Corporation.
*
* Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
*
* This file is part of Rygel.
*
* Rygel is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Rygel is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
using Gee;
using Soup;
using GUPnP;
internal errordomain Rygel.ClientHacksError {
NA
}
internal abstract class Rygel.ClientHacks : GLib.Object {
private const string CORRECT_OBJECT_ID = "ObjectID";
private static HashMap<string, string> client_agent_cache;
public unowned string object_id { get;
protected set;
default = CORRECT_OBJECT_ID; }
protected Regex agent_regex;
protected ClientHacks (string agent,
Message? message)
throws ClientHacksError {
try {
this.agent_regex = new Regex (agent,
RegexCompileFlags.CASELESS |
RegexCompileFlags.RAW,
0);
} catch (RegexError error) {
// This means subclasses did not provide a proper regular expression
assert_not_reached ();
}
if (message != null) {
this.check_headers (message);
}
}
public static ClientHacks create (Message? message)
throws ClientHacksError {
try {
return new PanasonicHacks (message);
} catch (Error error) { }
try {
return new XBoxHacks (message);
} catch (Error error) { }
try {
return new WMPHacks (message);
} catch (Error error) { }
try {
return new SamsungTVHacks (message);
} catch (Error error) { }
try {
return new SeekHacks (message);
} catch (Error error) { }
try {
return new LGTVHacks (message);
} catch (Error error) { }
return new XBMCHacks (message);
}
public virtual void translate_container_id (MediaQueryAction action,
ref string container_id) {}
/**
* Modify the passed media object.
*
* Called before serializing the Object to DIDL-Lite.
*/
public virtual void apply (MediaObject object) {}
public virtual void filter_sort_criteria (ref string sort_criteria) {}
public virtual bool force_seek () { return false; }
public virtual void modify_headers (HTTPRequest request) {}
public virtual async MediaObjects? search
(SearchableContainer container,
SearchExpression? expression,
uint offset,
uint max_count,
out uint total_matches,
string sort_criteria,
Cancellable? cancellable)
throws Error {
return yield container.search (expression,
offset,
max_count,
out total_matches,
sort_criteria,
cancellable);
}
private void check_headers (Message message)
throws ClientHacksError {
var headers = message.request_headers;
var agent = headers.get_one ("User-Agent");
if (agent == null && client_agent_cache != null) {
var address = message.get_address ();
agent = client_agent_cache.get (address.get_physical ());
}
if (agent != null) {
var address = message.get_address ();
if (client_agent_cache == null) {
client_agent_cache = new HashMap<string, string>();
}
client_agent_cache.set (address.get_physical (), agent);
}
if (agent == null || !(this.agent_regex.match (agent))) {
throw new ClientHacksError.NA (_("Not Applicable"));
}
}
}
|