validateAttributeCreate($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidCreateResponse($request, $response, $val); return; } $type = AssetAttributeTypeMapper::get() ->with('defaults') ->where('id', (int) $request->getData('type')) ->execute(); if (!$type->isRepeatable) { $attr = AssetAttributeMapper::count() ->with('type') ->where('type/id', $type->id) ->where('ref', (int) $request->getData('ref')) ->executeCount(); if ($attr > 0) { $response->header->status = RequestStatusCode::R_409; $this->createInvalidCreateResponse($request, $response, $val); return; } } $attribute = $this->createAttributeFromRequest($request, $type); $this->createModel($request->header->account, $attribute, AssetAttributeMapper::class, 'attribute', $request->getOrigin()); $this->createStandardCreateResponse($request, $response, $attribute); } /** * Api method to create asset attribute l11n * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeTypeL11nCreate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeTypeL11nCreate($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidCreateResponse($request, $response, $val); return; } $attrL11n = $this->createAttributeTypeL11nFromRequest($request); $this->createModel($request->header->account, $attrL11n, AssetAttributeTypeL11nMapper::class, 'attr_type_l11n', $request->getOrigin()); $this->createStandardCreateResponse($request, $response, $attrL11n); } /** * Api method to create asset attribute type * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeTypeCreate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeTypeCreate($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidCreateResponse($request, $response, $val); return; } $attrType = $this->createAttributeTypeFromRequest($request); $this->createModel($request->header->account, $attrType, AssetAttributeTypeMapper::class, 'attr_type', $request->getOrigin()); $this->createStandardCreateResponse($request, $response, $attrType); } /** * Api method to create asset attribute value * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeValueCreate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeValueCreate($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidCreateResponse($request, $response, $val); return; } /** @var \Modules\Attribute\Models\AttributeType $type */ $type = AssetAttributeTypeMapper::get() ->where('id', $request->getDataInt('type') ?? 0) ->execute(); if ($type->isInternal) { $response->header->status = RequestStatusCode::R_403; $this->createInvalidCreateResponse($request, $response, $val); return; } $attrValue = $this->createAttributeValueFromRequest($request, $type); $this->createModel($request->header->account, $attrValue, AssetAttributeValueMapper::class, 'attr_value', $request->getOrigin()); if ($attrValue->isDefault) { $this->createModelRelation( $request->header->account, $type->id, $attrValue->id, AssetAttributeTypeMapper::class, 'defaults', '', $request->getOrigin() ); } $this->createStandardCreateResponse($request, $response, $attrValue); } /** * Api method to create asset attribute l11n * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeValueL11nCreate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeValueL11nCreate($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidCreateResponse($request, $response, $val); return; } $attrL11n = $this->createAttributeValueL11nFromRequest($request); $this->createModel($request->header->account, $attrL11n, AssetAttributeValueL11nMapper::class, 'attr_value_l11n', $request->getOrigin()); $this->createStandardCreateResponse($request, $response, $attrL11n); } /** * Api method to update AssetAttribute * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeUpdate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeUpdate($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidUpdateResponse($request, $response, $val); return; } /** @var Attribute $old */ $old = AssetAttributeMapper::get() ->with('type') ->with('type/defaults') ->with('value') ->where('id', (int) $request->getData('id')) ->execute(); $new = $this->updateAttributeFromRequest($request, clone $old); if ($new->id === 0) { // Set response header to invalid request because of invalid data $response->header->status = RequestStatusCode::R_400; $this->createInvalidUpdateResponse($request, $response, $new); return; } $this->updateModel($request->header->account, $old, $new, AssetAttributeMapper::class, 'asset_attribute', $request->getOrigin()); if ($new->value->getValue() !== $old->value->getValue() && $new->type->custom ) { $this->updateModel($request->header->account, $old->value, $new->value, AssetAttributeValueMapper::class, 'attribute_value', $request->getOrigin()); } $this->createStandardUpdateResponse($request, $response, $new); } /** * Api method to delete AssetAttribute * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeDelete(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeDelete($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidDeleteResponse($request, $response, $val); return; } $assetAttribute = AssetAttributeMapper::get() ->with('type') ->where('id', (int) $request->getData('id')) ->execute(); if ($assetAttribute->type->isRequired) { $this->createInvalidDeleteResponse($request, $response, []); return; } $this->deleteModel($request->header->account, $assetAttribute, AssetAttributeMapper::class, 'asset_attribute', $request->getOrigin()); $this->createStandardDeleteResponse($request, $response, $assetAttribute); } /** * Api method to update AssetAttributeTypeL11n * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeTypeL11nUpdate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeTypeL11nUpdate($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidUpdateResponse($request, $response, $val); return; } /** @var BaseStringL11n $old */ $old = AssetAttributeTypeL11nMapper::get()->where('id', (int) $request->getData('id'))->execute(); $new = $this->updateAttributeTypeL11nFromRequest($request, clone $old); $this->updateModel($request->header->account, $old, $new, AssetAttributeTypeL11nMapper::class, 'asset_attribute_type_l11n', $request->getOrigin()); $this->createStandardUpdateResponse($request, $response, $new); } /** * Api method to delete AssetAttributeTypeL11n * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeTypeL11nDelete(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeTypeL11nDelete($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidDeleteResponse($request, $response, $val); return; } /** @var BaseStringL11n $assetAttributeTypeL11n */ $assetAttributeTypeL11n = AssetAttributeTypeL11nMapper::get()->where('id', (int) $request->getData('id'))->execute(); $this->deleteModel($request->header->account, $assetAttributeTypeL11n, AssetAttributeTypeL11nMapper::class, 'asset_attribute_type_l11n', $request->getOrigin()); $this->createStandardDeleteResponse($request, $response, $assetAttributeTypeL11n); } /** * Api method to update AssetAttributeType * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeTypeUpdate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeTypeUpdate($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidUpdateResponse($request, $response, $val); return; } /** @var AttributeType $old */ $old = AssetAttributeTypeMapper::get()->with('defaults')->where('id', (int) $request->getData('id'))->execute(); $new = $this->updateAttributeTypeFromRequest($request, clone $old); $this->updateModel($request->header->account, $old, $new, AssetAttributeTypeMapper::class, 'asset_attribute_type', $request->getOrigin()); $this->createStandardUpdateResponse($request, $response, $new); } /** * Api method to delete AssetAttributeType * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @todo Implement API function * * @since 1.0.0 */ public function apiAssetAttributeTypeDelete(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeTypeDelete($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidDeleteResponse($request, $response, $val); return; } /** @var AttributeType $assetAttributeType */ $assetAttributeType = AssetAttributeTypeMapper::get()->with('defaults')->where('id', (int) $request->getData('id'))->execute(); $this->deleteModel($request->header->account, $assetAttributeType, AssetAttributeTypeMapper::class, 'asset_attribute_type', $request->getOrigin()); $this->createStandardDeleteResponse($request, $response, $assetAttributeType); } /** * Api method to update AssetAttributeValue * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeValueUpdate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeValueUpdate($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidUpdateResponse($request, $response, $val); return; } /** @var AttributeValue $old */ $old = AssetAttributeValueMapper::get()->where('id', (int) $request->getData('id'))->execute(); /** @var \Modules\Attribute\Models\Attribute $attr */ $attr = AssetAttributeMapper::get() ->with('type') ->where('id', $request->getDataInt('attribute') ?? 0) ->execute(); $new = $this->updateAttributeValueFromRequest($request, clone $old, $attr); $this->updateModel($request->header->account, $old, $new, AssetAttributeValueMapper::class, 'asset_attribute_value', $request->getOrigin()); $this->createStandardUpdateResponse($request, $response, $new); } /** * Api method to delete AssetAttributeValue * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeValueDelete(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { // @todo I don't think values can be deleted? Only Attributes // However, It should be possible to remove UNUSED default values // either here or other function? // if (!empty($val = $this->validateAttributeValueDelete($request))) { // $response->header->status = RequestStatusCode::R_400; // $this->createInvalidDeleteResponse($request, $response, $val); // return; // } // /** @var \Modules\AssetManagement\Models\AssetAttributeValue $assetAttributeValue */ // $assetAttributeValue = AssetAttributeValueMapper::get()->where('id', (int) $request->getData('id'))->execute(); // $this->deleteModel($request->header->account, $assetAttributeValue, AssetAttributeValueMapper::class, 'asset_attribute_value', $request->getOrigin()); // $this->createStandardDeleteResponse($request, $response, $assetAttributeValue); } /** * Api method to update AssetAttributeValueL11n * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeValueL11nUpdate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeValueL11nUpdate($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidUpdateResponse($request, $response, $val); return; } /** @var BaseStringL11n $old */ $old = AssetAttributeValueL11nMapper::get()->where('id', (int) $request->getData('id')); $new = $this->updateAttributeValueL11nFromRequest($request, clone $old); $this->updateModel($request->header->account, $old, $new, AssetAttributeValueL11nMapper::class, 'asset_attribute_value_l11n', $request->getOrigin()); $this->createStandardUpdateResponse($request, $response, $new); } /** * Api method to delete AssetAttributeValueL11n * * @param RequestAbstract $request Request * @param ResponseAbstract $response Response * @param array $data Generic data * * @return void * * @api * * @since 1.0.0 */ public function apiAssetAttributeValueL11nDelete(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void { if (!empty($val = $this->validateAttributeValueL11nDelete($request))) { $response->header->status = RequestStatusCode::R_400; $this->createInvalidDeleteResponse($request, $response, $val); return; } /** @var BaseStringL11n $assetAttributeValueL11n */ $assetAttributeValueL11n = AssetAttributeValueL11nMapper::get()->where('id', (int) $request->getData('id'))->execute(); $this->deleteModel($request->header->account, $assetAttributeValueL11n, AssetAttributeValueL11nMapper::class, 'asset_attribute_value_l11n', $request->getOrigin()); $this->createStandardDeleteResponse($request, $response, $assetAttributeValueL11n); } }