Class: Appwrite::Sites

Inherits:
Service show all
Defined in:
lib/appwrite/services/sites.rb

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Sites

Returns a new instance of Sites.



6
7
8
# File 'lib/appwrite/services/sites.rb', line 6

def initialize(client)
    @client = client
end

Instance Method Details

#create(site_id:, name:, framework:, build_runtime:, enabled: nil, logging: nil, timeout: nil, install_command: nil, build_command: nil, output_directory: nil, adapter: nil, installation_id: nil, fallback_file: nil, provider_repository_id: nil, provider_branch: nil, provider_silent_mode: nil, provider_root_directory: nil, specification: nil) ⇒ Site

Create a new site.

Parameters:

  • site_id (String)

    Site ID. Choose a custom ID or generate a random ID with ‘ID.unique()`. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can’t start with a special char. Max length is 36 chars.

  • name (String)

    Site name. Max length: 128 chars.

  • framework (Framework)

    Sites framework.

  • build_runtime (BuildRuntime)

    Runtime to use during build step.

  • []

    enabled Is site enabled? When set to ‘disabled’, users cannot access the site but Server SDKs with and API key can still access the site. No data is lost when this is toggled.

  • []

    logging When disabled, request logs will exclude logs and errors, and site responses will be slightly faster.

  • timeout (Integer) (defaults to: nil)

    Maximum request time in seconds.

  • install_command (String) (defaults to: nil)

    Install Command.

  • build_command (String) (defaults to: nil)

    Build Command.

  • output_directory (String) (defaults to: nil)

    Output Directory for site.

  • adapter (Adapter) (defaults to: nil)

    Framework adapter defining rendering strategy. Allowed values are: static, ssr

  • installation_id (String) (defaults to: nil)

    Appwrite Installation ID for VCS (Version Control System) deployment.

  • fallback_file (String) (defaults to: nil)

    Fallback file for single page application sites.

  • provider_repository_id (String) (defaults to: nil)

    Repository ID of the repo linked to the site.

  • provider_branch (String) (defaults to: nil)

    Production branch for the repo linked to the site.

  • []

    provider_silent_mode Is the VCS (Version Control System) connection in silent mode for the repo linked to the site? In silent mode, comments will not be made on commits and pull requests.

  • provider_root_directory (String) (defaults to: nil)

    Path to site code in the linked repo.

  • specification (String) (defaults to: nil)

    Framework specification for the site and builds.

Returns:

  • (Site)


60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/appwrite/services/sites.rb', line 60

def create(site_id:, name:, framework:, build_runtime:, enabled: nil, logging: nil, timeout: nil, install_command: nil, build_command: nil, output_directory: nil, adapter: nil, installation_id: nil, fallback_file: nil, provider_repository_id: nil, provider_branch: nil, provider_silent_mode: nil, provider_root_directory: nil, specification: nil)
    api_path = '/sites'

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    if framework.nil?
      raise Appwrite::Exception.new('Missing required parameter: "framework"')
    end

    if build_runtime.nil?
      raise Appwrite::Exception.new('Missing required parameter: "buildRuntime"')
    end

    api_params = {
        siteId: site_id,
        name: name,
        framework: framework,
        enabled: enabled,
        logging: logging,
        timeout: timeout,
        installCommand: install_command,
        buildCommand: build_command,
        outputDirectory: output_directory,
        buildRuntime: build_runtime,
        adapter: adapter,
        installationId: installation_id,
        fallbackFile: fallback_file,
        providerRepositoryId: provider_repository_id,
        providerBranch: provider_branch,
        providerSilentMode: provider_silent_mode,
        providerRootDirectory: provider_root_directory,
        specification: specification,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Site
    )
end

#create_deployment(site_id:, code:, activate:, install_command: nil, build_command: nil, output_directory: nil, on_progress: nil) ⇒ Deployment

Create a new site code deployment. Use this endpoint to upload a new version of your site code. To activate your newly uploaded code, you’ll need to update the function’s deployment to use your new deployment ID.

Parameters:

  • site_id (String)

    Site ID.

  • code (file)

    Gzip file with your code package. When used with the Appwrite CLI, pass the path to your code directory, and the CLI will automatically package your code. Use a path that is within the current directory.

  • []

    activate Automatically activate the deployment when it is finished building.

  • install_command (String) (defaults to: nil)

    Install Commands.

  • build_command (String) (defaults to: nil)

    Build Commands.

  • output_directory (String) (defaults to: nil)

    Output Directory.

Returns:

  • (Deployment)


374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
# File 'lib/appwrite/services/sites.rb', line 374

def create_deployment(site_id:, code:, activate:, install_command: nil, build_command: nil, output_directory: nil, on_progress: nil)
    api_path = '/sites/{siteId}/deployments'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if code.nil?
      raise Appwrite::Exception.new('Missing required parameter: "code"')
    end

    if activate.nil?
      raise Appwrite::Exception.new('Missing required parameter: "activate"')
    end

    api_params = {
        installCommand: install_command,
        buildCommand: build_command,
        outputDirectory: output_directory,
        code: code,
        activate: activate,
    }
    
    api_headers = {
        "content-type": 'multipart/form-data',
    }

    id_param_name = nil
    param_name = 'code'

    @client.chunked_upload(
        path: api_path,
        headers: api_headers,
        params: api_params,
        param_name: param_name,
        id_param_name: id_param_name,
        on_progress: on_progress,
        response_type: Models::Deployment
    )
end

#create_duplicate_deployment(site_id:, deployment_id:) ⇒ Deployment

Create a new build for an existing site deployment. This endpoint allows you to rebuild a deployment with the updated site configuration, including its commands and output directory if they have been modified. The build process will be queued and executed asynchronously. The original deployment’s code will be preserved and used for the new build.

Parameters:

  • site_id (String)

    Site ID.

  • deployment_id (String)

    Deployment ID.

Returns:

  • (Deployment)


427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
# File 'lib/appwrite/services/sites.rb', line 427

def create_duplicate_deployment(site_id:, deployment_id:)
    api_path = '/sites/{siteId}/deployments/duplicate'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if deployment_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "deploymentId"')
    end

    api_params = {
        deploymentId: deployment_id,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Deployment
    )
end

#create_template_deployment(site_id:, repository:, owner:, root_directory:, version:, activate: nil) ⇒ Deployment

Create a deployment based on a template.

Use this endpoint with combination of [listTemplates](appwrite.io/docs/server/sites#listTemplates) to find the template details.

Parameters:

  • site_id (String)

    Site ID.

  • repository (String)

    Repository name of the template.

  • owner (String)

    The name of the owner of the template.

  • root_directory (String)

    Path to site code in the template repo.

  • version (String)

    Version (tag) for the repo linked to the site template.

  • []

    activate Automatically activate the deployment when it is finished building.

Returns:

  • (Deployment)


471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
# File 'lib/appwrite/services/sites.rb', line 471

def create_template_deployment(site_id:, repository:, owner:, root_directory:, version:, activate: nil)
    api_path = '/sites/{siteId}/deployments/template'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if repository.nil?
      raise Appwrite::Exception.new('Missing required parameter: "repository"')
    end

    if owner.nil?
      raise Appwrite::Exception.new('Missing required parameter: "owner"')
    end

    if root_directory.nil?
      raise Appwrite::Exception.new('Missing required parameter: "rootDirectory"')
    end

    if version.nil?
      raise Appwrite::Exception.new('Missing required parameter: "version"')
    end

    api_params = {
        repository: repository,
        owner: owner,
        rootDirectory: root_directory,
        version: version,
        activate: activate,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Deployment
    )
end

#create_variable(site_id:, key:, value:, secret: nil) ⇒ Variable

Create a new site variable. These variables can be accessed during build and runtime (server-side rendering) as environment variables.

Parameters:

  • site_id (String)

    Site unique ID.

  • key (String)

    Variable key. Max length: 255 chars.

  • value (String)

    Variable value. Max length: 8192 chars.

  • []

    secret Secret variables can be updated or deleted, but only sites can read them during build and runtime.

Returns:

  • (Variable)


851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
# File 'lib/appwrite/services/sites.rb', line 851

def create_variable(site_id:, key:, value:, secret: nil)
    api_path = '/sites/{siteId}/variables'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if key.nil?
      raise Appwrite::Exception.new('Missing required parameter: "key"')
    end

    if value.nil?
      raise Appwrite::Exception.new('Missing required parameter: "value"')
    end

    api_params = {
        key: key,
        value: value,
        secret: secret,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Variable
    )
end

#create_vcs_deployment(site_id:, type:, reference:, activate: nil) ⇒ Deployment

Create a deployment when a site is connected to VCS.

This endpoint lets you create deployment from a branch, commit, or a tag.

Parameters:

  • site_id (String)

    Site ID.

  • type (VCSDeploymentType)

    Type of reference passed. Allowed values are: branch, commit

  • reference (String)

    VCS reference to create deployment from. Depending on type this can be: branch name, commit hash

  • []

    activate Automatically activate the deployment when it is finished building.

Returns:

  • (Deployment)


527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
# File 'lib/appwrite/services/sites.rb', line 527

def create_vcs_deployment(site_id:, type:, reference:, activate: nil)
    api_path = '/sites/{siteId}/deployments/vcs'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if type.nil?
      raise Appwrite::Exception.new('Missing required parameter: "type"')
    end

    if reference.nil?
      raise Appwrite::Exception.new('Missing required parameter: "reference"')
    end

    api_params = {
        type: type,
        reference: reference,
        activate: activate,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'POST',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Deployment
    )
end

#delete(site_id:) ⇒ Object

Delete a site by its unique ID.

Parameters:

  • site_id (String)

    Site ID.

Returns:



267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
# File 'lib/appwrite/services/sites.rb', line 267

def delete(site_id:)
    api_path = '/sites/{siteId}'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    api_params = {
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'DELETE',
        path: api_path,
        headers: api_headers,
        params: api_params,
    )
end

#delete_deployment(site_id:, deployment_id:) ⇒ Object

Delete a site deployment by its unique ID.

Parameters:

  • site_id (String)

    Site ID.

  • deployment_id (String)

    Deployment ID.

Returns:



604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
# File 'lib/appwrite/services/sites.rb', line 604

def delete_deployment(site_id:, deployment_id:)
    api_path = '/sites/{siteId}/deployments/{deploymentId}'
        .gsub('{siteId}', site_id)
        .gsub('{deploymentId}', deployment_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if deployment_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "deploymentId"')
    end

    api_params = {
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'DELETE',
        path: api_path,
        headers: api_headers,
        params: api_params,
    )
end

#delete_log(site_id:, log_id:) ⇒ Object

Delete a site log by its unique ID.

Parameters:

  • site_id (String)

    Site ID.

  • log_id (String)

    Log ID.

Returns:



784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
# File 'lib/appwrite/services/sites.rb', line 784

def delete_log(site_id:, log_id:)
    api_path = '/sites/{siteId}/logs/{logId}'
        .gsub('{siteId}', site_id)
        .gsub('{logId}', log_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if log_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "logId"')
    end

    api_params = {
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'DELETE',
        path: api_path,
        headers: api_headers,
        params: api_params,
    )
end

#delete_variable(site_id:, variable_id:) ⇒ Object

Delete a variable by its unique ID.

Parameters:

  • site_id (String)

    Site unique ID.

  • variable_id (String)

    Variable unique ID.

Returns:



974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# File 'lib/appwrite/services/sites.rb', line 974

def delete_variable(site_id:, variable_id:)
    api_path = '/sites/{siteId}/variables/{variableId}'
        .gsub('{siteId}', site_id)
        .gsub('{variableId}', variable_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if variable_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "variableId"')
    end

    api_params = {
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'DELETE',
        path: api_path,
        headers: api_headers,
        params: api_params,
    )
end

#get(site_id:) ⇒ Site

Get a site by its unique ID.

Parameters:

  • site_id (String)

    Site ID.

Returns:

  • (Site)


166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/appwrite/services/sites.rb', line 166

def get(site_id:)
    api_path = '/sites/{siteId}'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Site
    )
end

#get_deployment(site_id:, deployment_id:) ⇒ Deployment

Get a site deployment by its unique ID.

Parameters:

  • site_id (String)

    Site ID.

  • deployment_id (String)

    Deployment ID.

Returns:

  • (Deployment)


569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
# File 'lib/appwrite/services/sites.rb', line 569

def get_deployment(site_id:, deployment_id:)
    api_path = '/sites/{siteId}/deployments/{deploymentId}'
        .gsub('{siteId}', site_id)
        .gsub('{deploymentId}', deployment_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if deployment_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "deploymentId"')
    end

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Deployment
    )
end

#get_deployment_download(site_id:, deployment_id:, type: nil) ⇒ Object

Get a site deployment content by its unique ID. The endpoint response return with a ‘Content-Disposition: attachment’ header that tells the browser to start downloading the file to user downloads directory.

Parameters:

  • site_id (String)

    Site ID.

  • deployment_id (String)

    Deployment ID.

  • type (DeploymentDownloadType) (defaults to: nil)

    Deployment file to download. Can be: “source”, “output”.

Returns:



642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
# File 'lib/appwrite/services/sites.rb', line 642

def get_deployment_download(site_id:, deployment_id:, type: nil)
    api_path = '/sites/{siteId}/deployments/{deploymentId}/download'
        .gsub('{siteId}', site_id)
        .gsub('{deploymentId}', deployment_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if deployment_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "deploymentId"')
    end

    api_params = {
        type: type,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
    )
end

#get_log(site_id:, log_id:) ⇒ Execution

Get a site request log by its unique ID.

Parameters:

  • site_id (String)

    Site ID.

  • log_id (String)

    Log ID.

Returns:

  • (Execution)


749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
# File 'lib/appwrite/services/sites.rb', line 749

def get_log(site_id:, log_id:)
    api_path = '/sites/{siteId}/logs/{logId}'
        .gsub('{siteId}', site_id)
        .gsub('{logId}', log_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if log_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "logId"')
    end

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Execution
    )
end

#get_variable(site_id:, variable_id:) ⇒ Variable

Get a variable by its unique ID.

Parameters:

  • site_id (String)

    Site unique ID.

  • variable_id (String)

    Variable unique ID.

Returns:

  • (Variable)


893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
# File 'lib/appwrite/services/sites.rb', line 893

def get_variable(site_id:, variable_id:)
    api_path = '/sites/{siteId}/variables/{variableId}'
        .gsub('{siteId}', site_id)
        .gsub('{variableId}', variable_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if variable_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "variableId"')
    end

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Variable
    )
end

#list(queries: nil, search: nil) ⇒ SiteList

Get a list of all the project’s sites. You can use the query params to filter your results.

Parameters:

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, enabled, framework, deploymentId, buildCommand, installCommand, outputDirectory, installationId

  • search (String) (defaults to: nil)

    Search term to filter your list results. Max length: 256 chars.

Returns:

  • (SiteList)


17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/appwrite/services/sites.rb', line 17

def list(queries: nil, search: nil)
    api_path = '/sites'

    api_params = {
        queries: queries,
        search: search,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::SiteList
    )
end

#list_deployments(site_id:, queries: nil, search: nil) ⇒ DeploymentList

Get a list of all the site’s code deployments. You can use the query params to filter your results.

Parameters:

  • site_id (String)

    Site ID.

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: buildSize, sourceSize, totalSize, buildDuration, status, activate, type

  • search (String) (defaults to: nil)

    Search term to filter your list results. Max length: 256 chars.

Returns:

  • (DeploymentList)


336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# File 'lib/appwrite/services/sites.rb', line 336

def list_deployments(site_id:, queries: nil, search: nil)
    api_path = '/sites/{siteId}/deployments'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    api_params = {
        queries: queries,
        search: search,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::DeploymentList
    )
end

#list_frameworksFrameworkList

Get a list of all frameworks that are currently available on the server instance.

Returns:

  • (FrameworkList)


119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/appwrite/services/sites.rb', line 119

def list_frameworks()
    api_path = '/sites/frameworks'

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::FrameworkList
    )
end

#list_logs(site_id:, queries: nil) ⇒ ExecutionList

Get a list of all site logs. You can use the query params to filter your results.

Parameters:

  • site_id (String)

    Site ID.

  • queries (Array) (defaults to: nil)

    Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: trigger, status, responseStatusCode, duration, requestMethod, requestPath, deploymentId

Returns:

  • (ExecutionList)


718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
# File 'lib/appwrite/services/sites.rb', line 718

def list_logs(site_id:, queries: nil)
    api_path = '/sites/{siteId}/logs'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    api_params = {
        queries: queries,
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::ExecutionList
    )
end

#list_specificationsSpecificationList

List allowed site specifications for this instance.

Returns:

  • (SpecificationList)


142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/appwrite/services/sites.rb', line 142

def list_specifications()
    api_path = '/sites/specifications'

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::SpecificationList
    )
end

#list_variables(site_id:) ⇒ VariableList

Get a list of all variables of a specific site.

Parameters:

  • site_id (String)

    Site unique ID.

Returns:

  • (VariableList)


818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
# File 'lib/appwrite/services/sites.rb', line 818

def list_variables(site_id:)
    api_path = '/sites/{siteId}/variables'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    api_params = {
    }
    
    api_headers = {
    }

    @client.call(
        method: 'GET',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::VariableList
    )
end

#update(site_id:, name:, framework:, enabled: nil, logging: nil, timeout: nil, install_command: nil, build_command: nil, output_directory: nil, build_runtime: nil, adapter: nil, fallback_file: nil, installation_id: nil, provider_repository_id: nil, provider_branch: nil, provider_silent_mode: nil, provider_root_directory: nil, specification: nil) ⇒ Site

Update site by its unique ID.

Parameters:

  • site_id (String)

    Site ID.

  • name (String)

    Site name. Max length: 128 chars.

  • framework (Framework)

    Sites framework.

  • []

    enabled Is site enabled? When set to ‘disabled’, users cannot access the site but Server SDKs with and API key can still access the site. No data is lost when this is toggled.

  • []

    logging When disabled, request logs will exclude logs and errors, and site responses will be slightly faster.

  • timeout (Integer) (defaults to: nil)

    Maximum request time in seconds.

  • install_command (String) (defaults to: nil)

    Install Command.

  • build_command (String) (defaults to: nil)

    Build Command.

  • output_directory (String) (defaults to: nil)

    Output Directory for site.

  • build_runtime (BuildRuntime) (defaults to: nil)

    Runtime to use during build step.

  • adapter (Adapter) (defaults to: nil)

    Framework adapter defining rendering strategy. Allowed values are: static, ssr

  • fallback_file (String) (defaults to: nil)

    Fallback file for single page application sites.

  • installation_id (String) (defaults to: nil)

    Appwrite Installation ID for VCS (Version Control System) deployment.

  • provider_repository_id (String) (defaults to: nil)

    Repository ID of the repo linked to the site.

  • provider_branch (String) (defaults to: nil)

    Production branch for the repo linked to the site.

  • []

    provider_silent_mode Is the VCS (Version Control System) connection in silent mode for the repo linked to the site? In silent mode, comments will not be made on commits and pull requests.

  • provider_root_directory (String) (defaults to: nil)

    Path to site code in the linked repo.

  • specification (String) (defaults to: nil)

    Framework specification for the site and builds.

Returns:

  • (Site)


212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# File 'lib/appwrite/services/sites.rb', line 212

def update(site_id:, name:, framework:, enabled: nil, logging: nil, timeout: nil, install_command: nil, build_command: nil, output_directory: nil, build_runtime: nil, adapter: nil, fallback_file: nil, installation_id: nil, provider_repository_id: nil, provider_branch: nil, provider_silent_mode: nil, provider_root_directory: nil, specification: nil)
    api_path = '/sites/{siteId}'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if name.nil?
      raise Appwrite::Exception.new('Missing required parameter: "name"')
    end

    if framework.nil?
      raise Appwrite::Exception.new('Missing required parameter: "framework"')
    end

    api_params = {
        name: name,
        framework: framework,
        enabled: enabled,
        logging: logging,
        timeout: timeout,
        installCommand: install_command,
        buildCommand: build_command,
        outputDirectory: output_directory,
        buildRuntime: build_runtime,
        adapter: adapter,
        fallbackFile: fallback_file,
        installationId: installation_id,
        providerRepositoryId: provider_repository_id,
        providerBranch: provider_branch,
        providerSilentMode: provider_silent_mode,
        providerRootDirectory: provider_root_directory,
        specification: specification,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PUT',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Site
    )
end

#update_deployment_status(site_id:, deployment_id:) ⇒ Deployment

Cancel an ongoing site deployment build. If the build is already in progress, it will be stopped and marked as canceled. If the build hasn’t started yet, it will be marked as canceled without executing. You cannot cancel builds that have already completed (status ‘ready’) or failed. The response includes the final build status and details.

Parameters:

  • site_id (String)

    Site ID.

  • deployment_id (String)

    Deployment ID.

Returns:

  • (Deployment)


681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
# File 'lib/appwrite/services/sites.rb', line 681

def update_deployment_status(site_id:, deployment_id:)
    api_path = '/sites/{siteId}/deployments/{deploymentId}/status'
        .gsub('{siteId}', site_id)
        .gsub('{deploymentId}', deployment_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if deployment_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "deploymentId"')
    end

    api_params = {
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Deployment
    )
end

#update_site_deployment(site_id:, deployment_id:) ⇒ Site

Update the site active deployment. Use this endpoint to switch the code deployment that should be used when visitor opens your site.

Parameters:

  • site_id (String)

    Site ID.

  • deployment_id (String)

    Deployment ID.

Returns:

  • (Site)


298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
# File 'lib/appwrite/services/sites.rb', line 298

def update_site_deployment(site_id:, deployment_id:)
    api_path = '/sites/{siteId}/deployment'
        .gsub('{siteId}', site_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if deployment_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "deploymentId"')
    end

    api_params = {
        deploymentId: deployment_id,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PATCH',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Site
    )
end

#update_variable(site_id:, variable_id:, key:, value: nil, secret: nil) ⇒ Variable

Update variable by its unique ID.

Parameters:

  • site_id (String)

    Site unique ID.

  • variable_id (String)

    Variable unique ID.

  • key (String)

    Variable key. Max length: 255 chars.

  • value (String) (defaults to: nil)

    Variable value. Max length: 8192 chars.

  • []

    secret Secret variables can be updated or deleted, but only sites can read them during build and runtime.

Returns:

  • (Variable)


931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
# File 'lib/appwrite/services/sites.rb', line 931

def update_variable(site_id:, variable_id:, key:, value: nil, secret: nil)
    api_path = '/sites/{siteId}/variables/{variableId}'
        .gsub('{siteId}', site_id)
        .gsub('{variableId}', variable_id)

    if site_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "siteId"')
    end

    if variable_id.nil?
      raise Appwrite::Exception.new('Missing required parameter: "variableId"')
    end

    if key.nil?
      raise Appwrite::Exception.new('Missing required parameter: "key"')
    end

    api_params = {
        key: key,
        value: value,
        secret: secret,
    }
    
    api_headers = {
        "content-type": 'application/json',
    }

    @client.call(
        method: 'PUT',
        path: api_path,
        headers: api_headers,
        params: api_params,
        response_type: Models::Variable
    )
end