Passed
Push — develop ( e3baf2...b0eb3e )
by Jens
03:01
created

DocumentFactory::createDocumentFromPostValues()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 17
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 10
nc 2
nop 2
dl 0
loc 17
rs 9.4285
c 0
b 0
f 0
1
<?php
2
/**
3
 * User: jensk
4
 * Date: 13-3-2017
5
 * Time: 16:24
6
 */
7
8
namespace library\storage\factories;
9
10
11
use library\storage\Document;
12
use library\storage\Storage;
13
use library\storage\storage\DocumentTypesStorage;
14
15
class DocumentFactory
16
{
17
	/**
18
	 * @param array                $postValues
19
	 * @param DocumentTypesStorage $documentTypesStorage
20
	 *
21
	 * @return \library\storage\Document
22
	 */
23
	public static function createDocumentFromPostValues($postValues, DocumentTypesStorage $documentTypesStorage)
24
	{
25
		$postValues = utf8Convert($postValues);
26
		$documentType = $documentTypesStorage->getDocumentTypeBySlug($postValues['documentType']);
27
28
		$staticBricks = $documentType->bricks;
29
30
		$documentObj = self::createInitialDocumentObject($postValues, $documentType);
31
32
		$documentObj->fields = isset($postValues['fields']) ? $postValues['fields'] : array();
33
		$documentObj->bricks = array();
34
35
		$documentObj = self::createBrickArrayForDocument($postValues, $documentObj, $staticBricks);
36
		$documentObj = self::createDynamicBrickArrayForDocument($postValues, $documentObj);
37
38
		return $documentObj;
39
	}
40
41
	/**
42
	 * @param array $postValues
43
	 * @param \stdClass $documentType
44
	 *
45
	 * @return Document
46
	 */
47
	private static function createInitialDocumentObject($postValues, $documentType)
48
	{
49
		$documentObj = new Document();
50
		$documentObj->title = $postValues['title'];
51
		$documentObj->slug = slugify($postValues['title']);
52
		$documentObj->type = 'document';
53
		$documentObj->documentType = $documentType->title;
54
		$documentObj->documentTypeSlug = $documentType->slug;
55
		$documentObj->state = isset($postValues['state']) ? 'published' : 'unpublished';
56
		$documentObj->lastModificationDate = time();
57
		$documentObj->creationDate = isset($postValues['creationDate']) ? intval($postValues['creationDate']) : time();
58
		$documentObj->lastModifiedBy = $_SESSION['cloudcontrol']->username;
59
60
		return $documentObj;
61
	}
62
63
	/**
64
	 * @param array $postValues
65
	 * @param Document $documentObj
66
	 * @param array $staticBricks
67
	 *
68
	 * @return Document
69
	 */
70
	private static function createBrickArrayForDocument($postValues, $documentObj, $staticBricks)
71
	{
72
		if (isset($postValues['bricks'])) {
73
			foreach ($postValues['bricks'] as $brickSlug => $brick) {
74
				// Check if its multiple
75
				$multiple = false;
76
				$staticBrick = null;
77
				foreach ($staticBricks as $staticBrick) {
78
					if ($staticBrick->slug === $brickSlug) {
79
						$multiple = $staticBrick->multiple;
80
						break;
81
					}
82
				}
83
84
				if ($multiple) {
85
					$brickArray = array();
86 View Code Duplication
					foreach ($brick as $brickInstance) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
87
						$brickObj = new \stdClass();
88
						$brickObj->fields = new \stdClass();
89
						$brickObj->type = $staticBrick->brickSlug;
90
91
						foreach ($brickInstance['fields'] as $fieldName => $fieldValues) {
92
							$brickObj->fields->$fieldName = $fieldValues;
93
						}
94
95
						$brickArray[] = $brickObj;
96
					}
97
98
					$bricks = $documentObj->bricks;
99
					$bricks[$brickSlug] = $brickArray;
100
					$documentObj->bricks = $bricks;
101
				} else {
102
					$bricks = $documentObj->bricks;
103
					$bricks[$brickSlug] = $brick;
104
					$documentObj->bricks = $bricks;
105
				}
106
			}
107
		}
108
		return $documentObj;
109
	}
110
111
	/**
112
	 * @param array $postValues
113
	 * @param Document $documentObj
114
	 *
115
	 * @return Document
116
	 */
117
	private static function createDynamicBrickArrayForDocument($postValues, $documentObj)
118
	{
119
		$documentObj->dynamicBricks = array();
120
		if (isset($postValues['dynamicBricks'])) {
121 View Code Duplication
			foreach ($postValues['dynamicBricks'] as $brickTypeSlug => $brick) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
122
				foreach ($brick as $brickContent) {
123
					$brickObj = new \stdClass();
124
					$brickObj->type = $brickTypeSlug;
125
					$brickObj->fields = $brickContent;
126
					$dynamicBricks = $documentObj->dynamicBricks;
127
					$dynamicBricks[] = $brickObj;
128
					$documentObj->dynamicBricks = $dynamicBricks;
129
				}
130
			}
131
		}
132
		return $documentObj;
133
	}
134
}