amitgandhinz 8182d0e6ef Added Akamai scripts to interact directly with Akamai API
Change-Id: Ic53ef59c1c8154e2a89ed3d2e786f714c755d02e
2015-02-11 11:24:03 -05:00

84 lines
2.2 KiB
Python

# Copyright (c) 2014 Rackspace, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import ConfigParser
import json
import os
import requests
import sys
from akamai.edgegrid import EdgeGridAuth
def main(args):
if len(args) != 3:
print("usage: python get.py [env] [domain]")
print(
"example : python get.py [prod|test] www.mysite.com")
sys.exit(2)
env = args[1]
domain = args[2]
config_parser = ConfigParser.RawConfigParser()
config_path = os.path.expanduser('~/.poppy/akamai.conf')
config_parser.read(config_path)
print("")
print("")
print("updating api with policy definition: ")
akamai_request(env, domain, config_parser)
print("")
print("")
def edge_session(env, config):
s = requests.Session()
s.auth = EdgeGridAuth(
# This is akamai credential
client_token=config.get(env, 'client_token'),
client_secret=config.get(env, 'client_secret'),
access_token=config.get(env, 'access_token'))
return s
def akamai_request(env, domain, config):
base_url = config.get(env, 'base_url')
policy_num = config.get(env, 'policy_number')
policy_url = ('{0}partner-api/v1/network/production/properties/'
'{1}/sub-properties/{2}/policy').format(
base_url,
policy_num,
domain
)
print ("API URL: " + policy_url)
print ("ARLID: " + str(policy_num))
s = edge_session(env, config)
response = s.delete(
policy_url,
headers={'Content-type': 'application/json', 'Accept': 'text/plain'})
print(response.status_code)
resp_dict = json.loads(response.text)
print(json.dumps(resp_dict, indent=4, sort_keys=True))
if __name__ == '__main__':
main(sys.argv)