Crea ed esegui il deployment di una funzione Cloud Run HTTP utilizzando PHP (1ª generazione.)

Questa guida illustra la procedura per scrivere una funzione Cloud Run utilizzando il runtime PHP. Esistono due tipi di funzioni Cloud Run:

  • Una funzione HTTP che viene richiamata da richieste HTTP standard.
  • Una funzione basata su eventi che utilizzi per gestire gli eventi della tua infrastruttura Cloud, ad esempio i messaggi in un argomento Pub/Sub o le modifiche in un bucket Cloud Storage.

L'esempio mostra come creare una semplice funzione HTTP.

Prima di iniziare

  1. Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
  2. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  3. Make sure that billing is enabled for your Google Cloud project.

  4. Enable the Cloud Functions and Cloud Build APIs.

    Enable the APIs

  5. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  6. Make sure that billing is enabled for your Google Cloud project.

  7. Enable the Cloud Functions and Cloud Build APIs.

    Enable the APIs

  8. Installa e inizializza la gcloud CLI.
  9. Aggiorna e installa i componenti gcloud:
    gcloud components update
  10. Prepara l'ambiente di sviluppo.

    Inizia a utilizzare PHP

Crea una funzione

  1. Crea una directory sul sistema locale per il codice della funzione:

    Linux o Mac OS X

    mkdir ~/helloworld_http
    cd ~/helloworld_http
    

    Windows

    mkdir %HOMEPATH%\helloworld_http
    cd %HOMEPATH%\helloworld_http
    
  2. Crea un file index.php nella directory helloworld_http con il seguente contenuto:

    <?php
    
    use Google\CloudFunctions\FunctionsFramework;
    use Psr\Http\Message\ServerRequestInterface;
    
    // Register the function with Functions Framework.
    // This enables omitting the `FUNCTIONS_SIGNATURE_TYPE=http` environment
    // variable when deploying. The `FUNCTION_TARGET` environment variable should
    // match the first parameter.
    FunctionsFramework::http('helloHttp', 'helloHttp');
    
    function helloHttp(ServerRequestInterface $request): string
    {
        $name = 'World';
        $body = $request->getBody()->getContents();
        if (!empty($body)) {
            $json = json_decode($body, true);
            if (json_last_error() != JSON_ERROR_NONE) {
                throw new RuntimeException(sprintf(
                    'Could not parse body: %s',
                    json_last_error_msg()
                ));
            }
            $name = $json['name'] ?? $name;
        }
        $queryString = $request->getQueryParams();
        $name = $queryString['name'] ?? $name;
    
        return sprintf('Hello, %s!', htmlspecialchars($name));
    }
    

    Questa funzione di esempio prende un nome fornito nella richiesta HTTP e restituisce un saluto oppure "Hello World!" se non viene fornito alcun nome.

Specifica delle dipendenze

Utilizza Composer per gestire le dipendenze in PHP. Se non hai ancora installato Composer, puoi farlo nel seguente modo:

  1. Scarica Composer nella posizione che preferisci.

  2. Una volta scaricato, sposta il file composer.phar in una directory che si trova nel percorso di sistema, ad esempio:

    mv composer.phar /usr/local/bin/composer
    

Poi, specifica le dipendenze della funzione:

  1. Aggiungi un file composer.json contenente le dipendenze alla directory del codice della funzione, dove FUNCTION_TARGET=FUNCTION_NAME indica il nome della funzione. In questo esempio, FUNCTION_NAME è helloHttp:

    {
        "require": {
            "php": ">= 8.1",
            "google/cloud-functions-framework": "^1.1"
        },
        "scripts": {
            "start": [
               "Composer\\Config::disableProcessTimeout",
               "FUNCTION_TARGET=helloHttp php -S localhost:${PORT:-8080} vendor/google/cloud-functions-framework/router.php"
            ]
        }
    }
    
  2. Nella directory contenente il codice della funzione (che deve contenere anche il file composer.json appena creato), esegui il seguente comando:

    composer require google/cloud-functions-framework
    

    In questo modo, il framework di Functions viene aggiunto a composer.json. Inoltre, crea una directory vendor/ nella directory del codice della funzione contenente le dipendenze.

Esegui la compilazione e i test in locale

Dopo aver completato i passaggi descritti in Specificare le dipendenze, puoi compilare e testare la funzione in locale.

Il seguente comando crea un server web locale che esegue la funzione helloHttp:

export FUNCTION_TARGET=helloHttp
php -S localhost:8080 vendor/bin/router.php

Se la compilazione della funzione è andata a buon fine, viene visualizzato un URL. Puoi visitare questo URL con il tuo browser web: http://localhost:8080/. Dovresti vedere un messaggio Hello World!.

In alternativa, puoi inviare richieste a questa funzione utilizzando curl da un'altra finestra del terminale:

curl localhost:8080
# Output: Hello World!

esegui il deployment della funzione

Per il deployment della funzione con un trigger HTTP, esegui questo comando nella directory helloworld_http:

gcloud functions deploy helloHttp --no-gen2 --runtime php83 --trigger-http --allow-unauthenticated

Il flag --allow-unauthenticated consente di raggiungere la funzione senza autenticazione. Per richiedere l'autenticazione, ometti il flag.

Testa la funzione di cui hai eseguito il deployment

  1. Al termine del deployment della funzione, annota la proprietà httpsTrigger.url o cercala utilizzando il seguente comando:

    gcloud functions describe helloHttp
    

    Dovrebbe avere il seguente aspetto:

    https://GCP_REGION-PROJECT_ID.cloudfunctions.net/helloHttp
  2. Accedi all'URL dal browser. Dovresti vedere il messaggio "Hello World!".

    Prova a inserire un nome nella richiesta HTTP, come mostrato in questo URL di esempio:

    https://GCP_REGION-PROJECT_ID.cloudfunctions.net/helloHttp?name=NAME

    Dovresti vedere il messaggio "Un saluto da NAME!".

Visualizza i log

I log per le funzioni Cloud Run sono visualizzabili utilizzando Google Cloud CLI e nell'interfaccia utente di Cloud Logging.

Utilizzare lo strumento a riga di comando

Per visualizzare i log per la tua funzione con gcloud CLI, utilizza il comando gcloud logs read, seguito dal nome della funzione:

gcloud functions logs read helloHttp

L'output dovrebbe essere simile al seguente:

LEVEL  NAME       EXECUTION_ID  TIME_UTC                 LOG
D      helloHttp  rvb9j0axfclb  2019-09-18 22:06:25.983  Function execution started
D      helloHttp  rvb9j0axfclb  2019-09-18 22:06:26.001  Function execution took 19 ms, finished with status code: 200

Utilizzare la dashboard di Log

Puoi anche visualizzare i log per le funzioni Cloud Run dalla console Google Cloud.