import { authWithHeaders } from '../../middlewares/auth'; const api = {}; // @TODO export this const, cannot export it from here because only routes are exported from // controllers const LAST_ANNOUNCEMENT_TITLE = 'LAST CHANCE FOR APRIL AND SPRING FLING GOODIES!'; const worldDmg = { // @TODO bailey: false, }; /** * @api {get} /api/v3/news Get latest Bailey announcement * @apiName GetNews * @apiGroup News * * * @apiSuccess {Object} html Latest Bailey html * */ api.getNews = { method: 'GET', url: '/news', async handler (req, res) { const baileyClass = worldDmg.bailey ? 'npc_bailey_broken' : 'npc_bailey'; res.status(200).send({ html: `

${res.t('newStuff')}

4/30/2020 - ${LAST_ANNOUNCEMENT_TITLE}


Last Chance for Spring Fling Outfits, Spring Customizations, Spring Magic Hatching Potions, and Shiny Seeds

Spring Fling is coming to a close in Habitica. It's the last day to snag this year's limited edition outfits from your Rewards column. Depending on your class, you can be a Puddle Mage, Rhinoceros Beetle Warrior, Lapiz Lazuli Rogue, or Iris Healer! Don't miss these awesome gear sets, available to purchase with Gold for now!

by Vikte, gawrone, jjgame83, Shine Caramia, and SabreCat

The Seasonal Shop will also be closing when the Gala ends. The Seasonal Sorceress is stocking the seasonal edition versions of previous spring outfits, now available for Gems instead of Gold, the seasonal Egg Quest, and Shiny Seeds.

by Eslyn, Aspiring Advocate, OuttaMyMind, Lt. Cabel, Vikte, Lalaitha, DialFForFunky, Gerald the Pixel, Scarvia, Awesome kitty, usnbfs, Balduranne, PainterProphet, Beffymaroo, SabreCat and Lemoness

It's also the final day to buy the Birch Bark, Celestial, and Shimmer Magic Hatching Potions! If they come back, it won't be until next year at the earliest, so don't delay!

by Teto Forever, tricksy.fox, Bonogo, Mara, ravenlune, Ricardo, and SabreCat

Don't miss the Pastel Skins and Shimmer Hair colors! They're also available in User > Customize Avatar until the Gala ends. But once you purchase them, you can use them year-round!

by Lemoness and McCoyly

Last Chance for Majestic Monarch Set

Reminder: this is the final day to subscribe and receive the Majestic Monarch Set! Subscribing also lets you buy Gems with Gold. The longer your subscription, the more Gems you can get!

Thanks so much for your support! You help keep Habitica running.

by Beffymaroo

Last Chance for Confection Hatching Potion Quest and Garden Potions

Have you had your eye on the sweet new Confection Hatching Potion Pets from this year's April Fool's festivities? Be sure to get the special Waffling with the Fool Quest from the Quest Shop! After today, it will not be available again for at least one year.

Garden Potions, which hatch the fruit and veggie pets from our 2019 April Fool's prank, will also disappear from the Market after today. Be sure to stock up if you haven't already!

Note that Confection Pets and Garden Pets do not have mount forms, so plan your purchases accordingly!

by Beffymaroo, Piyo, SabreCat, and Viirus
`, }); }, }; /** * @api {post} /api/v3/news/tell-me-later Allow latest Bailey announcement to be read later * @apiName TellMeLaterNews * @apiDescription Add a notification to allow viewing of the latest "New Stuff by Bailey" message. * Prevent this specific Bailey message from appearing automatically. * @apiGroup News * * * @apiSuccess {Object} data An empty Object * */ api.tellMeLaterNews = { method: 'POST', middlewares: [authWithHeaders()], url: '/news/tell-me-later', async handler (req, res) { const { user } = res.locals; user.flags.newStuff = false; const existingNotificationIndex = user.notifications.findIndex(n => n && n.type === 'NEW_STUFF'); if (existingNotificationIndex !== -1) user.notifications.splice(existingNotificationIndex, 1); user.addNotification('NEW_STUFF', { title: LAST_ANNOUNCEMENT_TITLE }, true); // seen by default await user.save(); res.respond(200, {}); }, }; export default api;