CloudKit 通过 cron 作业发送推送通知?

问题描述 投票:0回答:2

我正在创建一个大学餐饮菜单应用程序,在其中我需要根据每日菜单发送推送通知。最初,我计划通过 Heroku 将用户数据存储在数据库中,并使用 cron 作业将数据库中的数据与每日菜单进行比较,并向用户发送适当的通知。

然而,在 Cloudkit 上的新闻发布后,我想我可以用它来管理代码中与服务器相关的部分。但经过仔细检查,Cloudkit 目前似乎能够存储数据,但不允许我们编写服务器端代码。

我想知道我是否正确地解释了这个限制,或者事实上我是否可以在 CloudKit 上安排一个数据库,每天将其数据与在线菜单进行比较并发送适当的推送通知。

ios database push-notification ios8 cloudkit
2个回答
2
投票

令人惊讶的是,您不会使用或考虑 Parse.com 来做这样的事情。

(如果不是 Parse,其他一些具有类似功能集的 bAA。)

注意:Parse 现在位于 back4app.com。

  1. Parse 是使用 iOS 应用进行推送的最简单方法

  2. Parse 的整体理念是您拥有云代码,而且非常简单:

https://parse.com/docs/cloud_code_guide

您可以拥有云代码例程,并且您可以拥有定期运行的“cron”例程。这就是为什么每个人都使用 Parse!

请注意,使用 Parse 从 iOS 调用云函数非常简单。

这是一个例子:

-(void)tableView:(UITableView *)tableView
        commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
        forRowAtIndexPath:(NSIndexPath *)indexPath
    {
    int thisRow = indexPath.row;
    PFUser *delFriend = [self.theFriends objectAtIndex:thisRow];

    NSLog(@"you wish to delete .. %@", [delFriend fullName] );

    // note, this cloud call is happily is set and forget
    // there's no return either way. life's like that sometimes

    [PFCloud callFunctionInBackground:@"clientRequestFriendRemove"
            withParameters:@{
                            @"removeThisFriendId":delFriend.objectId
                            }
            block:^(NSString *serverResult, NSError *error)
            {
            if (!error)
                {
                NSLog(@"ok, Return (string) %@", serverResult);
                }
            }];

    [self back];    // that simple
    }

注意,我正在调用云函数“clientRequestFriendRemove”。这只是我编写的一段云代码,位于我们的 Parse 帐户上,事实上它在这里:

Parse.Cloud.define("clientRequestHandleInvite", function(request, response)
{
// called from the client, to accept an invite from invitorPerson

var thisUserObj = request.user;
var invitorPersonId = request.params.invitorPersonId;
var theMode = request.params.theMode;

// theMode is likely "accept" or "ignore"

console.log( "clientRequestAcceptInvite called....  invitorPersonId " + invitorPersonId + " By user: " + thisUserObj.id );
console.log( "clientRequestAcceptInvite called....  theMode is " + theMode );

if ( invitorPersonId == undefined || invitorPersonId == "" )
  {
  response.error("Problem in clientRequestAcceptInvite, 'invitorPersonId' missing or blank?");
  return;
  }

var query = new Parse.Query(Parse.User);
query.get(
  invitorPersonId,
    {
    success: function(theInvitorPersonObject)
      {
      console.log("clientRequestFriendRemove ... internal I got the userObj ...('no response' mode)");

      if ( theMode == "accept" )
        {
        createOneNewHaf( thisUserObj, theInvitorPersonObject );
        createOneNewHaf( theInvitorPersonObject, thisUserObj );
        }

      // in both cases "accept" or "ignore", delete the invite in question:
      // and on top of that you have to do it both ways

      deleteFromInvites( theInvitorPersonObject, thisUserObj );
      deleteFromInvites( thisUserObj, theInvitorPersonObject );

      // (those further functions exist in the cloud code)

      // for now we'll just go with the trick of LETTING THOSE RUN
      // so DO NOT this ........... response.success( "removal attempt underway" );
      // it's a huge problem with Parse that (so far, 2014) is poorly handled:
      // READ THIS:
      // parse.com/questions/can-i-use-a-cloud-code-function-within-another-cloud-code-function
      },
    error: function(object,error)
      {
      console.log("clientRequestAcceptInvite ... internal unusual failure: " + error.code + " " + error.message);
      response.error("Problem, internal problem?");
      return;
      }
    }
  );

}
);

(更完整的示例...https://stackoverflow.com/a/24010828/294884

  1. 在 Parse 中从云端代码实现推送是微不足道的,这也是每个人都使用它的原因。

例如,这里有一个与 Push 相关的 Parse 云代码片段:

function runAPush( ownerQueryForPush, description )
// literally run a push, given an ownerQuery
// (could be 1 to millions of devices pushed to)
    {
    var pushQuery = new Parse.Query(Parse.Installation);
    pushQuery.matchesQuery('owner', ownerQueryForPush);
    Parse.Push.send
        (
        {
        where: pushQuery,
        data:
            {
            swmsg: "reload",
            alert: description,
            badge: "Increment",
            title: "YourClient"
            }
        },
        {
        success: function()
{ console.log("did send push w txt message, to all..."); },
        error: function(error)
{ console.log("problem! sending the push"); }
        }
        );
    }
  1. 在 NoSQL 环境中执行与食品数据库相关的所有操作都非常容易。没有什么比 Parse 方法更容易了

  2. 您免费获得整个后端(用于添加食物等)-通常需要数月的工作

  3. 最后我猜 Parse 是相当免费的(除非你有这么多用户,无论如何你都会发财)

所以,我无法想象以其他方式做你所说的事情 - 否则这将是一场噩梦。


2
投票

服务器端

正如您所说,CloudKit 不允许服务器端代码。

但是..欢迎来到

订阅

订阅的概念是客户端注册特定更新。例如,您可以创建一个名为

Daily
的记录类型并让用户注册。您应该查看 Apple 文档 和 WWDC14 视频(即使订阅不详细,也是一个很好的起点)。

好处是推送通知与订阅概念相关。所以基本上你会说:为添加的每个新

CKRecord
类型的
Daily
向我发送通知。

克朗

现在的问题是您的用户注册了新帖子,但您不想每天连接到 iCloud 仪表板以便通过添加记录来执行推送。这里的一个解决方案是在 mac 服务器上编写一个应用程序(我猜 mac mini 作为服务器将变得更流行 CloudKit),每天添加一个新的

Daily
CKRecord

限制

问题是据我所知,通知消息是在客户端编写的,因此它不依赖于您发送的数据。

© www.soinside.com 2019 - 2024. All rights reserved.