coolify/resources/views/livewire/source/github/change.blade.php

116 lines
5.4 KiB
PHP
Raw Normal View History

2023-05-09 10:01:57 +02:00
<div x-data="{ deleteSource: false }">
<x-naked-modal show="deleteSource" message='Are you sure you would like to delete this source?' />
2023-05-08 13:36:49 +02:00
<form wire:submit.prevent='submit'>
2023-05-18 13:26:35 +02:00
<div class="flex items-center gap-2">
<h1>GitHub App</h1>
<div class="flex gap-2 ">
@if ($github_app->app_id)
2023-05-25 14:05:44 +02:00
<x-forms.button type="submit">Save</x-forms.button>
<x-forms.button x-on:click.prevent="deleteSource = true">
2023-05-18 13:26:35 +02:00
Delete
2023-05-25 14:05:44 +02:00
</x-forms.button>
2023-05-18 13:26:35 +02:00
<a href="{{ $installation_url }}">
2023-05-25 14:05:44 +02:00
<x-forms.button>
2023-05-18 13:26:35 +02:00
@if ($github_app->installation_id)
Update Repositories
<x-external-link />
@else
Install Repositories
<x-external-link />
@endif
2023-05-25 14:05:44 +02:00
</x-forms.button>
2023-05-18 13:26:35 +02:00
</a>
@else
2023-05-25 14:05:44 +02:00
<x-forms.button disabled type="submit">Save</x-forms.button>
<x-forms.button x-on:click.prevent="deleteSource = true">
2023-05-18 13:26:35 +02:00
Delete
2023-05-25 14:05:44 +02:00
</x-forms.button>
2023-05-18 13:26:35 +02:00
<form x-data>
2023-05-25 14:05:44 +02:00
<x-forms.button isHighlighted x-on:click.prevent="createGithubApp">Create GitHub Application
</x-forms.button>
2023-05-18 13:26:35 +02:00
</form>
@endif
</div>
</div>
2023-05-25 14:05:44 +02:00
<x-forms.input id="github_app.name" label="App Name" required />
2023-05-16 11:02:51 +02:00
2023-05-08 13:36:49 +02:00
@if ($github_app->app_id)
2023-05-25 14:05:44 +02:00
<x-forms.input id="github_app.organization" label="Organization" disabled
2023-05-08 13:36:49 +02:00
placeholder="Personal user if empty" />
@else
2023-05-25 14:05:44 +02:00
<x-forms.input id="github_app.organization" label="Organization" placeholder="Personal user if empty" />
2023-05-08 13:36:49 +02:00
@endif
2023-05-25 14:05:44 +02:00
<x-forms.input id="github_app.api_url" label="API Url" disabled />
<x-forms.input id="github_app.html_url" label="HTML Url" disabled />
<x-forms.input id="github_app.custom_user" label="User" required />
<x-forms.input type="number" id="github_app.custom_port" label="Port" required />
2023-05-16 11:02:51 +02:00
2023-05-08 13:36:49 +02:00
@if ($github_app->app_id)
2023-05-25 14:05:44 +02:00
<x-forms.input type="number" id="github_app.app_id" label="App Id" disabled />
<x-forms.input type="number" id="github_app.installation_id" label="Installation Id" disabled />
<x-forms.input id="github_app.client_id" label="Client Id" type="password" disabled />
<x-forms.input id="github_app.client_secret" label="Client Secret" type="password" disabled />
<x-forms.input id="github_app.webhook_secret" label="Webhook Secret" type="password" disabled />
<x-forms.checkbox noDirty label="System Wide?" instantSave id="is_system_wide" />
2023-05-08 13:36:49 +02:00
@else
2023-05-25 14:05:44 +02:00
<x-forms.checkbox noDirty label="System Wide?" instantSave id="is_system_wide" />
2023-05-08 13:36:49 +02:00
<div class="py-2">
2023-05-18 13:26:35 +02:00
2023-05-08 13:36:49 +02:00
</div>
@endif
</form>
2023-05-18 13:26:35 +02:00
@if (!$github_app->app_id)
<script>
function createGithubApp() {
const {
organization,
uuid,
html_url
} = @json($github_app);
let baseUrl = @js($host);
const name = @js($name);
const isDev = @js(config('app.env')) === 'local';
const devWebhook = @js(config('coolify.dev_webhook'));
if (isDev && devWebhook) {
baseUrl = devWebhook;
}
const webhookBaseUrl = `${baseUrl}/webhooks`;
const path = organization ? `organizations/${organization}/settings/apps/new` : 'settings/apps/new';
const data = {
name,
url: baseUrl,
hook_attributes: {
url: `${webhookBaseUrl}/source/github/events`,
active: true,
},
redirect_url: `${webhookBaseUrl}/source/github/redirect`,
callback_urls: [`${baseUrl}/login/github/app`],
public: false,
request_oauth_on_install: false,
setup_url: `${webhookBaseUrl}/source/github/install?source=${uuid}`,
setup_on_update: true,
default_permissions: {
contents: 'read',
metadata: 'read',
pull_requests: 'read',
emails: 'read'
},
default_events: ['pull_request', 'push']
};
const form = document.createElement('form');
form.setAttribute('method', 'post');
form.setAttribute('action', `${html_url}/${path}?state=${uuid}`);
const input = document.createElement('input');
input.setAttribute('id', 'manifest');
input.setAttribute('name', 'manifest');
input.setAttribute('type', 'hidden');
input.setAttribute('value', JSON.stringify(data));
form.appendChild(input);
document.getElementsByTagName('body')[0].appendChild(form);
form.submit();
}
</script>
@endif
2023-05-08 13:36:49 +02:00
</div>