Page MenuHomePhabricator

Maniphest - add support for !assign command
ClosedPublic

Authored by btrahan on Oct 14 2013, 7:18 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Sep 27, 1:13 AM
Unknown Object (File)
Sat, Sep 7, 12:18 AM
Unknown Object (File)
Sun, Sep 1, 8:24 PM
Unknown Object (File)
Fri, Aug 30, 1:05 PM
Unknown Object (File)
Aug 17 2024, 1:36 PM
Unknown Object (File)
Aug 16 2024, 5:50 PM
Unknown Object (File)
Aug 13 2024, 11:43 PM
Unknown Object (File)
Aug 9 2024, 3:40 AM

Details

Reviewers
epriestley
Maniphest Tasks
Restricted Maniphest Task
Commits
Restricted Diffusion Commit
rPd0127f95e541: Maniphest - add support for !assign command
Summary

also try to centralize some of the command parsing logic. note that differential is still an exception here. it uses a whitelist-style regex. i think long-term we should have this for every app but changing it seemed too big for this diff.

Fixes T3937.

Test Plan

echo '!assign btrahan' | ./bin/mail receive-test --as xerxes --to T22 ; echo '!claim' | ./bin/mail receive-test --as xerxes --to T22

unit tests passed, though my new one is silly

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

Nice, this is definitely a lot cleaner. Agreed on the long term vision and also on there being more mess here than fits in one diff.

src/applications/maniphest/mail/ManiphestReplyHandler.php
95–102

Maybe just execute() and then check if you got something and head() it, to avoid the PolicyException business.

btrahan updated this revision to Unknown Object (????).Oct 14 2013, 7:26 PM

avoid try / catch by doing an execute()