mirror of
https://github.com/certbot/certbot.git
synced 2026-01-24 19:22:07 +03:00
32 lines
957 B
Python
32 lines
957 B
Python
from letsencrypt.client.challenge import Challenge
|
|
import textwrap
|
|
|
|
###########################################################
|
|
# Interactive challenge displays the string sent by the CA
|
|
# formatted to fit on the screen of the client
|
|
# The Challenge also adds proper instructions for how the
|
|
# client should continue the letsencrypt process
|
|
###########################################################
|
|
|
|
class Interactive_Challenge(Challenge):
|
|
BOX_SIZE = 70
|
|
|
|
def __init__(self, string):
|
|
self.string = string
|
|
|
|
def perform(self, quiet=True):
|
|
if quiet:
|
|
dialog.Dialog().msgbox(get_display_string(), width=BOX_SIZE)
|
|
else:
|
|
print get_display_string()
|
|
raw_input('')
|
|
|
|
return True
|
|
|
|
|
|
def get_display_string(self):
|
|
return textwrap.fill(self.string, width=BOX_SIZE) + "\n\nPlease Press Enter to Continue"
|
|
|
|
def formatted_reasons(self):
|
|
return "\n\t* %s\n", self.reason
|