Symfony Bundle for Atlassian Connect platform
Without Symfony Flex:
composer require thecatontheflat/atlassian-connect-bundle
Add the bundle to app/AppKernel.php
$bundles = array(
// ... other bundles
new AtlassianConnectBundle\AtlassianConnectBundle(),
);
Bundle configuration includes has two main nodes - prod
and dev
.
When requesting descriptor - this configuration is converted to JSON.
Whatever you specify under dev
node will override same option from prod
.
Sample configuration in config.yml
:
atlassian_connect:
dev_tenant: 1
prod:
key: 'your-addon-key'
name: 'Your Add-On Name'
description: 'Your Add-On Description'
authentication:
type: jwt
vendor:
name: 'Your Vendor Name'
url: 'https://marketplace.atlassian.com/vendors/1211528'
baseUrl: 'https://your-production-domain.com/'
lifecycle:
installed: '/handshake'
scopes: ['READ', 'WRITE', 'ACT_AS_USER'] # If you want get oauth_client_id need to add scope ACT_AS_USER
modules:
jiraIssueTabPanels:
-
key: 'your-addon-key-tab'
url: '/protected/list?issue=${issue.key}'
weight: 100
name:
value: 'Tab Name'
dev:
baseUrl: 'http://localhost:8888'
To configure security part - use the following configuration in your security.yml
. If you have another firewall that has the "^/"
pattern, be sure to set the jwt_secured_area
firewall first.
security:
providers:
jwt_user_provider:
id: jwt_user_provider
firewalls:
jwt_secured_area:
pattern: "^/protected"
stateless: true
guard:
authenticators:
- jwt_authenticator
provider: jwt_user_provider
- For Symfony 4 and Flex to
config/routes.yaml
- For Symfony 2/3 to
app/config/routing.yml
Add the following:
ac:
resource: "@AtlassianConnectBundle/Resources/config/routing.yml"
To perform a license check for a certain route - specify the requires_license
default in your routing.yml
some_route:
path: ...
defaults:
requires_license: true
bin/console doctrine:schema:update --force
In your protected controller action you can make a signed request to JIRA instance:
<?php declare(strict_types = 1);
namespace App\Controller;
use AtlassianConnectBundle\Service\AtlassianRestClient;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Response;
/**
* @Route("/protected")
*/
class ProtectedController extends Controller
{
/**
* @Route("/", name="main")
*/
public function index()
{
$client = $this->container->get(AtlassianRestClient::class);
// Send request from anonymous plugin user
$issue = $client->get('/rest/api/2/issue/KEY-XXX');
// Send request from choosen user
$user = $client
->setUser('5ds4e4352a12451789b13243') // the accountId of the user in Jira/Confluence etc.
->get('/rest/api/2/myself')
;
return new Response([$issue, $user]);
}
}
You could white-list any licence by editing related row in table tenant and setting field is_white_listed to 1. If you will also set white_listed_until - you will be able to set white-list expiration
In dev environment Tenant with id=1 would be used automatically. You could set configuration variable atlassian_connect.dev_tenant to false in order to disable it, or use another dev tenant id. It would allow you to test your plugin output for any tenant.
If you need to add more properties to tenant entity or reverse-side of your app entity relations - you could override default Tenant entity like
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use AtlassianConnectBundle\Entity\TenantTrait;
use AtlassianConnectBundle\Entity\TenantInterface;
use Symfony\Component\Security\Core\User\UserInterface;
/**
* JiraTenant
*
* @ORM\Table()
* @ORM\HasLifecycleCallbacks()
* @ORM\Entity()
*/
class JiraTenant implements UserInterface, TenantInterface
{
/**
* @ORM\OneToMany(type="MyEntity", mappedBy="jiraTenant")
*/
protected $myEntities;
use TenantTrait;
// getters/setters for your custom properties
}
And override default one by setting parameter
atlassian_connect_tenant_entity_class: AppBundle\Entity\JiraTenant
In order to use it you will need to disable doctrine automapping
auto_mapping: false
mappings:
AppBundle: ~
As soon as you will create your plugin - you will be able to access plugin manifest via url https://yourplugindomain.com/atlassian-connect.json
You will be able to setup it in "Manage Addons" section of your Jira Cloud using "Upload addon" interface. But right now AtlassianConnectBundle support only "paid via Atlassian" model, so you will not be able to start your trial.
Instead of using manifest url directly - you should add private listing of your plugin, create token and get manifest url like
https://marketplace.atlassian.com/files/1.0.0-AC/artifact/descriptor/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/atlassian-connect.json?access-token=xxxxxxxx
If you will use that url from marketplace - your trial will be started automatically.