This file is indexed.

/usr/lib/swi-prolog/library/http/ax.pl is in swi-prolog-nox 6.6.6-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*  Part of SWI-Prolog

    Author:        Jan Wielemaker
    E-mail:        J.Wielemaker@cs.vu.nl
    WWW:           http://www.swi-prolog.org
    Copyright (C): 2013, VU University Amsterdam

    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation; either version 2
    of the License, or (at your option) any later version.

    This program 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 General Public License for more details.

    You should have received a copy of the GNU General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

    As a special exception, if you link this library with other files,
    compiled with a Free Software compiler, to produce an executable, this
    library does not by itself cause the resulting executable to be covered
    by the GNU General Public License. This exception does not however
    invalidate any other reasons why the executable file might be covered by
    the GNU General Public License.
*/

:- 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).