Python module for accessing the FreeIPA/Red Hat Identity Manager API (a.k.a IPA)
This module does not do any exception handling, it wants your code to handle exceptions.
The following sample sets up a IPA API object with minimal configuration.
from pyfreeipa.Api import Api
ipaapi = Api(
host="ipa.example.org",
username="ipauser",
password="somethingsecret"
)
response = ipaapi.ping()
if response.ok:
result = response.json()['result']
print('Good: %s' & result['summary'])
else:
print('Bad: %s' % response.status_code)Included is a configuration method that can read all the required configuration options from a yaml file.
The pyfreeipa module itself can be executed as a wrapper script around pyfreeipa.Api
There are also some test scripts that demonstrate it's capabilites in the test directory, they have their own documentation.
The Api object supports both implemented and unimplemented methods
Unimplemented methods are supported via the Api.request() method:
from pyfreeipa.Api import Api
ipaapi = Api(
host="ipa.example.org",
username="ipauser",
password="somethingsecret"
)
ipaapi.request(
method='group_add_member',
args=['groupname'],
parameters={
'users': [
'anne',
'bob',
'claire'
]
}
)The API methods implemented is incomplete as we're only adding them as we need them, each of these methdos includes some sanity checking, doing case insensitivity checks where necessary, and cleaning up the output so it's predictably formatted.
user_showuser_finduserusersuserlistuser_getattruser_moduser_addgroup_findgroupgroupsgrouplistgroup_add_memberotptoken_findotptoken_showotptokenotptokensotptoken_remove_managedbyotptoken_add_managedbyotptoken_add
The Api object has a some methods that do not directly relate to requests to the IPA API
The IPA API login process that isn't standard HTTPS authentication, this method initiates the login and should be sufficient to maintain login througout a session.
A passthrough function that sends a GET request to the IPA API session. Returns a requests.response object.
A passthrough function that sends a POST request to the IPA API session. Returns a requests.response object.
A passthrough function that sends a PUT request to the IPA API session. Returns a requests.response object.
This function checks and verifies it's argments and converts regular string, dictionary, and list objects and converts them into the required data types to submit as a request, executes the request and returns a requests.Response object.
methodA the IPA API method to be calledargsA list of arguments for the methodparamsA dictionary of parameters for the method
This function checks and verifies it's argments and converts regular string, dictionary, and list objects and converts them into the required data types to submit as a request, executes the request and returns a requests.PreparedRequest object.
The use of preprequest() and send() methods allow a POST request to be prepared, then it can be examined or checked, and then if it's valid the send() method can execute it. Another use case is a 'dry run' scenario where the request can be prepared, but not executed.
methodA the IPA API method to be calledargsA list of arguments for the methodparamsA dictionary of parameters for the method
This function sends a prepared request from the preprequest() function and sends it to be executed and returns a requests.Response object.
preprequestArequests.PreparedRequestobject, as per what's produced bypreprequest()
Emits a list of warnings that have occured.
Clears the warnings list.