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
|
"""Lists Email Delivery Service """
# :license: MIT, see LICENSE for more details.
import click
from SoftLayer.CLI.command import SLCommand as SLCommand
from SoftLayer.CLI import environment
from SoftLayer.CLI import formatting
from SoftLayer.managers.account import AccountManager
from SoftLayer.managers.email import EmailManager
from SoftLayer import utils
@click.command(cls=SLCommand)
@environment.pass_env
def cli(env):
"""Lists Email Delivery Service """
manager = AccountManager(env.client)
email_manager = EmailManager(env.client)
result = manager.get_network_message_delivery_accounts()
table = formatting.KeyValueTable(['name', 'value'])
table.align['name'] = 'r'
table.align['value'] = 'l'
table_information = formatting.KeyValueTable(['id', 'username', 'hostname', 'description', 'vendor'])
table_information.align['id'] = 'r'
table_information.align['username'] = 'l'
for email in result:
table_information.add_row([email.get('id'), email.get('username'), email.get('emailAddress'),
utils.lookup(email, 'type', 'description'),
utils.lookup(email, 'vendor', 'keyName')])
overview_table = _build_overview_table(email_manager.get_account_overview(email.get('id')))
# Commented this line until we fix EmailManager.GetStatistics() method in golang plugin
# statistics = email_manager.get_statistics(email.get('id'))
table.add_row(['email_information', table_information])
table.add_row(['email_overview', overview_table])
# Commented these lines until we fix EmailManager.GetStatistics() method in golang plugin
# for statistic in statistics:
# table.add_row(['statistics', build_statistics_table(statistic)])
env.fout(table)
def _build_overview_table(email_overview):
table = formatting.Table(
['package', 'reputation'])
table.align['name'] = 'r'
table.align['value'] = 'l'
table.add_row([
utils.lookup(email_overview, 'profile', 'package'),
utils.lookup(email_overview, 'profile', 'reputation')
])
return table
def build_statistics_table(statistics):
"""statistics records of Email Delivery account"""
table = formatting.Table(['delivered', 'requests', 'bounces', 'opens', 'clicks', 'spam_reports'])
table.align['name'] = 'r'
table.align['value'] = 'l'
table.add_row([statistics.get('delivered'), statistics.get('requests'),
statistics.get('bounces'), statistics.get('opens'),
statistics.get('clicks'), statistics.get('spamReports')])
return table
|