This commit is contained in:
buddy 2022-07-19 09:45:45 +00:00
parent 3d8cca58dd
commit 52fae1a695
8 changed files with 99 additions and 92 deletions

View File

@ -17,7 +17,8 @@ exports.FetchStream = FetchStream;
exports.CookieJar = CookieJar; exports.CookieJar = CookieJar;
exports.fetchUrl = fetchUrl; exports.fetchUrl = fetchUrl;
function FetchStream(url, options) { function FetchStream(url, options)
{
Stream.call(this); Stream.call(this);
options = options || {}; options = options || {};
@ -185,17 +186,17 @@ FetchStream.prototype.parseUrl = function (url) {
} }
if (transport === https) { if (transport === https) {
if('agentHttps' in this.options){ if ('agentHttps' in this.options) {
urloptions.agent = this.options.agentHttps; urloptions.agent = this.options.agentHttps;
} }
if('agent' in this.options){ if ('agent' in this.options) {
urloptions.agent = this.options.agent; urloptions.agent = this.options.agent;
} }
} else { } else {
if('agentHttp' in this.options){ if ('agentHttp' in this.options) {
urloptions.agent = this.options.agentHttp; urloptions.agent = this.options.agentHttp;
} }
if('agent' in this.options){ if ('agent' in this.options) {
urloptions.agent = this.options.agent; urloptions.agent = this.options.agent;
} }
} }
@ -382,7 +383,8 @@ FetchStream.prototype._runStream = function (url_data, url) {
} }
}; };
function fetchUrl(url, options, callback) { function fetchUrl(url, options, callback)
{
if (!callback && typeof options === 'function') { if (!callback && typeof options === 'function') {
callback = options; callback = options;
options = undefined; options = undefined;
@ -453,7 +455,8 @@ function fetchUrl(url, options, callback) {
}); });
} }
function _parseContentType(str) { function _parseContentType(str)
{
if (!str) { if (!str) {
return {}; return {};
} }
@ -476,7 +479,8 @@ function _parseContentType(str) {
}; };
} }
function _findHTMLCharset(htmlbuffer) { function _findHTMLCharset(htmlbuffer)
{
var body = htmlbuffer.toString('ascii'), var body = htmlbuffer.toString('ascii'),
input, meta, charset; input, meta, charset;

View File

@ -1,22 +1,26 @@
var initParameters = {}; var initParameters = {};
var entrypoint = null; var entrypoint = null;
function onEditQuery(newQuery) { function onEditQuery(newQuery)
{
initParameters.query = newQuery; initParameters.query = newQuery;
updateURL(); updateURL();
} }
function onEditVariables(newVariables) { function onEditVariables(newVariables)
{
initParameters.variables = newVariables; initParameters.variables = newVariables;
updateURL(); updateURL();
} }
function onEditOperationName(newOperationName) { function onEditOperationName(newOperationName)
{
initParameters.operationName = newOperationName; initParameters.operationName = newOperationName;
updateURL(); updateURL();
} }
function updateURL() { function updateURL()
{
var newSearch = '?' + Object.keys(initParameters).filter(function (key) { var newSearch = '?' + Object.keys(initParameters).filter(function (key) {
return Boolean(initParameters[key]); return Boolean(initParameters[key]);
}).map(function (key) { }).map(function (key) {
@ -25,7 +29,8 @@ function updateURL() {
history.replaceState(null, null, newSearch); history.replaceState(null, null, newSearch);
} }
function graphQLFetcher(graphQLParams) { function graphQLFetcher(graphQLParams)
{
return fetch(entrypoint, { return fetch(entrypoint, {
method: 'post', method: 'post',
headers: { headers: {
@ -45,7 +50,7 @@ function graphQLFetcher(graphQLParams) {
}); });
} }
window.onload = function() { window.onload = function () {
var data = JSON.parse(document.getElementById('graphiql-data').innerText); var data = JSON.parse(document.getElementById('graphiql-data').innerText);
entrypoint = data.entrypoint; entrypoint = data.entrypoint;

View File

@ -1,4 +1,4 @@
window.addEventListener('load', function(event) { window.addEventListener('load', function (event) {
var loadingWrapper = document.getElementById('loading-wrapper'); var loadingWrapper = document.getElementById('loading-wrapper');
loadingWrapper.classList.add('fadeOut'); loadingWrapper.classList.add('fadeOut');

View File

@ -1,18 +1,22 @@
'use strict'; 'use strict';
window.onload = function() { window.onload = function () {
manageWebbyDisplay(); manageWebbyDisplay();
new MutationObserver(function (mutations, self) { new MutationObserver(function (mutations, self) {
const op = document.getElementById(`operations-${data.shortName}-${data.operationId}`); const op = document.getElementById(`operations-${data.shortName}-${data.operationId}`);
if (!op) return; if (!op) {
return;
}
self.disconnect(); self.disconnect();
op.querySelector('.opblock-summary').click(); op.querySelector('.opblock-summary').click();
const tryOutObserver = new MutationObserver(function (mutations, self) { const tryOutObserver = new MutationObserver(function (mutations, self) {
const tryOut = op.querySelector('.try-out__btn'); const tryOut = op.querySelector('.try-out__btn');
if (!tryOut) return; if (!tryOut) {
return;
}
self.disconnect(); self.disconnect();
@ -31,7 +35,7 @@ window.onload = function() {
} }
// Wait input values to be populated before executing the query // Wait input values to be populated before executing the query
setTimeout(function(){ setTimeout(function () {
op.querySelector('.execute').click(); op.querySelector('.execute').click();
op.scrollIntoView(); op.scrollIntoView();
}, 500); }, 500);
@ -71,10 +75,12 @@ window.onload = function() {
// Adapted from https://github.com/vitalyq/react-trigger-change/blob/master/lib/change.js // Adapted from https://github.com/vitalyq/react-trigger-change/blob/master/lib/change.js
// Copyright (c) 2017 Vitaly Kuznetsov // Copyright (c) 2017 Vitaly Kuznetsov
// MIT License // MIT License
function reactTriggerChange(node) { function reactTriggerChange(node)
{
// Do not try to delete non-configurable properties. // Do not try to delete non-configurable properties.
// Value and checked properties on DOM elements are non-configurable in PhantomJS. // Value and checked properties on DOM elements are non-configurable in PhantomJS.
function deletePropertySafe(elem, prop) { function deletePropertySafe(elem, prop)
{
const desc = Object.getOwnPropertyDescriptor(elem, prop); const desc = Object.getOwnPropertyDescriptor(elem, prop);
if (desc && desc.configurable) { if (desc && desc.configurable) {
delete elem[prop]; delete elem[prop];
@ -129,9 +135,12 @@ window.onload = function() {
} }
} }
function manageWebbyDisplay() { function manageWebbyDisplay()
{
const webby = document.getElementsByClassName('webby')[0]; const webby = document.getElementsByClassName('webby')[0];
if (!webby) return; if (!webby) {
return;
}
const web = document.getElementsByClassName('web')[0]; const web = document.getElementsByClassName('web')[0];
webby.classList.add('calm'); webby.classList.add('calm');

View File

@ -25,7 +25,6 @@ use Vin\ShopwareSdk\Data\Filter\EqualsAnyFilter;
use Vin\ShopwareSdk\Data\Filter\EqualsFilter; use Vin\ShopwareSdk\Data\Filter\EqualsFilter;
use Vin\ShopwareSdk\Factory\RepositoryFactory; use Vin\ShopwareSdk\Factory\RepositoryFactory;
#[AsCommand( #[AsCommand(
name: 'sw:get-orders', name: 'sw:get-orders',
description: 'Holt alle offenen Bestellungen von SW ab', description: 'Holt alle offenen Bestellungen von SW ab',
@ -37,7 +36,7 @@ class SwGetOrdersCommand extends Command
private $orderData; private $orderData;
public function __construct(OrdersRepository $ordersRepository, LoggerInterface $logger ) public function __construct(OrdersRepository $ordersRepository, LoggerInterface $logger)
{ {
$this->ordersRepository = $ordersRepository; $this->ordersRepository = $ordersRepository;
$this->logger = $logger; $this->logger = $logger;
@ -99,13 +98,14 @@ class SwGetOrdersCommand extends Command
/** /**
* @return \Vin\ShopwareSdk\Data\AccessToken|void * @return \Vin\ShopwareSdk\Data\AccessToken|void
*/ */
private function shopwareAuth(){ private function shopwareAuth()
{
try{ try {
$grantType = new ClientCredentialsGrantType($_ENV['SHOPWARE_API_ID'], $_ENV['SHOPWARE_API_KEY']); $grantType = new ClientCredentialsGrantType($_ENV['SHOPWARE_API_ID'], $_ENV['SHOPWARE_API_KEY']);
$adminClient = new AdminAuthenticator($grantType, $_ENV['SHOPWARE_API_URL']); $adminClient = new AdminAuthenticator($grantType, $_ENV['SHOPWARE_API_URL']);
return $adminClient->fetchAccessToken(); return $adminClient->fetchAccessToken();
}catch (\Exception $e){ } catch (\Exception $e) {
$this->logger->error($e->getMessage()); $this->logger->error($e->getMessage());
} }
} }
@ -116,7 +116,6 @@ class SwGetOrdersCommand extends Command
private function getOrdersDataFromSW(): void private function getOrdersDataFromSW(): void
{ {
foreach ($this->orderData as $value) { foreach ($this->orderData as $value) {
// Bei Shopware API anmelden // Bei Shopware API anmelden
$context = new Context($_ENV['SHOPWARE_API_URL'], $this->shopwareAuth()); $context = new Context($_ENV['SHOPWARE_API_URL'], $this->shopwareAuth());
@ -134,12 +133,10 @@ class SwGetOrdersCommand extends Command
$orders = $orderRepository->search($criteria, $context); $orders = $orderRepository->search($criteria, $context);
$value->setData((array)$orders->getEntities()); $value->setData((array)$orders->getEntities());
} catch (\Exception $e) { } catch (\Exception $e) {
$this->logger->error($e->getMessage()); $this->logger->error($e->getMessage());
} }
} }
} }
/** /**
@ -149,9 +146,6 @@ class SwGetOrdersCommand extends Command
private function saveOrdersData($orderData): void private function saveOrdersData($orderData): void
{ {
$orderData->setStatus = 1; $orderData->setStatus = 1;
$this->ordersRepository->add($orderData,true); $this->ordersRepository->add($orderData, true);
} }
} }

View File

@ -7,7 +7,6 @@ use App\Repository\OrdersRepository;
use Doctrine\ORM\Mapping as ORM; use Doctrine\ORM\Mapping as ORM;
use ApiPlatform\Core\Annotation\ApiResource; use ApiPlatform\Core\Annotation\ApiResource;
#[ORM\Entity(repositoryClass: OrdersRepository::class)] #[ORM\Entity(repositoryClass: OrdersRepository::class)]
#[ApiResource( #[ApiResource(
itemOperations: ["GET"], itemOperations: ["GET"],

View File

@ -16,7 +16,7 @@ final class OrdersSubscriber implements EventSubscriberInterface
{ {
private LoggerInterface $logger; private LoggerInterface $logger;
public function __construct( LoggerInterface $logger ) public function __construct(LoggerInterface $logger)
{ {
$this->logger = $logger; $this->logger = $logger;
} }
@ -44,7 +44,5 @@ final class OrdersSubscriber implements EventSubscriberInterface
$this->logger->info('hier'); $this->logger->info('hier');
} }
} }

View File

@ -7,7 +7,6 @@ use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry; use Doctrine\Persistence\ManagerRegistry;
use Symfony\Component\Validator\Validator\ValidatorInterface; use Symfony\Component\Validator\Validator\ValidatorInterface;
/** /**
* @extends ServiceEntityRepository<Orders> * @extends ServiceEntityRepository<Orders>
* *
@ -20,7 +19,7 @@ class OrdersRepository extends ServiceEntityRepository
{ {
private ValidatorInterface $validator; private ValidatorInterface $validator;
public function __construct(ManagerRegistry $registry,ValidatorInterface $validator) public function __construct(ManagerRegistry $registry, ValidatorInterface $validator)
{ {
parent::__construct($registry, Orders::class); parent::__construct($registry, Orders::class);
$this->validator = $validator; $this->validator = $validator;
@ -44,10 +43,9 @@ class OrdersRepository extends ServiceEntityRepository
{ {
$order = $this->getEntityManager()->find(Orders::class, $entity->getId()); $order = $this->getEntityManager()->find(Orders::class, $entity->getId());
if(!$order) { if (!$order) {
throw $this->createNotFoundException('Order not found: '.$entity->getId()); throw $this->createNotFoundException('Order not found: '.$entity->getId());
} }
} }
public function remove(Orders $entity, bool $flush = false): void public function remove(Orders $entity, bool $flush = false): void