1
0
Fork 0
mirror of synced 2024-07-20 22:06:15 +12:00
appwrite/app/views/console/functions/function.phtml

789 lines
53 KiB
PHTML
Raw Normal View History

2020-05-11 18:47:53 +12:00
<?php
2020-07-15 15:38:57 +12:00
$fileLimit = $this->getParam('fileLimit', 0);
$fileLimitHuman = $this->getParam('fileLimitHuman', 0);
2022-05-04 22:54:34 +12:00
$events = $this->getParam('events', []);
2020-07-20 02:42:46 +12:00
$timeout = $this->getParam('timeout', 900);
$usageStatsEnabled = $this->getParam('usageStatsEnabled', true);
2022-06-28 05:12:40 +12:00
$patterns = [
'documents',
'documents.create',
'documents.update',
'documents.delete',
];
2022-05-04 22:54:34 +12:00
foreach ($events as $name => $event) {
2022-05-11 01:21:57 +12:00
$patterns[] = $name;
2022-05-04 22:54:34 +12:00
foreach ($event as $key => $value) {
if (!\str_starts_with($key, '$')) {
if (!($value['$resource'] ?? false)) {
$patterns[] = "{$name}.{$key}";
} else {
2022-05-11 01:21:57 +12:00
$patterns[] = $key;
2022-05-04 22:54:34 +12:00
foreach ($value as $key2 => $value2) {
if (!\str_starts_with($key2, '$')) {
if (!($value2['$resource'] ?? false)) {
$patterns[] = "{$key}.{$key2}";
}
}
}
}
}
}
}
2022-05-11 01:21:57 +12:00
sort($patterns);
2020-05-11 18:47:53 +12:00
?>
2020-05-11 16:39:00 +12:00
<div
data-service="functions.get"
data-name="project-function"
2022-01-25 13:36:33 +13:00
data-event="load,functions.update,functions.createDeployment,functions.updateDeployment,functions.deleteDeployment,functions.retryBuild"
2020-05-11 16:39:00 +12:00
data-param-function-id="{{router.params.id}}"
data-success="trigger"
data-success-param-trigger-events="functions.get">
<div class="cover">
<h1 class="zone xl margin-bottom-large">
2020-06-14 10:57:34 +12:00
<a data-ls-attrs="href=/console/functions?project={{router.params.project}}" class="back text-size-small link-return-animation--start"><i class="icon-left-open"></i> Functions</a>
2020-05-11 16:39:00 +12:00
<br />
2020-05-11 18:47:53 +12:00
<span data-ls-bind="{{project-function.name}}&nbsp;">&nbsp;</span>
2020-05-11 16:39:00 +12:00
</h1>
</div>
<div data-ui-modal class="modal width-large box close" data-button-hide="on" data-open-event="open-json">
<button type="button" class="close pull-end" data-ui-modal-close=""><i class="icon-cancel"></i></button>
2020-05-11 16:39:00 +12:00
<h2>JSON View</h2>
<div class="margin-bottom">
<input type="hidden" data-ls-bind="{{project-function}}" data-forms-code />
</div>
<button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
</div>
<div class="zone xl">
<ul class="phases clear" data-ui-phases data-selected="{{router.params.tab}}">
<li data-state="/console/functions/function?id={{router.params.id}}&project={{router.params.project}}">
2020-05-13 10:00:48 +12:00
<h2>Overview</h2>
2020-05-13 10:00:48 +12:00
<div class="row responsive margin-top-negative">
<div class="col span-8 margin-bottom">
<label>&nbsp;</label>
<div class="box margin-bottom-large">
<div class="text-align-center">
2021-06-24 00:15:27 +12:00
<img src="" data-ls-attrs="src=/images/runtimes/{{project-function.runtime|runtimeLogo}}" alt="Function Runtime" class="avatar huge margin-top-negative-xxl" />
2020-05-13 10:00:48 +12:00
2021-06-24 00:15:27 +12:00
<p class="text-fade margin-bottom-small" data-ls-bind="{{project-function.runtime|runtimeName}} {{project-function.runtime|runtimeVersion}}">
2020-05-13 10:00:48 +12:00
</p>
2022-01-25 13:36:33 +13:00
<div data-ls-if="{{project-function.deployment}} !== ''" class="margin-top">
2021-03-12 01:39:06 +13:00
<button data-ls-ui-trigger="execute-now">Execute Now</button> &nbsp; <a data-ls-attrs="href=/console/functions/function/logs?id={{router.params.id}}&project={{router.params.project}}" class="button reverse" style="vertical-align: top;">View Logs</a>
</div>
2020-05-13 10:00:48 +12:00
</div>
</div>
<div class="margin-bottom"
2022-01-25 13:36:33 +13:00
data-service="functions.listDeployments"
2020-05-13 10:00:48 +12:00
data-scope="sdk"
2022-01-25 13:36:33 +13:00
data-event="load,functions.createDeployment,functions.deleteDeployment,functions.updateDeployment,functions.retryBuild"
data-name="project-function-deployments"
2020-07-15 15:38:57 +12:00
data-param-function-id="{{router.params.id}}"
data-param-limit="<?php echo APP_PAGING_LIMIT; ?>"
data-param-offset=""
2020-07-17 00:04:06 +12:00
data-param-order-type="DESC"
2020-05-13 10:00:48 +12:00
data-success="trigger"
2022-01-25 13:36:33 +13:00
data-success-param-trigger-events="functions.listDeployments">
2020-05-13 10:00:48 +12:00
2022-02-28 22:25:38 +13:00
<h3>Deployments <span class="text-fade text-size-small pull-end margin-top-small" data-ls-bind="{{project-function-deployments.total}} deployments found"></span></h3>
2020-07-19 01:49:20 +12:00
2022-01-25 13:36:33 +13:00
<div data-ls-if="0 == {{project-function-deployments.deployments.length}} || undefined == {{project-function-deployments.deployments.length}}" class="box margin-top margin-bottom">
<h3 class="margin-bottom-small text-bold">No Deployments Found</h3>
2020-05-13 10:00:48 +12:00
2022-01-25 13:36:33 +13:00
<p class="margin-bottom-no">You haven't deployed any deployments for your function yet.</p>
2020-05-13 10:00:48 +12:00
</div>
2022-01-25 13:36:33 +13:00
<div data-ls-if="(0 != {{project-function-deployments.deployments.length}}) && (undefined !== {{project-function-deployments.deployments.length}})">
2020-05-13 10:00:48 +12:00
<div class="box margin-bottom">
2022-01-25 13:36:33 +13:00
<ul data-ls-loop="project-function-deployments.deployments" data-ls-as="deployment" class="list">
2020-05-13 10:00:48 +12:00
<li class="clear">
2022-01-25 13:36:33 +13:00
<div data-ui-modal class="modal width-large box close" data-button-hide="on" data-open-event="open-stderr-{{deployment.$id}}">
2021-11-15 15:18:53 +13:00
<button type="button" class="close pull-end" data-ui-modal-close=""><i class="icon-cancel"></i></button>
<h2>Build Error Log</h2>
<div class="margin-bottom">
2022-01-25 13:36:33 +13:00
<input type="hidden" data-ls-bind="{{deployment.buildStderr}}" data-forms-code="bash" data-lang="bash" data-lang-label="Bash" />
2021-11-15 15:18:53 +13:00
</div>
<button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
</div>
2022-01-25 13:36:33 +13:00
<div data-ui-modal class="modal width-large box close" data-button-hide="on" data-open-event="open-stdout-{{deployment.$id}}">
2021-11-15 15:18:53 +13:00
<button type="button" class="close pull-end" data-ui-modal-close=""><i class="icon-cancel"></i></button>
<h2>Build Log</h2>
<div class="margin-bottom">
2022-01-25 13:36:33 +13:00
<input type="hidden" data-ls-bind="{{deployment.buildStdout}}" data-forms-code="bash" data-lang="bash" data-lang-label="Bash" />
2021-11-15 15:18:53 +13:00
</div>
<button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
</div>
2022-01-25 13:36:33 +13:00
<form data-ls-if="({{deployment.$id}} !== {{project-function.deployment}} && {{deployment.status}} == 'ready')" name="functions.updateDeployment" class="pull-end"
2021-01-18 19:29:26 +13:00
data-analytics
data-analytics-activity
2020-07-16 07:09:46 +12:00
data-analytics-event="submit"
data-analytics-category="console"
data-analytics-label="Create Function Execution"
2022-01-25 13:36:33 +13:00
data-service="functions.updateDeployment"
2020-07-16 07:09:46 +12:00
data-event="submit"
data-param-function-id="{{router.params.id}}"
data-success="alert,trigger"
2022-01-25 13:36:33 +13:00
data-success-param-alert-text="Deployment updated successfully"
data-success-param-trigger-events="functions.updateDeployment"
2020-07-16 07:09:46 +12:00
data-failure="alert"
2022-01-25 13:36:33 +13:00
data-failure-param-alert-text="Failed to update deployment"
2020-07-16 07:09:46 +12:00
data-failure-param-alert-classname="error">
<input type="hidden" name="deploymentId" data-ls-bind="{{deployment.$id}}">
2020-07-18 18:16:34 +12:00
<button>Activate</button>
2020-07-16 07:09:46 +12:00
</form>
2022-01-25 13:36:33 +13:00
<form data-ls-if="({{deployment.$id}} !== {{project-function.deployment}} && {{deployment.status}} == 'failed')" name="functions.retryBuild" class="pull-end"
data-analytics
data-analytics-activity
data-analytics-event="submit"
data-analytics-category="console"
data-analytics-label="Retry Build"
data-service="functions.retryBuild"
data-event="submit"
data-success="alert,trigger"
data-success-param-alert-text="Build started successfully"
data-success-param-trigger-events="functions.retryBuild"
data-failure="alert"
data-failure-param-alert-text="Failed to retry build"
data-failure-param-alert-classname="error">
2022-01-25 13:36:33 +13:00
<input type="hidden" name="buildId" data-ls-bind="{{deployment.buildId}}">
2022-02-17 09:06:22 +13:00
<input type="hidden" name="functionId" data-ls-bind="{{router.params.id}}">
<input type="hidden" name="deploymentId" data-ls-bind="{{deployment.$id}}">
<button>Retry Build</button>
</form>
2021-11-15 15:18:53 +13:00
2022-01-25 13:36:33 +13:00
<b data-ls-bind="{{deployment.$id}}"></b> &nbsp;
<span class="text-fade" data-ls-bind="{{deployment.entrypoint}}"></span>
2020-07-19 09:49:15 +12:00
<div class="text-size-small margin-top-small clear">
2022-01-25 13:36:33 +13:00
<span data-ls-if="{{deployment.status}} == 'failed'" style="color: var(--config-color-danger)" class="pull-start" data-ls-bind="{{deployment.status}}"></span>
<span data-ls-if="{{deployment.status}} == 'ready'" style="color: var(--config-color-success)" class="pull-start" data-ls-bind="{{deployment.status}}"></span>
<span data-ls-if="{{deployment.status}} == 'processing' || {{deployment.status}} == 'building'" style="color: var(--config-color-info)" class="pull-start" data-ls-bind="{{deployment.status}}"></span>
<span class="pull-start" data-ls-bind="&nbsp; | &nbsp; Created {{deployment.$createdAt|timeSince}} &nbsp; | &nbsp; {{deployment.size|humanFileSize}}{{deployment.size|humanFileUnit}}"></span>
2020-07-19 09:49:15 +12:00
2022-01-25 13:36:33 +13:00
<span data-ls-if="{{deployment.status}} == 'failed'">&nbsp; | &nbsp;<button type="button" class="link text-size-small" data-ls-ui-trigger="open-stderr-{{deployment.$id}}">Logs</button></span>
<span data-ls-if="{{deployment.status}} == 'ready'">&nbsp; | &nbsp;<button type="button" class="link text-size-small" data-ls-ui-trigger="open-stdout-{{deployment.$id}}">Logs</button></span>
2022-01-25 13:36:33 +13:00
<form data-ls-if="{{deployment.$id}} !== {{project-function.deployment}}" name="functions.deleteDeployment" class="pull-start"
2021-01-18 19:29:26 +13:00
data-analytics
data-analytics-activity
2020-07-19 09:49:15 +12:00
data-analytics-event="submit"
data-analytics-category="console"
2022-01-25 13:36:33 +13:00
data-analytics-label="Delete Function Deployment"
data-service="functions.deleteDeployment"
2020-07-19 09:49:15 +12:00
data-event="submit"
data-param-function-id="{{router.params.id}}"
2022-01-25 13:36:33 +13:00
data-confirm="Are you sure you want to delete this function deployment?"
2020-07-19 09:49:15 +12:00
data-success="alert,trigger"
2022-01-25 13:36:33 +13:00
data-success-param-alert-text="Function deployment deleted successfully"
data-success-param-trigger-events="functions.deleteDeployment"
2020-07-19 09:49:15 +12:00
data-failure="alert"
2022-01-25 13:36:33 +13:00
data-failure-param-alert-text="Failed to delete function deployment"
2020-07-19 09:49:15 +12:00
data-failure-param-alert-classname="error">
2022-01-25 13:36:33 +13:00
<input type="hidden" name="deploymentId" data-ls-bind="{{deployment.$id}}" />
2020-07-19 09:49:15 +12:00
2020-07-20 02:42:46 +12:00
&nbsp; | &nbsp;<button type="submit" class="link text-danger text-size-small">Delete</button>
2020-07-19 09:49:15 +12:00
</form>
</div>
2020-05-13 10:00:48 +12:00
</li>
</ul>
</div>
</div>
</div>
<div class="pull-start">
2022-03-01 00:50:27 +13:00
<button data-ls-ui-trigger="create-deployment">Create Deployment</button>
2020-05-13 10:00:48 +12:00
</div>
<div class="pull-end paging">
<form
2022-01-25 13:36:33 +13:00
data-service="functions.listDeployments"
2020-05-13 10:00:48 +12:00
data-event="submit"
data-param-function-id="{{router.params.id}}"
2020-05-13 10:00:48 +12:00
data-param-search="{{router.params.search}}"
data-param-limit="<?php echo APP_PAGING_LIMIT; ?>"
data-param-order-type="DESC"
data-scope="sdk"
2022-01-25 13:36:33 +13:00
data-name="project-function-deployments"
2020-05-13 10:00:48 +12:00
data-success="state"
data-success-param-state-keys="search,offset">
2022-02-28 22:26:55 +13:00
<button name="offset" data-paging-back data-offset="{{router.params.offset}}" data-total="{{project-function-deployments.total}}" class="margin-end round small" aria-label="Back"><i class="icon-left-open"></i></button>
2020-05-13 10:00:48 +12:00
</form>
2022-02-28 22:25:38 +13:00
<span data-ls-bind="{{router.params.offset|pageCurrent}} / {{project-function-deployments.total|pageTotal}}"></span>
2020-05-13 10:00:48 +12:00
<form
2022-01-25 13:36:33 +13:00
data-service="functions.listDeployments"
2020-05-13 10:00:48 +12:00
data-event="submit"
data-param-function-id="{{router.params.id}}"
2020-05-13 10:00:48 +12:00
data-param-search="{{router.params.search}}"
data-param-limit="<?php echo APP_PAGING_LIMIT; ?>"
data-param-order-type="DESC"
data-scope="sdk"
2022-01-25 13:36:33 +13:00
data-name="project-function-deployments"
2020-05-13 10:00:48 +12:00
data-success="state"
data-success-param-state-keys="search,offset">
2022-02-28 22:26:55 +13:00
<button name="offset" data-paging-next data-offset="{{router.params.offset}}" data-total="{{project-function-deployments.total}}" class="margin-start round small" aria-label="Next"><i class="icon-right-open"></i></button>
2020-05-13 10:00:48 +12:00
</form>
</div>
</div>
<div class="col span-4 sticky-top margin-bottom">
<label>Function ID</label>
<div class="input-copy margin-bottom">
<input id="uid" type="text" autocomplete="off" placeholder="" data-ls-bind="{{project-function.$id}}" disabled data-forms-copy>
</div>
<ul class="margin-bottom-large text-fade text-size-small">
<li class="margin-bottom-small"><i class="icon-angle-circled-right margin-start-tiny margin-end-tiny"></i>
<button data-ls-ui-trigger="open-json"
class="link text-size-small"
data-analytics
data-analytics-event="click"
data-analytics-category="console"
data-analytics-label="View as JSON (Function)">
View as JSON
</button>
</li>
<li class="margin-bottom-small"><i class="icon-angle-circled-right margin-start-tiny margin-end-tiny"></i> Last Updated: <span data-ls-bind="{{project-function.$updatedAt|dateText}}"></span></li>
<li class="margin-bottom-small"><i class="icon-angle-circled-right margin-start-tiny margin-end-tiny"></i> Created: <span data-ls-bind="{{project-function.$createdAt|dateText}}"></span></li>
2020-05-13 10:00:48 +12:00
</ul>
<form name="functions.delete" class="margin-bottom"
2021-01-18 19:29:26 +13:00
data-analytics
data-analytics-activity
2020-05-13 10:00:48 +12:00
data-analytics-event="submit"
data-analytics-category="console"
data-analytics-label="Delete Function"
data-service="functions.delete"
data-event="submit"
data-param-function-id="{{router.params.id}}"
data-confirm="Are you sure you want to delete this function?"
data-success="alert,trigger,redirect"
data-success-param-alert-text="Function deleted successfully"
data-success-param-trigger-events="functions.delete"
data-success-param-redirect-url="/console/functions?project={{router.params.project}}"
data-failure="alert"
data-failure-param-alert-text="Failed to delete function"
data-failure-param-alert-classname="error">
<button type="submit" class="danger fill">Delete Function</button>
</form>
</div>
</div>
2020-05-11 16:39:00 +12:00
</li>
<?php if ($usageStatsEnabled): ?>
2020-10-31 08:53:27 +13:00
<li data-state="/console/functions/function/monitors?id={{router.params.id}}&project={{router.params.project}}">
2020-10-31 08:53:27 +13:00
<form class="pull-end margin-start-small margin-top-small" data-ls-if="{{usage.range}} !== '90d'"
2022-07-18 18:30:51 +12:00
data-service="functions.getFunctionUsage"
2020-10-31 08:53:27 +13:00
data-event="submit"
data-name="usage"
data-param-function-id="{{router.params.id}}"
data-param-range="90d">
<button class="tick">90d</button>
</form>
<button class="tick pull-end margin-start-small margin-top-small" data-ls-if="{{usage.range}} === '90d'" disabled>90d</button>
<form class="pull-end margin-start-small margin-top-small" data-ls-if="{{usage.range}} !== '30d'"
2022-07-18 18:30:51 +12:00
data-service="functions.getFunctionUsage"
2020-10-31 08:53:27 +13:00
data-event="submit"
data-name="usage"
2022-07-18 18:30:51 +12:00
data-param-range="30d"
2020-10-31 08:53:27 +13:00
data-param-function-id="{{router.params.id}}">
<button class="tick">30d</button>
</form>
<button class="tick pull-end margin-start-small margin-top-small" data-ls-if="{{usage.range}} === '30d'" disabled>30d</button>
<form class="pull-end margin-start-small margin-top-small" data-ls-if="{{usage.range}} !== '24h'"
2022-07-18 18:30:51 +12:00
data-service="functions.getFunctionUsage"
2020-10-31 08:53:27 +13:00
data-event="submit"
data-name="usage"
data-param-function-id="{{router.params.id}}"
data-param-range="24h">
<button class="tick">24h</button>
</form>
<button class="tick pull-end margin-start-small margin-top-small" data-ls-if="{{usage.range}} === '24h'" disabled>24h</button>
<h2>Monitors</h2>
<div
2022-07-18 18:30:51 +12:00
data-service="functions.getFunctionUsage"
2020-10-31 08:53:27 +13:00
data-event="load"
data-name="usage"
data-param-function-id="{{router.params.id}}">
<div class="box margin-bottom-small">
<div class="margin-start-negative-small margin-end-negative-small margin-top-negative-small margin-bottom-negative-small">
2021-11-25 23:54:02 +13:00
<div class="chart background-image-no border-no margin-bottom-no">
2021-11-25 22:07:34 +13:00
<input type="hidden" data-ls-bind="{{usage}}" data-forms-chart="Executions=functionsExecutions" data-height="140" data-show-y-axis="true" />
2020-10-31 08:53:27 +13:00
</div>
</div>
</div>
<ul class="chart-notes margin-bottom-large">
2021-10-27 02:19:28 +13:00
<li>Executions <span data-ls-bind="({{usage.functionsExecutions|statsGetLast|statsTotal}})"></span></li>
2020-10-31 08:53:27 +13:00
</ul>
<div class="box margin-bottom-small">
<div class="margin-start-negative-small margin-end-negative-small margin-top-negative-small margin-bottom-negative-small">
2021-11-25 23:54:02 +13:00
<div class="chart background-image-no border-no margin-bottom-no">
2021-12-21 04:52:24 +13:00
<input type="hidden" data-ls-bind="{{usage}}" data-forms-chart="CPU Time (milliseconds)=functionsCompute" data-colors="orange" data-height="140" data-show-y-axis="true" />
2020-10-31 08:53:27 +13:00
</div>
</div>
</div>
<ul class="chart-notes margin-bottom-large">
2021-10-27 02:19:28 +13:00
<li class="orange">CPU Time <span data-ls-bind="({{usage.functionsCompute|statsGetLast|seconds2hum}})"></span></li>
2020-10-31 08:53:27 +13:00
</ul>
2020-06-14 08:26:45 +12:00
2020-10-31 08:53:27 +13:00
<div class="box margin-bottom-small">
<div class="margin-start-negative-small margin-end-negative-small margin-top-negative-small margin-bottom-negative-small">
2021-11-25 23:54:02 +13:00
<div class="chart background-image-no border-no margin-bottom-no">
2021-11-25 22:07:34 +13:00
<input type="hidden" data-ls-bind="{{usage}}" data-forms-chart="Failures=functionsFailures" data-colors="red" data-height="140" data-show-y-axis="true" />
2020-10-31 08:53:27 +13:00
</div>
2020-06-14 08:26:45 +12:00
</div>
</div>
2020-10-31 08:53:27 +13:00
<ul class="chart-notes margin-bottom-large">
2021-10-27 02:19:28 +13:00
<li class="red">Errors <span data-ls-bind="({{usage.functionsFailures|statsGetLast|statsTotal}})"></span></li>
2020-10-31 08:53:27 +13:00
</ul>
2020-06-14 08:26:45 +12:00
</div>
2020-10-31 08:53:27 +13:00
</li>
<?php endif;?>
2020-10-31 08:53:27 +13:00
<li data-state="/console/functions/function/logs?id={{router.params.id}}&project={{router.params.project}}">
2020-06-14 08:26:45 +12:00
2022-02-28 22:25:38 +13:00
<div class="text-fade text-size-small pull-end margin-top" data-ls-bind="{{project-function-executions.total}} executions found"></div>
2020-06-14 08:26:45 +12:00
2020-10-31 08:53:27 +13:00
<h2>Logs</h2>
2020-06-14 08:26:45 +12:00
2020-07-17 20:14:16 +12:00
<div
2020-07-17 09:51:26 +12:00
data-service="functions.listExecutions"
data-scope="sdk"
data-event="load,functions.createExecution"
data-name="project-function-executions"
data-param-function-id="{{router.params.id}}"
data-param-limit="<?php echo APP_PAGING_LIMIT; ?>"
data-param-offset=""
2020-07-17 09:51:26 +12:00
data-param-order-type="DESC"
data-success="trigger"
data-success-param-trigger-events="functions.listExecutions">
2020-07-17 20:14:16 +12:00
<div data-ls-if="0 < {{project-function-executions.executions.length}} && undefined !== {{project-function-executions.executions}}">
<div class="box margin-bottom">
<table class="vertical small">
<thead>
<tr>
<th width="30"></th>
2020-10-31 08:53:27 +13:00
<th width="160">Created</th>
<th width="150">Status</th>
2020-10-31 08:53:27 +13:00
<th width="120">Trigger</th>
<th width="80">Runtime</th>
<th></th>
</tr>
</thead>
<tbody data-ls-loop="project-function-executions.executions" data-ls-as="execution">
<tr>
<td data-title="">
<i class="dot danger" data-ls-if="{{execution.status}} === 'failed'"></i>
<i class="dot info" data-ls-if="{{execution.status}} === 'waiting'"></i>
<i class="dot info" data-ls-if="{{execution.status}} === 'processing'"></i>
<i class="dot success" data-ls-if="{{execution.status}} === 'completed'"></i>
</td>
2020-10-31 08:53:27 +13:00
<td data-title="Date: ">
<span data-ls-bind="{{execution.$createdAt|dateTime}}"></span>
2020-10-31 08:53:27 +13:00
</td>
<td data-title="Status: ">
<span data-ls-bind="{{execution.status}}"></span>
<span class="text-fade text-size-small" data-ls-if="{{execution.statusCode}} < 200 && {{execution.statusCode}} >= 300" data-ls-bind=" exit code: {{execution.statusCode}}"></span>
</td>
2020-10-31 08:53:27 +13:00
<td data-title="Trigger: ">
<span data-ls-bind="{{execution.trigger}}"></span>
</td>
<td data-title="Runtime: ">
<span data-ls-if="{{execution.status}} === 'completed' || {{execution.status}} === 'failed'" data-ls-bind="{{execution.time|seconds2hum}}"></span>
<span data-ls-if="{{execution.status}} === 'waiting' || {{execution.status}} === 'processing'">-</span>
</td>
2020-10-31 08:53:27 +13:00
<td data-title="">
<div data-ls-if="{{execution.status}} === 'completed' || {{execution.status}} === 'failed'" data-title="">
<button class="desktops-only pull-end link margin-start text-danger" data-ls-ui-trigger="execution-stderr-{{execution.$id}}">Errors</button>
<button class="desktops-only pull-end link margin-start" data-ls-ui-trigger="execution-stdout-{{execution.$id}}">Output</button>
2020-10-31 08:53:27 +13:00
<button class="phones-only-inline tablets-only-inline link margin-end-small" data-ls-ui-trigger="execution-stdout-{{execution.$id}}">Output</button>
<button class="phones-only-inline tablets-only-inline link text-danger" data-ls-ui-trigger="execution-stderr-{{execution.$id}}">Errors</button>
<div data-ui-modal class="modal width-large box close" data-button-alias="none" data-open-event="execution-stdout-{{execution.$id}}">
<button type="button" class="close pull-end" data-ui-modal-close=""><i class="icon-cancel"></i></button>
<h1>STDOUT</h1>
2022-05-17 00:22:06 +12:00
<div class="margin-bottom ide" data-ls-if="({{execution.response.length}})">
<pre data-ls-bind="{{execution.response}}"></pre>
</div>
2020-07-18 18:16:34 +12:00
2022-05-17 00:22:06 +12:00
<div class="margin-bottom" data-ls-if="(!{{execution.response.length}})">
2020-10-31 08:53:27 +13:00
<p>No output was logged.</p>
</div>
</div>
2020-07-18 18:16:34 +12:00
<div data-ui-modal class="modal width-large box close" data-button-alias="none" data-open-event="execution-stderr-{{execution.$id}}">
<button type="button" class="close pull-end" data-ui-modal-close=""><i class="icon-cancel"></i></button>
2020-07-18 18:16:34 +12:00
<h1>STDERR</h1>
2020-07-18 18:16:34 +12:00
2020-10-31 08:53:27 +13:00
<div class="margin-bottom ide" data-ls-if="({{execution.stderr.length}})">
<pre data-ls-bind="{{execution.stderr}}"></pre>
<!-- <input type="hidden" data-ls-bind="{{execution.stderr}}" data-forms-code="bash" /> -->
</div>
<div class="margin-bottom" data-ls-if="(!{{execution.stderr.length}})">
<p>No errors were logged.</p>
</div>
2020-07-18 18:16:34 +12:00
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="text-align-center paging">
<form
data-service="functions.listExecutions"
data-event="submit"
data-param-function-id="{{router.params.id}}"
data-param-search="{{router.params.search}}"
data-param-limit="<?php echo APP_PAGING_LIMIT; ?>"
data-param-order-type="DESC"
data-scope="sdk"
data-name="project-function-executions"
data-success="state"
data-success-param-state-keys="search,offset">
2022-02-28 22:26:55 +13:00
<button name="offset" data-paging-back data-offset="{{router.params.offset}}" data-total="{{project-function-executions.total}}" class="margin-end round small" aria-label="Back"><i class="icon-left-open"></i></button>
</form>
2022-02-28 22:25:38 +13:00
<span data-ls-bind="{{router.params.offset|pageCurrent}} / {{project-function-executions.total|pageTotal}}"></span>
<form
data-service="functions.listExecutions"
data-event="submit"
data-param-function-id="{{router.params.id}}"
data-param-search="{{router.params.search}}"
data-param-limit="<?php echo APP_PAGING_LIMIT; ?>"
data-param-order-type="DESC"
data-scope="sdk"
data-name="project-function-executions"
data-success="state"
data-success-param-state-keys="search,offset">
2022-02-28 22:26:55 +13:00
<button name="offset" data-paging-next data-offset="{{router.params.offset}}" data-total="{{project-function-executions.total}}" class="margin-start round small" aria-label="Next"><i class="icon-right-open"></i></button>
</form>
</div>
2020-07-17 20:14:16 +12:00
</div>
<div data-ls-if="(!{{project-function-executions.executions.length}})" class="box dashboard margin-bottom">
<div class="margin-bottom-small margin-top-small margin-end margin-start">
<h3 class="margin-bottom-small text-bold">No Logs Founds</h3>
<p class="margin-bottom-no">Execute your function to view execution logs.</p>
</div>
</div>
2020-06-14 08:26:45 +12:00
</div>
</li>
2022-05-09 01:09:08 +12:00
<li data-state="/console/functions/function/settings?id={{router.params.id}}&project={{router.params.project}}" x-data="events">
2020-05-11 16:39:00 +12:00
<h2>Settings</h2>
<div class="row responsive margin-top-negative">
2020-05-13 10:00:48 +12:00
<div class="col span-8 margin-bottom">
<label>&nbsp;</label>
2020-05-11 16:39:00 +12:00
<form
2021-01-18 19:29:26 +13:00
data-analytics
data-analytics-activity
2020-05-11 16:39:00 +12:00
data-analytics-event="submit"
data-analytics-category="console"
data-analytics-label="Update Function"
data-service="functions.update"
data-scope="sdk"
data-event="submit"
data-param-function-id="{{router.params.id}}"
data-success="alert,trigger"
data-success-param-alert-text="Updated function successfully"
data-success-param-trigger-events="functions.update"
data-failure="alert"
data-failure-param-alert-text="Failed to update function"
data-failure-param-alert-classname="error">
<div class="box">
2020-07-17 20:14:16 +12:00
<section class="margin-bottom-large">
<label for="name">Name</label>
<input name="name" id="function-name" type="text" autocomplete="off" data-ls-bind="{{project-function.name}}" data-forms-text-direction required placeholder="Function Name" maxlength="128" />
2021-02-02 11:34:54 +13:00
<label for="execute">Execute Access <span class="tooltip small" data-tooltip="Choose who can execute this function using the client API."><i class="icon-info-circled"></i></span> <span class="text-size-small">(<a data-ls-attrs="href={{env.HOME}}/docs/permissions" target="_blank" rel="noopener">Learn more</a>)</span></label>
2021-08-08 00:49:36 +12:00
<input type="hidden" id="execute" name="execute" data-forms-tags data-cast-to="json" data-ls-bind="{{project-function.execute}}" placeholder="User ID, Team ID or Role" />
2021-08-09 17:47:05 +12:00
<div class="text-fade text-size-xs margin-top-negative-small margin-bottom">Add 'role:all' for wildcard access</div>
2021-02-02 11:34:54 +13:00
2020-07-17 20:14:16 +12:00
<label for="timeout">Timeout (seconds) <span class="tooltip small" data-tooltip="Limit the execution time of your function."><i class="icon-info-circled"></i></span></label>
2021-02-02 11:34:54 +13:00
<input name="timeout" id="function-timeout" type="number" autocomplete="off" data-ls-bind="{{project-function.timeout}}" min="1" max="<?php echo $this->escape($timeout); ?>" data-cast-to="integer" />
2020-07-20 02:42:46 +12:00
<div class="text-size-small text-fade margin-bottom margin-top-negative-small">Max value is <?php echo $this->escape(number_format($timeout)); ?> seconds (<?php echo $this->escape((int) ($timeout / 60)); ?> minutes)</div>
2020-07-17 20:14:16 +12:00
</section>
2022-05-09 01:09:08 +12:00
<section class="margin-bottom-small" data-ls-attrs="x-init=load({{project-function.events}})">
2022-05-13 22:49:37 +12:00
<label class="margin-bottom-small">Events <span class="tooltip small" data-tooltip="Set events that will trigger your function."><i class="icon-info-circled"></i></span></label>
<div>
<template x-for="event in Array.from(events)">
<div class="row events responsive thin margin-bottom-small">
<div class="col span-12 margin-bottom-small">
<span class="text" x-text="event"></span>
<span class="action" @click="removeEvent(event)">
<i class="icon-trash"></i>
</span>
</div>
<input name="events" data-cast-to="array" type="hidden" :value="event"></input>
</div>
</template>
2022-05-09 01:09:08 +12:00
</div>
2022-05-13 22:49:37 +12:00
<button class="margin-end margin-bottom-small reverse" type="button" @click="showModal($refs.modal_function)">Add Event</button>
</section>
2020-07-17 20:14:16 +12:00
2021-02-02 11:34:54 +13:00
<label for="schedule">Schedule (CRON Syntax) <span class="tooltip small" data-tooltip="Set a CRON schedule to trigger this function."><i class="icon-info-circled"></i></span></label>
<input type="text" id="function-schedule" class="full-width" name="schedule" autocomplete="off" data-ls-bind="{{project-function.schedule}}" placeholder="* * * * *" />
<div class="text-size-small text-fade margin-bottom margin-top-negative-small">Leave blank for no schedule</div>
2020-07-17 20:14:16 +12:00
2022-05-13 22:49:37 +12:00
<label class="margin-bottom-small">Variables <span class="tooltip small" data-tooltip="Set variables or secret keys that will be passed as env vars to your function at runtime."><i class="icon-info-circled"></i></span></label>
2020-05-11 16:39:00 +12:00
<div data-ls-if="(!{{project-function.vars.length}})">
<fieldset name="vars" data-cast-to="object">
2021-01-19 06:12:02 +13:00
<div data-ls-loop="project-function.vars" data-ls-as="var" id="project-vars" style="visibility: visible;">
2020-05-11 16:39:00 +12:00
<div class="margin-bottom-small">
<div data-forms-remove class="row thin">
<div class="col span-10">
2020-05-13 10:00:48 +12:00
<input type="hidden" data-forms-key-value data-ls-attrs="name={{$index}}" data-ls-bind="{{var}}" />
2020-05-11 16:39:00 +12:00
</div>
<div class="col span-2">
2022-05-13 22:49:37 +12:00
<button type="button" data-remove class="close pull-end is-margin-top-10"><i class="icon-trash"></i></button>
2020-05-11 16:39:00 +12:00
</div>
</div>
</div>
</div>
2020-05-14 08:59:02 +12:00
<div data-forms-clone="" data-target="project-vars" data-label="Add Variable" data-first="0">
2020-05-11 16:39:00 +12:00
<div class="margin-bottom-small">
2022-01-06 03:20:36 +13:00
<div data-forms-remove class="row thin">
2020-05-11 16:39:00 +12:00
<div class="col span-10">
2022-01-06 03:20:36 +13:00
<input type="hidden" data-ls-attrs="data-forms-key-value"/>
2020-05-11 16:39:00 +12:00
</div>
<div class="col span-2">
2022-05-13 22:49:37 +12:00
<button type="button" data-remove class="close pull-end is-margin-top-10"><i class="icon-trash"></i></button>
2020-05-11 16:39:00 +12:00
</div>
</div>
</div>
</div>
</fieldset>
</div>
2022-05-13 22:49:37 +12:00
<hr class="margin-bottom margin-top-small" />
2020-05-11 16:39:00 +12:00
<button>Update</button>
</div>
</form>
</div>
<div class="col span-4 sticky-top">
<label>Function ID</label>
<div class="input-copy margin-bottom">
<input id="uid" type="text" autocomplete="off" placeholder="" data-ls-bind="{{project-function.$id}}" disabled data-forms-copy>
</div>
<ul class="margin-bottom-large text-fade text-size-small">
<li class="margin-bottom-small"><i class="icon-angle-circled-right margin-start-tiny margin-end-tiny"></i>
<button data-ls-ui-trigger="open-json"
class="link text-size-small"
data-analytics
data-analytics-event="click"
data-analytics-category="console"
data-analytics-label="View as JSON (Function)">
View as JSON
</button>
</li>
<li class="margin-bottom-small"><i class="icon-angle-circled-right margin-start-tiny margin-end-tiny"></i> Last Updated: <span data-ls-bind="{{project-function.$updatedAt|dateText}}"></span></li>
<li class="margin-bottom-small"><i class="icon-angle-circled-right margin-start-tiny margin-end-tiny"></i> Created: <span data-ls-bind="{{project-function.$createdAt|dateText}}"></span></li>
2020-05-11 16:39:00 +12:00
</ul>
<form name="functions.delete" class="margin-bottom"
2021-01-18 19:29:26 +13:00
data-analytics
data-analytics-activity
2020-05-11 16:39:00 +12:00
data-analytics-event="submit"
data-analytics-category="console"
data-analytics-label="Delete Function"
data-service="functions.delete"
data-event="submit"
data-param-function-id="{{router.params.id}}"
data-confirm="Are you sure you want to delete this function?"
data-success="alert,trigger,redirect"
data-success-param-alert-text="Function deleted successfully"
data-success-param-trigger-events="functions.delete"
data-success-param-redirect-url="/console/functions?project={{router.params.project}}"
data-failure="alert"
data-failure-param-alert-text="Failed to delete function"
data-failure-param-alert-classname="error">
<button type="submit" class="danger fill">Delete Function</button>
</form>
</div>
</div>
2022-05-13 22:49:37 +12:00
<div x-ref="modal_function" data-ui-modal class="modal box close width-small height-small" data-button-hide="on">
2022-05-09 01:09:08 +12:00
<div>
2022-05-13 22:49:37 +12:00
<form @submit.prevent="addEvent($refs.modal_function)">
<label for="event">
Event
</label>
<select id="event" x-model="selected" @change="setEvent()">
2022-05-09 01:09:08 +12:00
<option value="" selected>Select event</option>
<?php foreach ($patterns as $event) : ?>
<option value="<?php echo $event; ?>"><?php echo $event; ?></option>
<?php endforeach; ?>
</select>
<div x-show="hasResource">
2022-05-17 00:51:03 +12:00
<label x-text="resourceName + ' (optional)'" for="resource"></label>
2022-05-13 22:49:37 +12:00
<input id="resource" type="text" :placeholder="resourceName" x-model="resource" maxlength="36" pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]{0,35}$">
2022-05-11 01:21:57 +12:00
<div class="text-fade text-size-xs margin-top-negative-small margin-bottom">Leave empty for wildcard</div>
2022-05-09 01:09:08 +12:00
</div>
<div x-show="hasSubResource">
2022-05-17 00:51:03 +12:00
<label x-text="subResourceName + ' (optional)'" for="subResource"></label>
2022-05-13 22:49:37 +12:00
<input id="subResource" type="text" :placeholder="subResourceName" x-model="subResource" maxlength="36" pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]{0,35}$">
2022-05-11 01:21:57 +12:00
<div class="text-fade text-size-xs margin-top-negative-small margin-bottom">Leave empty for wildcard</div>
2022-05-09 01:09:08 +12:00
</div>
2022-06-28 05:12:40 +12:00
<div x-show="hasSubSubResource">
<label x-text="subSubResourceName + ' (optional)'" for="subSubResource"></label>
<input id="subSubResource" type="text" :placeholder="subSubResourceName" x-model="subSubResource" maxlength="36" pattern="^[a-zA-Z0-9][a-zA-Z0-9_-]{0,35}$">
<div class="text-fade text-size-xs margin-top-negative-small margin-bottom">Leave empty for wildcard</div>
</div>
2022-05-09 01:09:08 +12:00
<div x-show="hasAttribute">
2022-05-13 22:49:37 +12:00
<label for="attribute">Add Attribute (optional)</label>
<select id="attribute" x-model="attribute">
2022-05-09 01:09:08 +12:00
<option value="*">Select attribute</option>
<template x-for="attr in attributes">
<option :value="attr" x-text="attr"></option>
</template>
</select>
</div>
<button x-show="selected" type="submit">Add Event</button> &nbsp; <button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
</form>
</div>
</div>
2020-05-11 16:39:00 +12:00
</li>
</ul>
</div>
2021-02-03 04:53:09 +13:00
</div>
2021-03-12 01:39:06 +13:00
<div data-ui-modal class="modal close box sticky-footer" data-button-hide="on" data-open-event="execute-now">
<button type="button" class="close pull-end" data-ui-modal-close=""><i class="icon-cancel"></i></button>
<h1 class="margin-bottom">Execute Function</h1>
2022-01-25 13:36:33 +13:00
<form data-ls-if="{{project-function.deployment}} !== ''" name="functions.createExecution" class="margin-top"
2021-03-12 01:39:06 +13:00
data-analytics
data-analytics-activity
data-analytics-event="submit"
data-analytics-category="console"
data-analytics-label="Create Function Execution"
data-service="functions.createExecution"
data-event="submit"
data-param-function-id="{{router.params.id}}"
data-success="alert,trigger"
data-success-param-alert-text="Function executed successfully"
data-success-param-trigger-events="functions.createExecution"
data-failure="alert"
data-failure-param-alert-text="Failed to execute function"
data-failure-param-alert-classname="error">
2021-03-13 08:40:11 +13:00
<label for="execution-data">Custom Data</label>
<textarea id="execution-data" name="data" autocomplete="off" class="margin-bottom" placeholder="Data string (optional)"></textarea>
2021-03-12 01:39:06 +13:00
2021-03-12 02:02:18 +13:00
<button type="submit" style="vertical-align: top;">Execute Now</button>
2021-03-12 01:39:06 +13:00
</form>
</div>
2022-03-01 00:50:27 +13:00
<div data-ui-modal class="modal close box sticky-footer" data-button-hide="on" data-open-event="create-deployment">
2021-02-03 04:53:09 +13:00
<button type="button" class="close pull-end" data-ui-modal-close=""><i class="icon-cancel"></i></button>
<h1 class="margin-bottom-xl">Create a New Deployment</h1>
2021-02-03 04:53:09 +13:00
<ul class="phases padding margin-top-negative-small" data-ui-phases>
<li>
<h2 style="display: none">CLI</h2>
2021-02-03 20:27:55 +13:00
<p><b>Unix</b></p>
2021-02-06 01:56:36 +13:00
<div class="margin-bottom">
2022-01-25 13:36:33 +13:00
<textarea type="hidden" data-ls-bind="appwrite functions createDeployment \
2021-02-06 01:56:36 +13:00
--functionId={{project-function.$id}} \
2022-03-01 21:59:48 +13:00
--activate=true \
2021-09-01 21:48:56 +12:00
--entrypoint='scriptFile' \
2022-06-02 07:43:46 +12:00
--code='.'" data-forms-code="bash" data-lang="bash" data-lang-label="Bash"></textarea>
2021-02-03 20:27:55 +13:00
</div>
<p><b>PowerShell</b></p>
2021-02-06 01:56:36 +13:00
<div class="margin-bottom">
2022-01-25 13:36:33 +13:00
<textarea type="hidden" data-ls-bind="appwrite functions createDeployment `
--functionId={{project-function.$id}} `
2022-03-01 21:59:48 +13:00
--activate=true `
2021-09-01 21:48:56 +12:00
--entrypoint='scriptFile' `
2022-06-02 07:43:46 +12:00
--code='.'" data-forms-code="powershell" data-lang="powershell" data-lang-label="PowerShell"></textarea>
2021-02-03 20:27:55 +13:00
</div>
2022-01-25 13:36:33 +13:00
<p>Learn more about <a href="https://appwrite.io/docs/server/functions#functionsCreateDeployment" target="_blank">creating deployments</a>, installing and using the <a href="https://appwrite.io/docs/command-line" target="_blank">Appwrite CLI</a>.</p>
2021-02-03 04:53:09 +13:00
</li>
<li>
<h2 style="display: none">Manual</h2>
<form class="margin-top-negative"
data-analytics
data-analytics-activity
data-analytics-event="submit"
data-analytics-category="console"
2022-01-25 13:36:33 +13:00
data-analytics-label="Create Function Deployment"
data-service="functions.createDeployment"
2021-02-03 04:53:09 +13:00
data-scope="sdk"
data-event="submit"
data-success="alert,trigger,reset"
2022-01-25 13:36:33 +13:00
data-success-param-alert-text="Created function deployment successfully"
data-success-param-trigger-events="functions.createDeployment"
2021-02-03 04:53:09 +13:00
data-failure="alert"
2022-01-25 13:36:33 +13:00
data-failure-param-alert-text="Failed to create function deployment"
2021-02-03 04:53:09 +13:00
data-failure-param-alert-classname="error">
2021-02-03 04:53:09 +13:00
<input type="hidden" name="functionId" data-ls-bind="{{router.params.id}}" />
2022-01-25 13:36:33 +13:00
<label for="deployment-entrypoint">Entrypoint</label>
<input type="text" id="deployment-entrypoint" name="entrypoint" required autocomplete="off" class="margin-bottom" placeholder="main.js" />
2021-02-03 04:53:09 +13:00
2022-01-25 13:36:33 +13:00
<label for="deployment-code">Gzipped Code (tar.gz file)</label>
<input type="file" name="code" id="deployment-code" size="1" required accept="application/x-gzip,.gz">
<div class="text-fade text-size-xs margin-top-negative-small margin-bottom">(Max file size allowed: <?php echo $fileLimitHuman; ?>)</div>
2022-02-21 11:21:36 +13:00
<label for="deployment-activate" class="margin-bottom-large"><input type="checkbox" class="margin-start-small" id="deployment-activate" name="activate" /> Activate Deployment after build</label>
2021-02-03 04:53:09 +13:00
<footer>
<button type="submit">Create</button> &nbsp; <button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
</footer>
</form>
</li>
</ul>
2021-02-10 05:58:31 +13:00
</div>