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

View File

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

View File

@ -1,18 +1,22 @@
'use strict';
window.onload = function() {
window.onload = function () {
manageWebbyDisplay();
new MutationObserver(function (mutations, self) {
const op = document.getElementById(`operations-${data.shortName}-${data.operationId}`);
if (!op) return;
if (!op) {
return;
}
self.disconnect();
op.querySelector('.opblock-summary').click();
const tryOutObserver = new MutationObserver(function (mutations, self) {
const tryOut = op.querySelector('.try-out__btn');
if (!tryOut) return;
if (!tryOut) {
return;
}
self.disconnect();
@ -31,7 +35,7 @@ window.onload = function() {
}
// Wait input values to be populated before executing the query
setTimeout(function(){
setTimeout(function () {
op.querySelector('.execute').click();
op.scrollIntoView();
}, 500);
@ -71,10 +75,12 @@ window.onload = function() {
// Adapted from https://github.com/vitalyq/react-trigger-change/blob/master/lib/change.js
// Copyright (c) 2017 Vitaly Kuznetsov
// MIT License
function reactTriggerChange(node) {
function reactTriggerChange(node)
{
// Do not try to delete non-configurable properties.
// 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);
if (desc && desc.configurable) {
delete elem[prop];
@ -129,9 +135,12 @@ window.onload = function() {
}
}
function manageWebbyDisplay() {
function manageWebbyDisplay()
{
const webby = document.getElementsByClassName('webby')[0];
if (!webby) return;
if (!webby) {
return;
}
const web = document.getElementsByClassName('web')[0];
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\Factory\RepositoryFactory;
#[AsCommand(
name: 'sw:get-orders',
description: 'Holt alle offenen Bestellungen von SW ab',
@ -37,7 +36,7 @@ class SwGetOrdersCommand extends Command
private $orderData;
public function __construct(OrdersRepository $ordersRepository, LoggerInterface $logger )
public function __construct(OrdersRepository $ordersRepository, LoggerInterface $logger)
{
$this->ordersRepository = $ordersRepository;
$this->logger = $logger;
@ -99,13 +98,14 @@ class SwGetOrdersCommand extends Command
/**
* @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']);
$adminClient = new AdminAuthenticator($grantType, $_ENV['SHOPWARE_API_URL']);
return $adminClient->fetchAccessToken();
}catch (\Exception $e){
} catch (\Exception $e) {
$this->logger->error($e->getMessage());
}
}
@ -116,7 +116,6 @@ class SwGetOrdersCommand extends Command
private function getOrdersDataFromSW(): void
{
foreach ($this->orderData as $value) {
// Bei Shopware API anmelden
$context = new Context($_ENV['SHOPWARE_API_URL'], $this->shopwareAuth());
@ -134,12 +133,10 @@ class SwGetOrdersCommand extends Command
$orders = $orderRepository->search($criteria, $context);
$value->setData((array)$orders->getEntities());
} catch (\Exception $e) {
$this->logger->error($e->getMessage());
}
}
}
/**
@ -149,9 +146,6 @@ class SwGetOrdersCommand extends Command
private function saveOrdersData($orderData): void
{
$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 ApiPlatform\Core\Annotation\ApiResource;
#[ORM\Entity(repositoryClass: OrdersRepository::class)]
#[ApiResource(
itemOperations: ["GET"],

View File

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

View File

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