2018-01-31 10:55:39 +00:00
import { authWithHeaders } from '../../middlewares/auth' ;
let api = { } ;
// @TODO export this const, cannot export it from here because only routes are exported from controllers
2018-04-30 20:41:31 +00:00
const LAST _ANNOUNCEMENT _TITLE = 'LAST CHANCE FOR APRIL GOODIES!' ;
2018-01-31 10:55:39 +00:00
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 : `
< div class = "bailey" >
< div class = "media" >
2018-02-07 02:03:30 +00:00
< div class = "align-self-center mr-3 ${baileyClass}" > < / d i v >
2018-02-02 00:31:38 +00:00
< div class = "media-body" >
2018-02-07 02:03:30 +00:00
< h1 class = "align-self-center" > $ { res . t ( 'newStuff' ) } < / h 1 >
2018-02-02 00:31:38 +00:00
< / d i v >
2018-01-31 10:55:39 +00:00
< / d i v >
2018-04-30 20:41:31 +00:00
< h2 > 4 / 30 / 2018 - $ { LAST _ANNOUNCEMENT _TITLE } < / h 2 >
2018-02-07 02:03:30 +00:00
< hr / >
2018-04-30 20:41:31 +00:00
< div class = "media align-items-center" >
< div class = "promo_spring_fling_2018 mr-3" > < / d i v >
2018-04-11 01:32:49 +00:00
< div class = "media-body" >
2018-04-30 20:41:31 +00:00
< div class = "media" >
< div class = "media-body" >
< h3 > Last Chance for Spiffy Squirrel Set < / h 3 >
< p > Reminder : this is the final day to < a href = '/user/settings/subscription' target = '_blank' > subscribe and receive the Spiffy Squirrel Set < / a > ! S u b s c r i b i n g a l s o l e t s y o u b u y g e m s f o r g o l d . T h e l o n g e r y o u r s u b s c r i p t i o n , t h e m o r e g e m s y o u g e t ! < / p >
< / d i v >
< div class = "promo_mystery_201804" > < / d i v >
< / d i v >
< p > Thanks so much for your support ! You help keep Habitica running . < / p >
< div class = "small mb-3" > by Beffymaroo < / d i v >
< h3 > Last Chance for Spring Fling Hatching Potions , Equipment , Avatar Skins and Hair Colors , and Seasonal Shop Items < / h 3 >
< p > Spring Fling is coming to a close , so be sure to grab any exciting items you 've had your eye on! This includes the <a href=' / shops / market ' target=' _blank '>Shimmer and Rainbow Hatching Potions in the Market</a>. If they come back, it won' t be until next year at the earliest , so don ' t delay ! < / p >
< p > Pastel Skins and Shimmer Hair colors will also disappear when the Gala ends . If you purchase them in User > Avatar , you can use them year - round ! < / p >
< p > Be sure to also get your limited edition Spring Fling equipment in your Rewards Column ! When it returns next year , it will be in the Seasonal Shop and will be available for gems rather than gold . < / p >
< p > And lastly , it 's a great time to stock up on items from the <a href=' / shops / seasonal ' target=' _blank ' > Seasonal Shop < / a > b e f o r e i t c l o s e s . T h i s i n c l u d e s p a s t S p r i n g F l i n g e q u i p m e n t , t h e E g g H u n t Q u e s t , a n d S h i n y S e e d s ! < / p >
< div class = "small mb=3" > by Scarvia , Awesome kitty , usnbfs , Lemoness , Balduranne , PainterProphet , Vikte , Lalaitha , DialFForFunky , Gerald the Pixel , Beffymaroo and SabreCat < / d i v >
2018-04-11 01:32:49 +00:00
< / d i v >
< / d i v >
2018-01-31 10:55:39 +00:00
< / d i v >
` ,
} ) ;
} ,
} ;
/ * *
* @ api { post } / api / v3 / news / tell - me - later Get latest Bailey announcement in a second moment
* @ apiName TellMeLaterNews
* @ 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 ;
user . flags . newStuff = false ;
const existingNotificationIndex = user . notifications . findIndex ( n => {
2018-02-04 12:28:05 +00:00
return n && n . type === 'NEW_STUFF' ;
2018-01-31 10:55:39 +00:00
} ) ;
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 , { } ) ;
} ,
} ;
2018-02-02 00:31:38 +00:00
module . exports = api ;