2011-02-05 21:20:18 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class DifferentialDiffCreateController extends DifferentialController {
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
|
|
|
|
$request = $this->getRequest();
|
|
|
|
|
|
|
|
if ($request->isFormPost()) {
|
|
|
|
$parser = new ArcanistDiffParser();
|
2011-10-19 04:46:52 +02:00
|
|
|
$diff = null;
|
|
|
|
try {
|
|
|
|
$diff = PhabricatorFile::readUploadedFileData($_FILES['diff-file']);
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
$diff = $request->getStr('diff');
|
|
|
|
}
|
2011-02-05 21:20:18 +01:00
|
|
|
$changes = $parser->parseDiff($diff);
|
|
|
|
$diff = DifferentialDiff::newFromRawChanges($changes);
|
|
|
|
|
|
|
|
$diff->setLintStatus(DifferentialLintStatus::LINT_SKIP);
|
|
|
|
$diff->setUnitStatus(DifferentialLintStatus::LINT_SKIP);
|
|
|
|
|
|
|
|
$diff->setAuthorPHID($request->getUser()->getPHID());
|
|
|
|
$diff->setCreationMethod('web');
|
|
|
|
$diff->save();
|
|
|
|
|
|
|
|
return id(new AphrontRedirectResponse())
|
|
|
|
->setURI('/differential/diff/'.$diff->getID().'/');
|
|
|
|
}
|
|
|
|
|
|
|
|
$form = new AphrontFormView();
|
2011-12-02 01:05:54 +01:00
|
|
|
$arcanist_href = PhabricatorEnv::getDoclink(
|
|
|
|
'article/Arcanist_User_Guide.html');
|
|
|
|
$arcanist_link = phutil_render_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => $arcanist_href,
|
|
|
|
'target' => '_blank',
|
|
|
|
),
|
|
|
|
'Arcanist');
|
2011-02-05 21:20:18 +01:00
|
|
|
$form
|
|
|
|
->setAction('/differential/diff/create/')
|
2011-10-19 04:46:52 +02:00
|
|
|
->setEncType('multipart/form-data')
|
2011-02-05 21:20:18 +01:00
|
|
|
->setUser($request->getUser())
|
|
|
|
->appendChild(
|
|
|
|
'<p class="aphront-form-instructions">The best way to create a '.
|
2011-12-02 01:05:54 +01:00
|
|
|
"Differential diff is by using $arcanist_link, but you ".
|
2011-02-05 21:20:18 +01:00
|
|
|
'can also just paste a diff (e.g., from <tt>svn diff</tt> or '.
|
2011-10-19 04:46:52 +02:00
|
|
|
'<tt>git diff</tt>) into this box or upload it as a file if you '.
|
|
|
|
'really want.</p>')
|
2011-02-05 21:20:18 +01:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormTextAreaControl())
|
|
|
|
->setLabel('Raw Diff')
|
|
|
|
->setName('diff')
|
|
|
|
->setHeight(AphrontFormTextAreaControl::HEIGHT_VERY_TALL))
|
2011-10-19 04:46:52 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormFileControl())
|
|
|
|
->setLabel('Raw Diff from file')
|
|
|
|
->setName('diff-file'))
|
2011-02-05 21:20:18 +01:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
|
|
|
->setValue("Create Diff \xC2\xBB"));
|
|
|
|
|
|
|
|
$panel = new AphrontPanelView();
|
|
|
|
$panel->setHeader('Create New Diff');
|
|
|
|
$panel->appendChild($form);
|
|
|
|
$panel->setWidth(AphrontPanelView::WIDTH_FORM);
|
|
|
|
|
|
|
|
return $this->buildStandardPageResponse(
|
|
|
|
$panel,
|
|
|
|
array(
|
|
|
|
'title' => 'Create Diff',
|
|
|
|
'tab' => 'create',
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|