From ec9825a8563cd824d8483a468ebc2486980f86d8 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Thu, 19 Sep 2019 12:14:15 -0400 Subject: [PATCH] restore pr, adjust notices --- controller/action/MailActions.class.php | 52 +++++++------------------ lib/thirdparty/LBRY.class.php | 7 ++++ view/template/layout/basic.php | 3 +- view/template/mail/_settingsForm.php | 48 +++++++++++++---------- web/scss/components/_notice.scss | 3 -- 5 files changed, 49 insertions(+), 64 deletions(-) diff --git a/controller/action/MailActions.class.php b/controller/action/MailActions.class.php index 90cebe42..597109b9 100644 --- a/controller/action/MailActions.class.php +++ b/controller/action/MailActions.class.php @@ -78,45 +78,19 @@ class MailActions extends Actions public static function prepareSettingsFormPartial(array $vars) { - return $vars + [ - 'tagMetadata' => [ - '3d-printing' => [ - 'label' => '3D Printing', - 'description' => 'Receive updates, tips, and new content suggestions related to 3D Printing.' - ], - 'android' => [ - 'label' => 'Android', - 'description' => 'Be an Android beta tester, earn LBC, and receive notification when the app goes live!' - ], - 'college' => [ - 'label' => 'University', - 'description' => 'LBRY has special programs and opportunities for people in school.' - ], - 'creator' => [ - 'label' => 'Creator', - 'description' => 'Get the most out of the stuff you create with tips and feedback from LBRY.' - ], - 'consumer' => [ - 'label' => 'Content Lover', - 'description' => 'Learn how to get the most out of LBRY as someone who just wants to find cool stuff.' - ], - 'developer' => [ - 'label' => 'Developer', - 'description' => 'Receive technical updates and other news intended for those who are familiar with software engineering.' - ], - 'ios' => [ - 'label' => 'iPhone', - 'description' => 'Be an iOS alpha tester, earn LBC, and receive notification when the app goes live!' - ], - 'reward' => [ - 'label' => 'Rewards', - 'description' => 'Receive emails about the latest rewards that are available to LBRY users.' - ], - 'subscription' => [ - 'label' => 'Subscriptions', - 'description' => 'Stay up to date on the latest content from your favorite creators.' - ], - ] + $tags = LBRY::listTags($vars['token']); + $tagMetadata = []; + $specialDisplayNames = [ + 'ios' => 'iOS' ]; + foreach($tags as $tag) { + if ($tag['is_user_addable']) { + $tagMetadata[$tag['name']] = [ + 'label' => $specialDisplayNames[$tag['name']] ?? ucwords(str_replace(['-', '_'], ' ', $tag['name'])), + 'description' => $tag['description'] + ]; + } + } + return $vars + ['tagMetadata' => $tagMetadata]; } } diff --git a/lib/thirdparty/LBRY.class.php b/lib/thirdparty/LBRY.class.php index 9b980d50..4bbd864d 100644 --- a/lib/thirdparty/LBRY.class.php +++ b/lib/thirdparty/LBRY.class.php @@ -21,6 +21,13 @@ class LBRY return $response['data']['lbc_usd'] ?? 0; } + public static function listTags($authToken) + { + echo $authToken; + $response = Curl::get(static::getApiUrl('/tag/list'), ['auth_token' => $authToken], ['json_response' => true]); + return $response['data'] ?? []; + } + public static function subscribe($email, $tag = null) { return Curl::post(static::getApiUrl('/list/subscribe'), array_filter([ diff --git a/view/template/layout/basic.php b/view/template/layout/basic.php index d7fcb390..a8593d56 100644 --- a/view/template/layout/basic.php +++ b/view/template/layout/basic.php @@ -58,7 +58,8 @@ - + + diff --git a/view/template/mail/_settingsForm.php b/view/template/mail/_settingsForm.php index 0a9f7b0a..e83bd80b 100644 --- a/view/template/mail/_settingsForm.php +++ b/view/template/mail/_settingsForm.php @@ -11,49 +11,55 @@