/usr/share/pyshared/pypump/openid.py is in python-pypump 0.3+git20130823.1.97bffc6-1.
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 | ##
# Copyright (C) 2013 Jessica T. (Tsyesika) <xray7224@googlemail.com>
#
# 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 3 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 program. If not, see <http://www.gnu.org/licenses/>.
##
import json
import requests
from compatability import *
class OpenIDException(Exception):
pass
class Consumer(object):
"""
Container for holding the client registration details
"""
key = None
secret = None
expirey = 0 # never
def __repr__(self):
return "<Consumer %s>" % self.key
def __str__(self):
return self.__repr__()
class OpenID(object):
ENDPOINT = "api/client/register"
pypump = None
server = None
request = None
type = None
logo_url = None
consumer = None
def __init__(self, server, client_name, application_type, logo_url=None):
# we don't want the webfinger just the server
if "@" in server:
self.server = server.split("@", 1)[1]
else:
self.server = server
self.name = client_name
self.type = application_type
self.logo_url = self.logo_url if logo_url is not None else logo_url
def register_client(self):
""" Sends a client registration request """
data = {
"type":"client_associate",
"application_name":self.name,
"application_type":self.type,
}
if self.logo_url:
data["logo_url"] = self.logo_url
data = json.dumps(data)
if self.server is None:
raise OpenIDException("Server must be set")
request = {
"headers": {"Content-Type": "application/json"},
"data": data
}
if self.server == self.pypump.server:
response = self.pypump._requester(requests.post, self.ENDPOINT, **request)
else:
url = "{proto}://{server}/{endpoint}".format(
proto=self.pypump.protocol,
server = self.server,
endpoint = self.ENDPOINT
)
response = self.pypump._requester(requests.post, url, **request)
try:
server_data = response.json()
except ValueError:
raise OpenIDException(response.content)
if "error" in server_data:
raise OpenIDException(server_data["error"])
consumer = Consumer()
consumer.key = server_data["client_id"]
consumer.secret = server_data["client_secret"]
consumer.expirey = server_data["expires_at"]
self.consumer = consumer
return consumer
def __repr__(self):
return "<OpenID %s>" % self.server
def __str__(self):
return self.__repr__()
|