PHP (1세대)를 사용하여 HTTP Cloud Run 함수 만들기 및 배포

이 가이드에서는 PHP 런타임을 사용하여 Cloud Run 함수를 작성하는 과정을 설명합니다. Cloud Run Functions에는 다음과 같은 두 가지 유형이 있습니다.

  • 표준 HTTP 요청에서 호출하는 HTTP 함수
  • Pub/Sub 주제의 메시지 또는 Cloud Storage 버킷의 변경사항과 같이 클라우드 인프라의 이벤트를 처리하는 데 사용되는 이벤트 기반 함수

이 샘플은 간단한 HTTP 함수를 만드는 방법을 보여줍니다.

시작하기 전에

  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. gcloud CLI를 설치하고 초기화합니다.
  9. gcloud 구성요소를 업데이트 및 설치합니다.
    gcloud components update
  10. 개발 환경을 준비합니다.

    PHP 시작하기

함수 만들기

  1. 로컬 시스템에 함수 코드를 저장할 디렉토리를 만듭니다.

    Linux 또는 Mac OS X

    mkdir ~/helloworld_http
    cd ~/helloworld_http
    

    Windows

    mkdir %HOMEPATH%\helloworld_http
    cd %HOMEPATH%\helloworld_http
    
  2. 다음 콘텐츠로 helloworld_http 디렉터리에 index.php 파일을 만듭니다.

    <?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));
    }
    

    이 함수 예시는 HTTP 요청에 제공된 이름을 사용하여 인사말을 반환합니다. 제공된 이름이 없으면 'Hello World!'를 반환합니다.

종속 항목 지정

Composer를 사용하여 PHP에서 종속 항목을 관리합니다. Composer가 아직 설치되어 있지 않으면 다음과 같이 설치할 수 있습니다.

  1. 원하는 위치에 Composer를 다운로드합니다.

  2. 다운로드가 완료되면 composer.phar 파일을 시스템 경로에 있는 디렉터리로 이동합니다. 예를 들면 다음과 같습니다.

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

다음으로 함수의 종속 항목을 지정합니다.

  1. 종속 항목이 포함된 composer.json 파일을 함수 코드 디렉터리에 추가합니다. 여기서 FUNCTION_TARGET=FUNCTION_NAME은 함수 이름을 나타냅니다. 이 예시에서 FUNCTION_NAMEhelloHttp입니다.

    {
        "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. 함수 코드가 포함된 디렉터리(방금 만든 composer.json 파일도 포함해야 함)에서 다음 명령어를 실행합니다.

    composer require google/cloud-functions-framework
    

    이렇게 하면 함수 프레임워크가 composer.json에 추가됩니다. 또한 종속 항목을 포함하는 함수 코드 디렉터리에도 vendor/ 디렉터리도가 만들어집니다.

로컬에서 빌드 및 테스트

종속 항목 지정의 단계를 완료하면 로컬에서 함수를 빌드하고 테스트할 수 있습니다.

다음 명령어는 helloHttp 함수를 실행하는 로컬 웹 서버를 만듭니다.

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

함수가 성공적으로 빌드되면 URL이 표시됩니다. 웹브라우저에서 http://localhost:8080/ URL을 방문하면 됩니다. Hello World! 메시지가 표시됩니다.

또는 다른 터미널 창에서 curl을 사용하여 이 함수에 요청을 보낼 수 있습니다.

curl localhost:8080
# Output: Hello World!

함수 배포하기

HTTP 트리거를 사용하여 함수를 배포하려면 helloworld_http 디렉터리에서 다음 명령어를 실행합니다.

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

--allow-unauthenticated 플래그를 사용하면 인증 없이 함수에 도달할 수 있습니다. 인증을 요청하려면 플래그를 생략합니다.

배포된 함수 테스트

  1. 함수 배포가 완료되면 httpsTrigger.url 속성을 기록하거나 다음 명령어를 사용하여 찾을 수 있습니다.

    gcloud functions describe helloHttp
    

    예를 들면 다음과 같습니다.

    https://GCP_REGION-PROJECT_ID.cloudfunctions.net/helloHttp
  2. 브라우저에서 해당 URL을 방문하면 'Hello World!' 메시지가 표시됩니다.

    다음 예시 URL에 표시된 것처럼 HTTP 요청에 이름을 전달해 보세요.

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

    그러면 'Hello NAME!' 메시지가 표시됩니다.

로그 보기

Cloud Run Functions의 로그는 Google Cloud CLI 및 Cloud Logging UI를 사용하여 볼 수 있습니다.

명령줄 도구를 사용

gcloud CLI를 사용하여 함수 로그를 보려면 gcloud logs read 명령어 뒤에 함수 이름을 사용합니다.

gcloud functions logs read helloHttp

다음과 유사한 결과가 출력됩니다.

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

Logging 대시보드 사용

Google Cloud 콘솔에서도 Cloud Run Functions 로그를 볼 수 있습니다.