Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15430780
D8669.id20557.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D8669.id20557.diff
View Options
diff --git a/resources/celerity/map.php b/resources/celerity/map.php
--- a/resources/celerity/map.php
+++ b/resources/celerity/map.php
@@ -850,6 +850,11 @@
2 => 'javelin-stratcom',
3 => 'javelin-workflow',
),
+ '7319e029' =>
+ array(
+ 0 => 'javelin-behavior',
+ 1 => 'javelin-dom',
+ ),
'06e05112' =>
array(
0 => 'javelin-behavior',
@@ -1253,11 +1258,6 @@
1 => 'javelin-stratcom',
2 => 'javelin-dom',
),
- '7319e029' =>
- array(
- 0 => 'javelin-behavior',
- 1 => 'javelin-dom',
- ),
'75903ee1' =>
array(
0 => 'javelin-behavior',
diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php
--- a/src/__phutil_library_map__.php
+++ b/src/__phutil_library_map__.php
@@ -220,6 +220,7 @@
'ConduitAPI_phragment_Method' => 'applications/phragment/conduit/ConduitAPI_phragment_Method.php',
'ConduitAPI_phragment_getpatch_Method' => 'applications/phragment/conduit/ConduitAPI_phragment_getpatch_Method.php',
'ConduitAPI_phragment_queryfragments_Method' => 'applications/phragment/conduit/ConduitAPI_phragment_queryfragments_Method.php',
+ 'ConduitAPI_phragment_querysnapshots_Method' => 'applications/phragment/conduit/ConduitAPI_phragment_querysnapshots_Method.php',
'ConduitAPI_phriction_Method' => 'applications/phriction/conduit/ConduitAPI_phriction_Method.php',
'ConduitAPI_phriction_edit_Method' => 'applications/phriction/conduit/ConduitAPI_phriction_edit_Method.php',
'ConduitAPI_phriction_history_Method' => 'applications/phriction/conduit/ConduitAPI_phriction_history_Method.php',
@@ -2791,6 +2792,7 @@
'ConduitAPI_phragment_Method' => 'ConduitAPIMethod',
'ConduitAPI_phragment_getpatch_Method' => 'ConduitAPI_phragment_Method',
'ConduitAPI_phragment_queryfragments_Method' => 'ConduitAPI_phragment_Method',
+ 'ConduitAPI_phragment_querysnapshots_Method' => 'ConduitAPI_phragment_Method',
'ConduitAPI_phriction_Method' => 'ConduitAPIMethod',
'ConduitAPI_phriction_edit_Method' => 'ConduitAPI_phriction_Method',
'ConduitAPI_phriction_history_Method' => 'ConduitAPI_phriction_Method',
diff --git a/src/applications/phragment/conduit/ConduitAPI_phragment_querysnapshots_Method.php b/src/applications/phragment/conduit/ConduitAPI_phragment_querysnapshots_Method.php
new file mode 100644
--- /dev/null
+++ b/src/applications/phragment/conduit/ConduitAPI_phragment_querysnapshots_Method.php
@@ -0,0 +1,54 @@
+<?php
+
+/**
+ * @group conduit
+ */
+final class ConduitAPI_phragment_querysnapshots_Method
+ extends ConduitAPI_phragment_Method {
+
+ public function getMethodStatus() {
+ return self::METHOD_STATUS_UNSTABLE;
+ }
+
+ public function getMethodDescription() {
+ return pht("Query snapshots based on their path.");
+ }
+
+ public function defineParamTypes() {
+ return array(
+ 'path' => 'required string'
+ );
+ }
+
+ public function defineReturnType() {
+ return 'nonempty dict';
+ }
+
+ public function defineErrorTypes() {
+ return array();
+ }
+
+ protected function execute(ConduitAPIRequest $request) {
+ $path = $request->getValue('path');
+
+ $fragment = id(new PhragmentFragmentQuery())
+ ->setViewer($request->getUser())
+ ->withPaths(array($path))
+ ->executeOne();
+
+ $snapshots = id(new PhragmentSnapshotQuery())
+ ->setViewer($request->getUser())
+ ->withPrimaryFragmentPHIDs(array($fragment->getPHID()))
+ ->execute();
+
+ $results = array();
+ foreach ($snapshots as $snapshot) {
+ $results[] = array(
+ 'phid' => $snapshot->getPHID(),
+ 'name' => $snapshot->getName());
+ }
+
+ return $results;
+ }
+
+}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 25, 8:55 AM (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7721834
Default Alt Text
D8669.id20557.diff (3 KB)
Attached To
Mode
D8669: Add phragment.querysnapshots method
Attached
Detach File
Event Timeline
Log In to Comment