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

Questa guida illustra il processo di scrittura di una funzione Cloud Run utilizzando il runtime PHP. Esistono due tipi di funzioni di Cloud Run:

  • Una funzione HTTP, che richiami dalle richieste HTTP standard.
  • Una funzione basata su eventi, che utilizzi per gestire gli eventi dal tuo Cloud dell'infrastruttura, ad esempio i messaggi su un argomento Pub/Sub o le modifiche nel 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 gcloud CLI.
  9. Aggiorna e installa i componenti di 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 o "Hello World!" se non viene specificato alcun nome.

Specifica delle dipendenze

Utilizza Composer per gestire le dipendenze in PHP. Se non hai già installato Composer, puoi procedi nel seguente modo:

  1. Scarica Composer in qualsiasi posizione desiderio.

  2. Al termine del download, sposta il file composer.phar in una directory nel percorso di sistema, ad esempio:

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

Quindi, specifica le dipendenze della funzione:

  1. Aggiungi un file composer.json contenente le dipendenze al tuo della funzione directory del codice, FUNCTION_TARGET=FUNCTION_NAME indica il nome di la tua 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 composer.json che hai appena creato), esegui questo comando:

    composer require google/cloud-functions-framework
    

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

di Gemini Advanced.

Creazione e test in locale

Una volta completati i passaggi Specifica le dipendenze, puoi creare e testare il tuo a livello locale.

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

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

Se la funzione viene creata correttamente, viene visualizzato un URL. Puoi visitare questo URL con il 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 php82 --trigger-http --allow-unauthenticated

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

Testa la funzione di cui è stato eseguito il deployment

  1. Al termine del deployment della funzione, prendi nota del httpsTrigger.url o trovarla con il comando seguente:

    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 visualizzare il messaggio "Ciao NAME!".

Visualizza i log

I log per le funzioni Cloud Run sono visualizzabili utilizzando Google Cloud CLI e UI di Cloud Logging.

Utilizzare lo strumento a riga di comando

Per visualizzare i log per la tua funzione con gcloud CLI, utilizza il metodo 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

Usa la dashboard di Logging

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