在我的nodejs服务器中,我有两种类型的会员资格(免费,付费)。 付费会员资格从购买之日算起31天。
当会员在UPDATE
字段中购买此类成员I(服务器端)paid_expires
我的数据库(MySQL)时,该字段接受当前日期加31天的TIMESTAMP
输入
如果我的服务器有X个付费会员在不同的日期购买了会员资格,那么有效的方式是提前3个小时通知所有人他们的会员资格到期了吗?
答案 0 :(得分:1)
有几个要素可以解决这个问题,所以我将逐一介绍它们
首先,您希望拥有一段间隔运行的功能。这可以通过setInterval
来处理setInterval(() => {
/**
* perform the magic here or call another function.
* Note that if you're working with classes you cannot reference "this"
* here without first setting it before the interval to a const
* for example with "const that = this;"
*/
}, 60000); // runs every minute
地址旁边是间隔执行的回调函数,这是所有魔法发生的地方。您首先要查询具有付费会员资格的所有成员的数据库。即,如果这是由paid_expires
列是NOT NULL
确定的话,那么它将是SELECT memberId, paid_expires FROM member WHERE paid_expires IS NOT NULL
之类的内容。
以下步骤取决于mysql数据库驱动程序如何返回行,但我假设它是一个对象数组。您现在拥有一系列所有付费用户及其到期日期。
假设输出SQL查询
let members = [
{
memberId: "b6c4aeb1-6a23-477c-856a-d5f898153b62",
paid_expires: "2018-03-12T14:00:00"
},
{
memberId: "afc89eee-ef5e-4fbf-8451-aeac5620abe6",
paid_expires: "2018-03-12T16:30:00"
}
];
最后一步是循环遍历此对象数组,并计算它们是否在到期后3小时或更短时间内完成。为此,您需要使用MomentJS的add
,diff
和duration
函数。您可以使用add
向数据库中的值添加31天,然后您可以使用duration
和diff
的组合来确定是否必须发送通知
最后一部分的例子是
const expiryDate = moment(sqlrow.paid_expires).add(31, 'd');
const timeout = moment.duration(expiryDate.diff());
if (timeout.asHours() <= 3) {
// send notification
}
答案 1 :(得分:0)
我想:
exp_time = user_timezone + 31 => convert to server timezone => save it in DB
然后创建cronjob以每小时扫描一次数据库以使所有用户匹配
exp_time - 3 = current_time
将匹配用户列表发送到mail queue =&gt;发送电子邮件给他们