From d9ba788fb36cab89f76662ea8dccc9951248531d Mon Sep 17 00:00:00 2001 From: tillcash Date: Thu, 12 Sep 2024 21:50:12 +0530 Subject: [PATCH] [OneNewThingBridge] Add bridge --- bridges/OneNewThingBridge.php | 44 +++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 bridges/OneNewThingBridge.php diff --git a/bridges/OneNewThingBridge.php b/bridges/OneNewThingBridge.php new file mode 100644 index 00000000..67413414 --- /dev/null +++ b/bridges/OneNewThingBridge.php @@ -0,0 +1,44 @@ +topic->content->S)) { + returnServerError('Failed to retrieve valid JSON data'); + } + + $data = json_decode($jsonData->topic->content->S); + + // Constructing the content in an array + $contentArray = []; + $contentArray[] = "

Introduction

$data->introduction

"; + $contentArray[] = "

Overview

$data->overview

"; + $contentArray[] = "

Importance

$data->importance

"; + $contentArray[] = "

Historical Context

$data->historicalContext

"; + $contentArray[] = "

Use Cases

"; + $contentArray[] = "

Pros

"; + $contentArray[] = "

Cons

"; + $contentArray[] = "

Key Takeaways

"; + + // Concatenate array elements into a single string + $content = implode('', $contentArray); + + // Assigning to items + $this->items[] = [ + 'title' => $data->title, + 'content' => $content, + 'url' => self::URI, + 'uid' => $jsonData->topic->id->S, + ]; + } +}