getViewer()); } protected function newObjectQuery() { return id(new PhabricatorOAuthServerClientQuery()); } protected function getObjectCreateTitleText($object) { return pht('Create OAuth Server'); } protected function getObjectCreateButtonText($object) { return pht('Create OAuth Server'); } protected function getObjectEditTitleText($object) { return pht('Edit OAuth Server: %s', $object->getName()); } protected function getObjectEditShortText($object) { return pht('Edit OAuth Server'); } protected function getObjectCreateShortText() { return pht('Create OAuth Server'); } protected function getObjectName() { return pht('OAuth Server'); } protected function getObjectViewURI($object) { return $object->getViewURI(); } protected function getCreateNewObjectPolicy() { return $this->getApplication()->getPolicy( PhabricatorOAuthServerCreateClientsCapability::CAPABILITY); } protected function buildCustomEditFields($object) { return array( id(new PhabricatorTextEditField()) ->setKey('name') ->setLabel(pht('Name')) ->setIsRequired(true) ->setTransactionType(PhabricatorOAuthServerTransaction::TYPE_NAME) ->setDescription(pht('The name of the OAuth application.')) ->setConduitDescription(pht('Rename the application.')) ->setConduitTypeDescription(pht('New application name.')) ->setValue($object->getName()), id(new PhabricatorTextEditField()) ->setKey('redirectURI') ->setLabel(pht('Redirect URI')) ->setIsRequired(true) ->setTransactionType( PhabricatorOAuthServerTransaction::TYPE_REDIRECT_URI) ->setDescription( pht('The redirect URI for OAuth handshakes.')) ->setConduitDescription( pht( 'Change where this application redirects users to during OAuth '. 'handshakes.')) ->setConduitTypeDescription( pht( 'New OAuth application redirect URI.')) ->setValue($object->getRedirectURI()), ); } }