| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include "nnrf-build.h" |
|
|
| ogs_sbi_request_t *nrf_nnrf_nfm_build_nf_status_notify( |
| ogs_sbi_subscription_data_t *subscription_data, |
| OpenAPI_notification_event_type_e event, |
| ogs_sbi_nf_instance_t *nf_instance) |
| { |
| ogs_sbi_message_t message; |
| ogs_sbi_request_t *request = NULL; |
|
|
| ogs_sbi_header_t header; |
| ogs_sbi_server_t *server = NULL; |
|
|
| OpenAPI_notification_data_t *NotificationData = NULL; |
|
|
| ogs_assert(subscription_data); |
| ogs_assert(event); |
| ogs_assert(nf_instance); |
| ogs_assert(nf_instance->id); |
|
|
| memset(&message, 0, sizeof(message)); |
| message.h.method = (char *)OGS_SBI_HTTP_METHOD_POST; |
| message.h.uri = subscription_data->notification_uri; |
|
|
| message.http.accept = (char *)OGS_SBI_CONTENT_PROBLEM_TYPE; |
|
|
| NotificationData = ogs_calloc(1, sizeof(*NotificationData)); |
| if (!NotificationData) { |
| ogs_error("No NotificationData"); |
| goto end; |
| } |
|
|
| NotificationData->event = event; |
|
|
| server = ogs_sbi_server_first(); |
| if (!server) { |
| ogs_error("No server"); |
| goto end; |
| } |
|
|
| memset(&header, 0, sizeof(header)); |
| header.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM; |
| header.api.version = (char *)OGS_SBI_API_V1; |
| header.resource.component[0] = (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES; |
| header.resource.component[1] = nf_instance->id; |
|
|
| NotificationData->nf_instance_uri = ogs_sbi_server_uri(server, &header); |
| if (!server) { |
| ogs_error("No nf_instance_uri"); |
| goto end; |
| } |
|
|
| if (event != OpenAPI_notification_event_type_NF_DEREGISTERED) { |
| NotificationData->nf_profile = |
| ogs_nnrf_nfm_build_nf_profile( |
| nf_instance, |
| subscription_data->subscr_cond.service_name, |
| NULL, |
| subscription_data->requester_features); |
| if (!NotificationData->nf_profile) { |
| ogs_error("No nf_profile"); |
| goto end; |
| } |
| } |
|
|
| message.NotificationData = NotificationData; |
|
|
| request = ogs_sbi_build_request(&message); |
| ogs_expect(request); |
|
|
| end: |
|
|
| if (NotificationData) { |
| if (NotificationData->nf_profile) |
| ogs_nnrf_nfm_free_nf_profile(NotificationData->nf_profile); |
| if (NotificationData->nf_instance_uri) |
| ogs_free(NotificationData->nf_instance_uri); |
| ogs_free(NotificationData); |
| } |
|
|
| return request; |
| } |
|
|