本文整理汇总了Python中thumbor.context.ServerParameters.security_key方法的典型用法代码示例。如果您正苦于以下问题:Python ServerParameters.security_key方法的具体用法?Python ServerParameters.security_key怎么用?Python ServerParameters.security_key使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类thumbor.context.ServerParameters
的用法示例。
在下文中一共展示了ServerParameters.security_key方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_app
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_app(self):
cfg = Config.load(fixture_for('encrypted_handler_conf.py'))
server_params = ServerParameters(None, None, None, None, None, None)
server_params.security_key = 'HandlerVows'
importer = Importer(cfg)
importer.import_modules()
ctx = Context(server_params, cfg, importer)
application = ThumborServiceApp(ctx)
return application
示例2: get_context
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_context(self):
cfg = Config(SECURITY_KEY='ACME-SEC')
cfg.LOADER = "thumbor.loaders.file_loader"
cfg.FILE_LOADER_ROOT_PATH = self.loader_path
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8889, 'localhost', 'thumbor.conf', None, 'info', None)
server.security_key = 'ACME-SEC'
return Context(server, cfg, importer)
示例3: get_context
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_context(self):
cfg = Config(SECURITY_KEY="ACME-SEC")
cfg.LOADER = "thumbor.loaders.file_loader"
cfg.FILE_LOADER_ROOT_PATH = self.loader_path
cfg.ENABLE_ETAGS = False
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8889, "localhost", "thumbor.conf", None, "info", None)
server.security_key = "ACME-SEC"
return Context(server, cfg, importer)
示例4: get_app
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_app(self):
cfg = Config(SECURITY_KEY='ACME-SEC')
cfg.LOADER = "thumbor.loaders.file_loader"
cfg.FILE_LOADER_ROOT_PATH = storage_path
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8889, 'localhost', 'thumbor.conf', None, 'info', None)
server.security_key = 'ACME-SEC'
ctx = Context(server, cfg, importer)
application = ThumborServiceApp(ctx)
return application
示例5: topic
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def topic(self):
cfg = Config(SECURITY_KEY='ACME-SEC', SENTRY_DSN_URL="http://sentry-dsn-url")
server = ServerParameters(8889, 'localhost', 'thumbor.conf', None, 'info', None)
server.security_key = 'ACME-SEC'
ctx = Context(server, cfg, None)
client_mock = FakeSentry("FAKE DSN")
handler = ErrorHandler(cfg, client=client_mock)
http_handler = FakeHandler()
handler.handle_error(ctx, http_handler, RuntimeError("Test"))
return client_mock
示例6: get_app
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_app(self):
cfg = Config(SECURITY_KEY="ACME-SEC")
cfg.LOADER = "thumbor.loaders.file_loader"
cfg.FILE_LOADER_ROOT_PATH = storage_path
cfg.ALLOW_UNSAFE_URL = False
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8890, "localhost", "thumbor.conf", None, "info", None)
server.security_key = "ACME-SEC"
ctx = Context(server, cfg, importer)
application = ThumborServiceApp(ctx)
return application
示例7: test_can_set_security_key
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def test_can_set_security_key(self):
params = ServerParameters(
port=8888,
ip='0.0.0.0',
config_path='/tmp/config_path.conf',
keyfile='./tests/fixtures/thumbor.key',
log_level='debug',
app_class='app',
fd='fd',
gifsicle_path='gifsicle_path',
)
params.security_key = u'testé'
expect(params._security_key).to_equal(u'testé'.encode('utf-8'))
示例8: get_context
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_context(self):
cfg = Config(SECURITY_KEY="ACME-SEC")
cfg.LOADER = "thumbor.loaders.file_loader"
cfg.FILE_LOADER_ROOT_PATH = self.loader_path
cfg.JPEGTRAN_PATH = which("jpegtran")
cfg.PROGRESSIVE_JPEG = True
cfg.OPTIMIZERS = ["thumbor.optimizers.jpegtran"]
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8889, "localhost", "thumbor.conf", None, "info", None)
server.security_key = "ACME-SEC"
ctx = Context(server, cfg, importer)
return ctx
示例9: get_context
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_context(self):
cfg = Config(SECURITY_KEY='ACME-SEC')
cfg.LOADER = "thumbor.loaders.file_loader"
cfg.FILE_LOADER_ROOT_PATH = self.loader_path
cfg.AUTO_WEBP = True
cfg.USE_GIFSICLE_ENGINE = True
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8889, 'localhost', 'thumbor.conf', None, 'info', None)
server.security_key = 'ACME-SEC'
ctx = Context(server, cfg, importer)
ctx.server.gifsicle_path = which('gifsicle')
return ctx
示例10: topic
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def topic(self):
#use temporary file to store logs
tmp = tempfile.NamedTemporaryFile(prefix='thumborTest.')
cfg = Config(SECURITY_KEY='ACME-SEC', ERROR_FILE_LOGGER=tmp.name)
server = ServerParameters(8889, 'localhost', 'thumbor.conf', None, 'info', None)
server.security_key = 'ACME-SEC'
ctx = Context(server, cfg, None)
handler = ErrorHandler(cfg)
http_handler = FakeHandler()
handler.handle_error(ctx, http_handler, RuntimeError("Test"))
#return content of file
return tmp.read()
示例11: get_app
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_app(self):
cfg = Config(
SECURITY_KEY='ACME-SEC',
LOADER='thumbor.loaders.file_loader',
RESULT_STORAGE='thumbor.result_storages.file_storage',
RESULT_STORAGE_STORES_UNSAFE=True,
RESULT_STORAGE_EXPIRATION_SECONDS=2592000,
FILE_LOADER_ROOT_PATH=storage_path
)
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8889, 'localhost', 'thumbor.conf', None, 'info', None)
server.security_key = 'ACME-SEC'
ctx = Context(server, cfg, importer)
application = ThumborServiceApp(ctx)
return application
示例12: get_app
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_app(self):
cfg = Config(SECURITY_KEY='ACME-SEC')
cfg.LOADER = "thumbor.loaders.file_loader"
cfg.FILE_LOADER_ROOT_PATH = storage_path
cfg.ALLOW_UNSAFE_URL = False
cfg.ALLOW_OLD_URLS = True
cfg.STORAGE="thumbor.storages.file_storage"
cfg.FILE_STORAGE_ROOT_PATH=storage_path
cfg.STORES_CRYPTO_KEY_FOR_EACH_IMAGE=True
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8891, 'localhost', 'thumbor.conf', None, 'info', None)
server.security_key = 'ACME-SEC'
ctx = Context(server, cfg, importer)
application = ThumborServiceApp(ctx)
return application
示例13: get_app
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_app(self):
cfg = Config(SECURITY_KEY='ACME-SEC')
cfg.LOADER = 'thumbor.loaders.file_loader'
cfg.FILE_LOADER_ROOT_PATH = storage_path
cfg.OPTIMIZERS = [
'thumbor_plugins.optimizers.jp2',
]
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8889, 'localhost', 'thumbor.conf', None, 'info', None)
server.security_key = 'ACME-SEC'
ctx = Context(server, cfg, importer)
application = ThumborServiceApp(ctx)
self.engine = PILEngine(ctx)
return application
示例14: get_context
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_context(self):
cfg = Config(SECURITY_KEY='ACME-SEC')
cfg.LOADER = "tests.stub_file_loader"
cfg.STORAGE = "thumbor.storages.file_storage"
cfg.FILE_STORAGE_ROOT_PATH = self.root_path
cfg.QUALITY = 'keep'
cfg.SVG_DPI = 200
self.image = 'http://test.domain/image.jpg'
self.quoted_image = quote(self.image, safe='')
self.transform = '400x400/smart'
self.signature = UrlSigner(security_key="ACME-SEC").signature('%s/%s' % (self.transform, self.quoted_image))
self.signed_prefix = "/%s/%s" % (self.signature, self.transform)
self.full_image = "/%s/%s/%s" % (self.signature, self.transform, self.quoted_image)
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8889, 'localhost', 'thumbor.conf', None, 'info', 'thumbor_flexible_validation.app.ThumborServiceProxy')
server.security_key = 'ACME-SEC'
return Context(server, cfg, importer)
示例15: get_app
# 需要导入模块: from thumbor.context import ServerParameters [as 别名]
# 或者: from thumbor.context.ServerParameters import security_key [as 别名]
def get_app(self):
cfg = Config(
SECURITY_KEY='ACME-SEC',
LOADER='thumbor.loaders.file_loader',
RESULT_STORAGE_STORES_UNSAFE=False,
RESULT_STORAGE_EXPIRATION_SECONDS=2592000,
FILE_LOADER_ROOT_PATH=storage_path,
OPTIMIZERS=[],
USE_GIFSICLE_ENGINE=True,
)
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8889, 'localhost', 'thumbor.conf', None, 'info', None)
server.security_key = 'ACME-SEC'
server.gifsicle_path = which('gifsicle')
ctx = Context(server, cfg, importer)
application = ThumborServiceApp(ctx)
return application