Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15437146
D16031.id38563.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D16031.id38563.diff
View Options
diff --git a/src/applications/differential/controller/DifferentialInlineCommentEditController.php b/src/applications/differential/controller/DifferentialInlineCommentEditController.php
--- a/src/applications/differential/controller/DifferentialInlineCommentEditController.php
+++ b/src/applications/differential/controller/DifferentialInlineCommentEditController.php
@@ -23,13 +23,34 @@
}
protected function createComment() {
- // Verify revision and changeset correspond to actual objects.
+ // Verify revision and changeset correspond to actual objects, and are
+ // connected to one another.
$changeset_id = $this->getChangesetID();
+ $viewer = $this->getViewer();
$revision = $this->loadRevision();
- if (!id(new DifferentialChangeset())->load($changeset_id)) {
- throw new Exception(pht('Invalid changeset ID!'));
+ $changeset = id(new DifferentialChangesetQuery())
+ ->setViewer($viewer)
+ ->withIDs(array($changeset_id))
+ ->executeOne();
+ if (!$changeset) {
+ throw new Exception(
+ pht(
+ 'Invalid changeset ID "%s"!',
+ $changeset_id));
+ }
+
+ $diff = $changeset->getDiff();
+ if ($diff->getRevisionID() != $revision->getID()) {
+ throw new Exception(
+ pht(
+ 'Changeset ID "%s" is part of diff ID "%s", but that diff '.
+ 'is attached to reivsion "%s", not revision "%s".',
+ $changeset_id,
+ $diff->getID(),
+ $diff->getRevisionID(),
+ $revision->getID()));
}
return id(new DifferentialInlineComment())
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Mar 26, 5:54 PM (1 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7223146
Default Alt Text
D16031.id38563.diff (1 KB)
Attached To
Mode
D16031: Prevent creation of inline comments with mismatched changesetID / revisionPHID
Attached
Detach File
Event Timeline
Log In to Comment