本文整理汇总了PHP中PagSeguroLibrary类的典型用法代码示例。如果您正苦于以下问题:PHP PagSeguroLibrary类的具体用法?PHP PagSeguroLibrary怎么用?PHP PagSeguroLibrary使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了PagSeguroLibrary类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: init
public static function init()
{
if (self::$library == null) {
self::$library = new PagSeguroLibrary();
}
return self::$library;
}
示例2: addClass
private function addClass($dir, $class)
{
$file = PagSeguroLibrary::getPath() . DIRECTORY_SEPARATOR . $dir . DIRECTORY_SEPARATOR . $class . '.class.php';
if (file_exists($file) && is_file($file)) {
require_once $file;
}
}
示例3: install
public function install()
{
if (version_compare(PagSeguroLibrary::getVersion(), '2.1.8', '<=')) {
if (!$this->validatePagSeguroRequirements()) {
return false;
}
}
if (!$this->validatePagSeguroId()) {
return false;
}
if (!$this->validateOrderMessage()) {
return false;
}
if (!$this->generatePagSeguroOrderStatus()) {
return false;
}
if (!$this->createTables()) {
return false;
}
if (!$this->modulo->installConfiguration()) {
return false;
}
if (!parent::install() or !$this->registerHook('payment') or !$this->registerHook('paymentReturn') or !Configuration::updateValue('PAGSEGURO_EMAIL', '') or !Configuration::updateValue('PAGSEGURO_TOKEN', '') or !Configuration::updateValue('PAGSEGURO_URL_REDIRECT', '') or !Configuration::updateValue('PAGSEGURO_NOTIFICATION_URL', '') or !Configuration::updateValue('PAGSEGURO_CHARSET', PagSeguroConfig::getData('application', 'charset')) or !Configuration::updateValue('PAGSEGURO_LOG_ACTIVE', PagSeguroConfig::getData('log', 'active')) or !Configuration::updateValue('PAGSEGURO_RECOVERY_ACTIVE', false) or !Configuration::updateValue('PAGSEGURO_DAYS_RECOVERY', 1) or !Configuration::updateValue('PAGSEGURO_CHECKOUT', false) or !Configuration::updateValue('PAGSEGURO_LOG_FILELOCATION', PagSeguroConfig::getData('log', 'fileLocation'))) {
return false;
}
return true;
}
示例4: curlConnection
private function curlConnection($method, $url, $timeout, $charset, array $data = null)
{
if (Tools::strtoupper($method) === 'POST') {
$postFields = $data ? http_build_query($data, '', '&') : "";
$contentLength = "Content-length: " . Tools::strlen($postFields);
$methodOptions = array(CURLOPT_POST => true, CURLOPT_POSTFIELDS => $postFields);
} else {
$contentLength = null;
$methodOptions = array(CURLOPT_HTTPGET => true);
}
$options = array(CURLOPT_HTTPHEADER => array("Content-Type: application/x-www-form-urlencoded; charset=" . $charset, $contentLength, 'lib-description: php:' . PagSeguroLibrary::getVersion(), 'language-engine-description: php:' . PagSeguroLibrary::getPHPVersion()), CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => true, CURLOPT_HEADER => false, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_CONNECTTIMEOUT => $timeout);
if (!is_null(PagSeguroLibrary::getModuleVersion())) {
array_push($options[CURLOPT_HTTPHEADER], 'module-description: ' . PagSeguroLibrary::getModuleVersion());
}
if (!is_null(PagSeguroLibrary::getCMSVersion())) {
array_push($options[CURLOPT_HTTPHEADER], 'cms-description: ' . PagSeguroLibrary::getCMSVersion());
}
$options = $options + $methodOptions;
$curl = curl_init();
curl_setopt_array($curl, $options);
$resp = curl_exec($curl);
$info = curl_getinfo($curl);
$error = curl_errno($curl);
$errorMessage = curl_error($curl);
curl_close($curl);
$this->setStatus((int) $info['http_code']);
$this->setResponse((string) $resp);
if ($error) {
throw new Exception("CURL can't connect: {$errorMessage}");
} else {
return true;
}
}
示例5: init
public static function init()
{
self::verifyDependencies();
if (self::$library == null) {
self::$library = new PagSeguroLibrary();
}
return self::$library;
}
示例6: __construct
public function __construct()
{
$this->ci =& get_instance();
$this->ci->load->config('pagseguro');
PagSeguroLibrary::init();
self::$pgEmail = $this->ci->config->item('pagseguroAccount');
self::$pgToken = $this->ci->config->item('pagseguroToken');
}
示例7: __construct
public function __construct()
{
$this->ci =& get_instance();
$this->ci->load->config('pagseguro');
PagSeguroLibrary::init();
self::$config = $this->ci->config->item('pagseguro');
self::$environment = self::$config['environment'];
self::$email = self::$config[self::$environment]['pagseguroAccount'];
self::$token = self::$config[self::$environment]['pagseguroToken'];
}
示例8: __construct
private function __construct()
{
define('ALLOW_PAGSEGURO_CONFIG', true);
require_once PagSeguroLibrary::getPath() . DIRECTORY_SEPARATOR . "config" . DIRECTORY_SEPARATOR . "PagSeguroConfig.php";
$varName = self::VARNAME;
if (isset(${$varName})) {
self::$data = ${$varName};
unset(${$varName});
} else {
throw new Exception("Config is undefined.");
}
}
示例9: __construct
private function __construct()
{
define('ALLOW_PAGSEGURO_RESOURCES', true);
require_once PagSeguroLibrary::getPath() . DIRECTORY_SEPARATOR . "resources" . DIRECTORY_SEPARATOR . "PagSeguroResources.php";
$varName = self::VAR_NAME;
if (isset(${$varName})) {
self::$data = ${$varName};
unset(${$varName});
} else {
throw new Exception("Resources is undefined.");
}
}
示例10: __autoload
function __autoload($class)
{
$dirs = array('domain', 'exception', 'parser', 'service', 'utils', 'helper', 'config', 'resources', 'log');
foreach ($dirs as $d) {
$file = PagSeguroLibrary::getPath() . DIRECTORY_SEPARATOR . $d . DIRECTORY_SEPARATOR . $class . '.class.php';
if (file_exists($file) && is_file($file)) {
require_once $file;
return true;
}
}
return false;
}
示例11: __construct
private function __construct()
{
define('ALLOW_PAGSEGURO_CONFIG', true);
if (!class_exists('PagSeguroConfigWrapper')) {
require_once PagSeguroLibrary::getPath() . DIRECTORY_SEPARATOR . "config" . DIRECTORY_SEPARATOR . "PagSeguroConfigWrapper.php";
}
$wrapper = new PagSeguroConfigWrapper();
if (method_exists($wrapper, 'getConfig')) {
self::$data = $wrapper->getConfig();
} else {
throw new Exception("Config is undefined.");
}
}
示例12: createFile
/**
* Creates the log file
* @throws Exception
* @return boolean
*/
public static function createFile()
{
if (!self::$active) {
return false;
}
$defaultPath = PagSeguroLibrary::getPath();
$defaultName = 'PagSeguro.log';
self::$fileLocation = $defaultPath . DIRECTORY_SEPARATOR . $defaultName;
if ($f = @fopen(self::$fileLocation, "a")) {
fclose($f);
} else {
throw new Exception("Can't create log file. Permission denied. File location: " . self::$fileLocation);
}
}
示例13: createFile
/**
* Creates the log file
* @throws Exception
* @return boolean
*/
public static function createFile()
{
if (!self::$active) {
return false;
}
$defaultPath = PagSeguroLibrary::getPath();
$defaultName = 'PagSeguro.log';
self::$fileLocation = $defaultPath . DIRECTORY_SEPARATOR . $defaultName;
try {
$f = fopen(self::$fileLocation, "a");
fclose($f);
} catch (Exception $e) {
echo $e->getMessage() . " - Can't create log file. Permission denied. File location: " . self::$fileLocation;
}
}
示例14: pay
public function pay($id)
{
\PagSeguroLibrary::init();
\PagSeguroConfig::setEnvironment('production');
$this->plan = Plans::find($id);
$this->client = User::find(Auth::user()->id);
$this->payment = Payments::create(['plan_name' => $this->plan->name, 'plan_value' => $this->plan->value, 'plan_id' => $this->plan->id, 'user_id' => $this->client->id, 'confirmed' => 0]);
// Instantiate a new payment request
$paymentRequest = new \PagSeguroPaymentRequest();
// Set the currency
$paymentRequest->setCurrency("BRL");
/* // Add an item for this payment request
$paymentRequest->addItem('0001', 'Sempre da Negócio - Plano '.$this->plan->name, 1, $this->plan->value);*/
$paymentRequest->addItem($this->plan->id, 'Sempre da Negócio - Plano ' . $this->plan->name, 1, $this->plan->value);
// Set a reference code for this payment request. It is useful to identify this payment
// in future notifications.
$paymentRequest->setReference($this->payment->id);
//Create object PagSeguroShipping
$shipping = new \PagSeguroShipping();
//Set Type Shipping
$type = new \PagSeguroShippingType(3);
$shipping->setType($type);
//Set address of client
$data = array('postalCode' => $this->client->zipcode, 'street' => $this->client->address, 'number' => $this->client->number, 'city' => $this->client->city, 'state' => $this->client->state);
$address = new \PagSeguroAddress($data);
$shipping->setAddress($address);
//Add Shipping to Payment Request
$paymentRequest->setShipping($shipping);
// Set your customer information.
$phone = str_replace(['(', ')', ' ', '-'], ['', '', '', ''], $this->client->phone);
$paymentRequest->setSender($this->client->name, $this->client->email_responsible, substr($phone, 0, 2), substr($phone, 2));
try {
/*
* #### Credentials #####
* Replace the parameters below with your credentials (e-mail and token)
* You can also get your credentials from a config file. See an example:
* $credentials = PagSeguroConfig::getAccountCredentials();
// */
$credentials = new \PagSeguroAccountCredentials($this->email, $this->token);
// Register this payment request in PagSeguro to obtain the payment URL to redirect your customer.
$onlyCheckoutCode = true;
$code = $paymentRequest->register($credentials, $onlyCheckoutCode);
return view('site.pages.confirma_pagamento', compact('code'));
} catch (\PagSeguroServiceException $e) {
die($e->getMessage());
}
}
示例15: createFile
public static function createFile($logFile = false)
{
if (!self::$active) {
return false;
}
$defaultPath = PagSeguroLibrary::getPath();
$defaultName = 'PagSeguro.log';
self::$fileLocation = $logFile ? $logFile : $defaultPath . DIRECTORY_SEPARATOR . $defaultName;
try {
$f = fopen(self::$fileLocation, "a");
if (!$f) {
throw new Exception('Unable to open the input file');
}
fclose($f);
return true;
} catch (Exception $e) {
echo $e->getMessage() . " - Can't create log file. Permission denied. File location: " . self::$fileLocation;
return false;
}
}