Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15383134
D7328.id16502.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D7328.id16502.diff
View Options
Index: src/workflow/ArcanistTasksWorkflow.php
===================================================================
--- src/workflow/ArcanistTasksWorkflow.php
+++ src/workflow/ArcanistTasksWorkflow.php
@@ -69,6 +69,10 @@
),
'unassigned' => array(
'help' => "Only show tasks that are not assigned (upforgrabs).",
+ ),
+ 'batch_create_file' => array(
+ 'param' => '/path/to/file.csv',
+ 'help' => "Batch upload files in CSV format"
)
);
}
@@ -82,6 +86,10 @@
$limit = $this->getArgument('limit');
$unassigned = $this->getArgument('unassigned');
+ if ($this->getArgument('batch_create_file')) {
+ return $this->uploadCsv ();
+ }
+
if ($owner) {
$owner_phid = $this->findOwnerPhid($owner);
} elseif ($unassigned) {
@@ -259,4 +267,50 @@
return $tasks;
}
+ private function uploadCsv () {
+ $path = $this->getArgument('batch_create_file');
+ $items = array();
+ $user_list = array();
+ try {
+ $data = Filesystem::readFile($path);
+ $lines = explode(PHP_EOL, $data);
+
+ foreach ($lines as $line) {
+ if ($line == "")
+ continue;
+ $line_parsed = str_getcsv($line);
+ $items[] = $line_parsed;
+
+ $user_name = $line_parsed[0];
+ if (!in_array($user_name, $user_list)) {
+ $user_list[] = $user_name;
+ }
+ }
+ } catch (FilesystemException $ex) {
+ echo "Unable to read file: ".$ex->getMessage()."\n";
+ }
+ $conduit = $this->getConduit();
+ $users_PHID = $conduit->callMethodSynchronous(
+ 'user.find',
+ array(
+ 'aliases' => $user_list
+ ));
+
+ foreach ($items as $item) {
+ $task_info = $conduit->callMethodSynchronous(
+ 'maniphest.createtask',
+ array(
+ 'title' => $item[1],
+ 'ownerPHID' => $users_PHID[$item[0]]
+ ));
+ $task_title = "T".$task_info['id'].": ".$task_info['title'];
+
+ echo phutil_console_format(
+ "<fg:green>Created</fg> task <fg:blue>**%s**</fg> assigned to **%s**\n",
+ $task_title,
+ $item[0]);
+ }
+ return 1;
+ }
+
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 15, 3:38 PM (2 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7409283
Default Alt Text
D7328.id16502.diff (2 KB)
Attached To
Mode
D7328: Added a command line option to create multiple tasks at once
Attached
Detach File
Event Timeline
Log In to Comment