This repository was archived by the owner on May 3, 2022. It is now read-only.
File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 11
11
use eZ \Publish \Core \REST \Server \Exceptions \BadRequestException ;
12
12
use eZ \Publish \Core \REST \Server \Values \RestContent ;
13
13
use eZ \Publish \Core \REST \Server \Values \Version ;
14
+ use eZ \Publish \Core \REST \Server \Values \CreatedVersion ;
14
15
use Symfony \Component \HttpFoundation \Request ;
15
16
use eZ \Publish \Core \REST \Common \Message ;
16
17
use eZ \Publish \Core \REST \Server \Controller \Content ;
@@ -54,6 +55,28 @@ public function deleteContent($contentId)
54
55
return new NoContent ();
55
56
}
56
57
58
+ public function createDraftFromCurrentVersion ($ contentId )
59
+ {
60
+ if (!$ this ->isUserContent ($ contentId )) {
61
+ return parent ::createDraftFromCurrentVersion ($ contentId );
62
+ }
63
+
64
+ // Not creating the draft in this method as it will be created later by `updateVersion` and returning a dummy version
65
+ $ content = $ this ->repository ->getUserService ()->loadUser ($ contentId );
66
+ $ contentInfo = $ this ->repository ->getContentService ()->loadContentInfo ($ contentId );
67
+ $ contentType = $ this ->repository ->getContentTypeService ()->loadContentType ($ contentInfo ->contentTypeId );
68
+
69
+ return new CreatedVersion (
70
+ array (
71
+ 'version ' => new Version (
72
+ $ content ,
73
+ $ contentType ,
74
+ []
75
+ ),
76
+ )
77
+ );
78
+ }
79
+
57
80
/**
58
81
* If the updated content is a user, update it using the user API, and return a Version object.
59
82
*
You can’t perform that action at this time.
0 commit comments