forked from SWI-Prolog/packages-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ax.pl
189 lines (164 loc) · 6.74 KB
/
ax.pl
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: [email protected]
WWW: http://www.swi-prolog.org
Copyright (c) 2013, VU University Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
:- module(http_ax,
[ http_ax_attributes/2, % +Spec, -AttributeList
ax_form_attributes/2 % +Form, -Values
]).
:- use_module(library(error)).
/** <module> Attribute Exchange library
This library can be used to create HTTP request parameters and analyse
form-data for _attribute exchange_. Attribute exchange (AX) is used by
OpenID and OAuth to fetch attributes for accounts, such as the real
username or e-mail address.
*/
%! http_ax_attributes(+Spec, -HTTPAttributes) is det.
%
% True when HTTPAttributes is a list of Name=Value pairs that can
% be used with an HTTP request to query for the attributes Spec.
% Spec is a list of elements =|Alias(Value[, Options])|=. Options
% include:
%
% - required
% The attribute is required. This is mutually exclusive
% with =if_available=.
% - if_available
% Only provide the attribute if it is available. This is
% mutually exclusive with =required=. This is the default.
% - url(+URL)
% Can be used to ovcerrule or extend the ax_alias/2.
% - count(+Count)
% Maximum number of values to provide
%
% For example:
%
% ==
% ?- http_ax_attributes([ nickname(Nick),
% email(Email, [required])
% ], Params).
% Params = [ 'openid.ax.mode' = fetch_request,
% 'openid.ax.type.nickname' = 'http://axschema.org/namePerson/friendly',
% 'openid.ax.type.email' = 'http://axschema.org/contact/email',
% 'openid.ax.required' = email,
% 'openid.ax.if_available' = nickname
% ].
% ==
http_ax_attributes(Spec, [ 'openid.ns.ax' = 'http://openid.net/srv/ax/1.0',
'openid.ax.mode' = fetch_request
| AllAttr
]) :-
maplist(type_alias, Spec, AliasAttrs),
partition(required, Spec, Required, Optional),
alias_list(Required, 'openid.ax.required', RequiredAttr),
alias_list(Optional, 'openid.ax.if_available', IfAvailableAttr),
count_attr(Spec, CountAttr),
append([AliasAttrs, RequiredAttr, IfAvailableAttr, CountAttr], AllAttr).
type_alias(Spec, Attr=URL) :-
functor(Spec, Alias, Arity),
( Arity > 1,
arg(2, Spec, Options),
memberchk(url(URL), Options)
-> true
; ax_alias(Alias, URL)
-> true
; existence_error(ax_alias, Alias)
),
atom_concat('openid.ax.type.', Alias, Attr).
required(Spec) :-
functor(Spec, _, 2),
arg(2, Spec, Options),
memberchk(required, Options).
alias_list([], _, []).
alias_list(Specs, A, [A=V]) :-
maplist(alias_name, Specs, Aliases),
atomic_list_concat(Aliases, ',', V).
alias_name(Spec, Alias) :-
functor(Spec, Alias, _).
count_attr([], []).
count_attr([Spec|T0], [A=Count|T]) :-
functor(Spec, Alias, 2),
arg(2, Spec, Options),
memberchk(count(Count), Options),
!,
atomic_list_concat('openid.ax.count.', Alias, A),
count_attr(T0, T).
count_attr([_|T0], T) :-
count_attr(T0, T).
%! ax_alias(?Alias, ?URL) is nondet.
%
% True when Alias is an alias name for the AX schema URL. This
% predicate is defined as _multifile_.
%
% Note that Google federated login only supports =email=,
% =country=, =language=, =firstname= and =lastname=.
:- multifile
ax_alias/2.
ax_alias(nickname, 'http://axschema.org/namePerson/friendly').
ax_alias(email, 'http://axschema.org/contact/email').
ax_alias(fullname, 'http://axschema.org/namePerson').
ax_alias(dob, 'http://axschema.org/birthDate').
ax_alias(gender, 'http://axschema.org/person/gender').
ax_alias(postcode, 'http://axschema.org/contact/postalCode/home').
ax_alias(country, 'http://axschema.org/contact/country/home').
ax_alias(language, 'http://axschema.org/pref/language').
ax_alias(timezone, 'http://axschema.org/pref/timezone').
ax_alias(prefix, 'http://axschema.org/namePerson/prefix').
ax_alias(firstname, 'http://axschema.org/namePerson/first').
ax_alias(lastname, 'http://axschema.org/namePerson/last').
ax_alias(suffix, 'http://axschema.org/namePerson/suffix').
/*******************************
* RESPONSE *
*******************************/
%! ax_form_attributes(+Form, -Values) is det.
%
% True if Values is a list Alias(Value) for each exchanged
% attribute.
%
% Note that we assume we get the same alias names as we used for
% requesting the data. Not sure whether this is true.
%
% @arg Form is an HTTP form as returned using the form(Form)
% option of http_parameters/3.
ax_form_attributes(Form, Values) :-
( memberchk('openid.ax.mode'=fetch_response, Form)
-> Ext = ax
; memberchk(ExtNS='http://openid.net/srv/ax/1.0', Form),
atomic_list_concat([openid,ns,Ext], '.', ExtNS)
-> true
),
ax_attributes(Form, Ext, Values).
ax_form_attributes(_, []).
ax_attributes([], _, []).
ax_attributes([Name=Value|T0], Ext, AXs) :-
atomic_list_concat([openid, Ext, value, Alias|_Num], '.', Name),
!,
AX =.. [Alias,Value],
AXs = [AX|AXT],
ax_attributes(T0, Ext, AXT).
ax_attributes([_|T0], Ext, AXs) :-
ax_attributes(T0, Ext, AXs).