Skip to content

Commit

Permalink
anotehr WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ammopt committed Nov 8, 2024
1 parent 8059f6c commit e06196c
Show file tree
Hide file tree
Showing 6 changed files with 203 additions and 194 deletions.
1 change: 1 addition & 0 deletions code/web/services/Community/AJAX.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ function milestoneRewardGivenUpdate() {
$milestoneId = $_GET['milestoneId'];

$campaignMilestoneProgress = new CampaignMilestoneUsersProgress();
#TODO: Add a campaignId check
$campaignMilestoneProgress->userId = $userId;
$campaignMilestoneProgress->milestoneId = $milestoneId;

Expand Down
169 changes: 169 additions & 0 deletions code/web/sys/Community/CampaignMilestone.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,173 @@ public static function getMilestoneProgress($campaignId, $userId, $milestoneId)
];
}

/**
* Gets a list of milestones for a given object and table name that are related to
* a patron enrolled in an active campaign and of type $tableName
*
* @param object $object The object to check
* @param string $tableName The table name to check for
* @param int $userId The user id of the patron
* @return CampaignMilestone|false Returns a Milestone object if one is found, false otherwise
*/
public static function getCampaignMilestonesToUpdate($object, $tableName, $userId)
{

# Bail if not the table we want
if ($object->__table != $tableName)
return false;

# Bail if no active campaigns exist
$activeCampaigns = Campaign::getActiveCampaignsList();
if (!count($activeCampaigns))
return false;

# Bail if this object does not relate to a patron enrolled in an active campaign
$userCampaigns = new UserCampaign();
$userCampaigns->whereAdd("campaignId IN (" . implode(",", array_keys($activeCampaigns)) . ")");
$userCampaigns->userId = $userId;
if (!$userCampaigns->find())
return false;

# Bail if no user active campaigns' milestones are of type $tableName
$userActiveCampaigns = [];
while ($userCampaigns->fetch()) {
array_push($userActiveCampaigns, $userCampaigns->campaignId);
}
$campaignMilestone = new CampaignMilestone();
$campaignMilestone->milestoneType = $tableName;
$campaignMilestone->joinAdd(new Milestone(), 'LEFT', 'milestones', 'milestoneId', 'id');
$campaignMilestone->whereAdd('milestones.milestoneType = "' . $tableName . '" AND ce_campaign_milestones.campaignId IN (' . implode(',', $userActiveCampaigns) . ')');

if (!$campaignMilestone->find())
return false;


#This is returning 4?
var_dump($campaignMilestone);

return $campaignMilestone;
}

/**
* Adds a new CampaignMilestoneProgressEntry for a given milestone, object, and user.
*
* @param Milestone $milestone The milestone associated with this progress entry.
* @param mixed $object The object associated with this progress entry.
* @param int $userId The user id associated with this progress entry.
*/
public function addCampaignMilestoneProgressEntry( $object, $userId)
{
require_once ROOT_DIR . '/sys/Community/UserCampaign.php';

if (!$this->conditionalsCheck($object))
return;

# Check if this campaign milestone already has progress for this user
$campaignMilestoneUsersProgress = new CampaignMilestoneUsersProgress();
$campaignMilestoneUsersProgress->ce_milestone_id = $this->ce_milestone_id;
$campaignMilestoneUsersProgress->ce_campaign_id = $this->ce_campaign_id;
$campaignMilestoneUsersProgress->userId = $userId;

# If there isn't one, create it.
if (!$campaignMilestoneUsersProgress->find(true)) {
$campaignMilestoneUsersProgress->progress = 0;
$campaignMilestoneUsersProgress->insert();
}

$campaignMilestoneProgressEntry = new CampaignMilestoneProgressEntry();
$campaignMilestoneProgressEntry->initialize(
$this,
[
"object" => $object,
"userId" => $userId,
"campaignMilestoneUsersProgress" => $campaignMilestoneUsersProgress
]
);

$campaignMilestoneUsersProgress->progress++;
$campaignMilestoneUsersProgress->update();
}

/**
* Checks if a given object meets the conditionals of this milestone.
*
* If the object does not have a groupedWorkId, it is assumed to meet the conditionals.
* If the milestone does not have a conditional operator, field, or value, it is assumed
* to meet the conditionals.
*
* Otherwise, this method uses the groupedWorkDriver to get the value of the specified
* field from the grouped work. It then checks if the value matches the conditional
* operator and value. If it does, it returns true. If not, it returns false.
*
* @param mixed $object The object to check against the conditionals.
* @return bool True if the object meets the conditionals, false otherwise.
*/
protected function conditionalsCheck($object)
{

if (!$this->conditionalOperator || !$this->conditionalValue || !$this->conditionalField)
return true;

if (!$object->groupedWorkId)
return false;

if( $this->conditionalField == 'user_list' && is_numeric($this->conditionalValue) ) {
return $this->conditionalsListCheck($object);
}

require_once ROOT_DIR . '/RecordDrivers/GroupedWorkDriver.php';
$groupedWorkDriver = new GroupedWorkDriver($object->groupedWorkId);

if (!$fieldValues = $groupedWorkDriver->getSolrField($this->conditionalField))
return false;

if(!is_array($fieldValues)){
$fieldValues = [$fieldValues];
}

if ($this->conditionalOperator == 'like') {
#Convert this foreach to array_map
foreach ($fieldValues as $fieldValue) {
if (str_contains(strtolower($fieldValue), strtolower($this->conditionalValue))) {
return true;
}
}
return false;
} elseif ($this->conditionalOperator == 'equals') {
foreach ($fieldValues as $fieldValue) {
if (strtolower($fieldValue) == strtolower($this->conditionalValue)) {
return true;
}
}
return false;
} elseif ($this->conditionalOperator == 'is_not') {
foreach ($fieldValues as $fieldValue) {
if (strtolower($fieldValue) != strtolower($this->conditionalValue)) {
return true;
}
}
return false;
}

return false;
}

/**
* Checks if a grouped work is on a certain list.
*
* @param $object The grouped work object to check.
*
* @return bool true if the grouped work is on the list, false otherwise.
*/
protected function conditionalsListCheck($object){
require_once ROOT_DIR . '/sys/UserLists/UserListEntry.php';
$listEntry = new UserListEntry();
$listEntry->whereAdd("source ='GroupedWork'");
$listEntry->whereAdd("sourceId ='" . $object->groupedWorkId . "'");
$whereOp = $this->conditionalOperator == 'is_not' ? '!=' : '=';
$listEntry->whereAdd('listId '.$whereOp. ' ' . $this->conditionalValue);
return $listEntry->find(true);
}

}
6 changes: 3 additions & 3 deletions code/web/sys/Community/CampaignMilestoneProgressEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class CampaignMilestoneProgressEntry extends DataObject
/**
* Initializes a new CampaignMilestoneProgressEntry object by setting its ce_milestone_id to the provided milestone object
*
* @param Milestone $milestone The milestone associated with this progress entry.
* @param CampaignMilestone $campaignMilestone The campaign milestone associated with this progress entry.
* @param mixed $args Optional arguments to further configure the progress entry. Expects the following structure:
*
* [
Expand All @@ -26,10 +26,10 @@ class CampaignMilestoneProgressEntry extends DataObject
*
* @return void
*/
public function initialize(Milestone $milestone, $args = null)
public function initialize(CampaignMilestone $campaignMilestone, $args = null)
{

$this->ce_milestone_id = $milestone->id;
$this->ce_milestone_id = $campaignMilestone->ce_milestone_id;

if (!$args)
return;
Expand Down
163 changes: 0 additions & 163 deletions code/web/sys/Community/Milestone.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,169 +120,6 @@ public static function getConditionalFields() {
return $conditionalFields;
}

/**
* Gets a list of milestones for a given object and table name that are related to
* a patron enrolled in an active campaign and of type $tableName
*
* @param object $object The object to check
* @param string $tableName The table name to check for
* @param int $userId The user id of the patron
* @return Milestone|false Returns a Milestone object if one is found, false otherwise
*/
public static function getMilestonesToUpdate($object, $tableName, $userId)
{

# Bail if not the table we want
if ($object->__table != $tableName)
return false;

# Bail if no active campaigns exist
$activeCampaigns = Campaign::getActiveCampaignsList();
if (!count($activeCampaigns))
return false;

# Bail if this object does not relate to a patron enrolled in an active campaign
$userCampaigns = new UserCampaign();
$userCampaigns->whereAdd("campaignId IN (" . implode(",", array_keys($activeCampaigns)) . ")");
$userCampaigns->userId = $userId;
if (!$userCampaigns->find())
return false;

# Bail if no user active campaigns' milestones are of type $tableName
$userActiveCampaigns = [];
while ($userCampaigns->fetch()) {
array_push($userActiveCampaigns, $userCampaigns->campaignId);
}
$milestone = new Milestone();
$milestone->milestoneType = $tableName;
$milestone->joinAdd(new CampaignMilestone(), 'LEFT', 'campaignMilestones', 'id', 'milestoneId');
$milestone->whereAdd('campaignMilestones.campaignId IN (' . implode(',', $userActiveCampaigns) . ')');

if (!$milestone->find())
return false;
return $milestone;
}

/**
* Adds a new CampaignMilestoneProgressEntry for a given milestone, object, and user.
*
* @param Milestone $milestone The milestone associated with this progress entry.
* @param mixed $object The object associated with this progress entry.
* @param int $userId The user id associated with this progress entry.
*/
public function addCampaignMilestoneProgressEntry( $object, $userId)
{
require_once ROOT_DIR . '/sys/Community/UserCampaign.php';

if (!$this->conditionalsCheck($object))
return;

# Check if this milestone already has progress for this user
$campaignMilestoneUsersProgress = new CampaignMilestoneUsersProgress();
$campaignMilestoneUsersProgress->ce_milestone_id = $this->id;
$campaignMilestoneUsersProgress->userId = $userId;

# If there isn't one, create it.
if (!$campaignMilestoneUsersProgress->find(true)) {
$campaignMilestoneUsersProgress->progress = 0;
$campaignMilestoneUsersProgress->insert();
}

$campaignMilestoneProgressEntry = new CampaignMilestoneProgressEntry();
$campaignMilestoneProgressEntry->initialize(
$this,
[
"object" => $object,
"userId" => $userId,
"campaignMilestoneUsersProgress" => $campaignMilestoneUsersProgress
]
);

$campaignMilestoneUsersProgress->progress++;
$campaignMilestoneUsersProgress->update();
}

/**
* Checks if a given object meets the conditionals of this milestone.
*
* If the object does not have a groupedWorkId, it is assumed to meet the conditionals.
* If the milestone does not have a conditional operator, field, or value, it is assumed
* to meet the conditionals.
*
* Otherwise, this method uses the groupedWorkDriver to get the value of the specified
* field from the grouped work. It then checks if the value matches the conditional
* operator and value. If it does, it returns true. If not, it returns false.
*
* @param mixed $object The object to check against the conditionals.
* @return bool True if the object meets the conditionals, false otherwise.
*/
protected function conditionalsCheck($object)
{

if (!$this->conditionalOperator || !$this->conditionalValue || !$this->conditionalField)
return true;

if (!$object->groupedWorkId)
return false;

if( $this->conditionalField == 'user_list' && is_numeric($this->conditionalValue) ) {
return $this->conditionalsListCheck($object);
}

require_once ROOT_DIR . '/RecordDrivers/GroupedWorkDriver.php';
$groupedWorkDriver = new GroupedWorkDriver($object->groupedWorkId);

if (!$fieldValues = $groupedWorkDriver->getSolrField($this->conditionalField))
return false;

if(!is_array($fieldValues)){
$fieldValues = [$fieldValues];
}

if ($this->conditionalOperator == 'like') {
#Convert this foreach to array_map
foreach ($fieldValues as $fieldValue) {
if (str_contains(strtolower($fieldValue), strtolower($this->conditionalValue))) {
return true;
}
}
return false;
} elseif ($this->conditionalOperator == 'equals') {
foreach ($fieldValues as $fieldValue) {
if (strtolower($fieldValue) == strtolower($this->conditionalValue)) {
return true;
}
}
return false;
} elseif ($this->conditionalOperator == 'is_not') {
foreach ($fieldValues as $fieldValue) {
if (strtolower($fieldValue) != strtolower($this->conditionalValue)) {
return true;
}
}
return false;
}

return false;
}

/**
* Checks if a grouped work is on a certain list.
*
* @param $object The grouped work object to check.
*
* @return bool true if the grouped work is on the list, false otherwise.
*/
protected function conditionalsListCheck($object){
require_once ROOT_DIR . '/sys/UserLists/UserListEntry.php';
$listEntry = new UserListEntry();
$listEntry->whereAdd("source ='GroupedWork'");
$listEntry->whereAdd("sourceId ='" . $object->groupedWorkId . "'");
$whereOp = $this->conditionalOperator == 'is_not' ? '!=' : '=';
$listEntry->whereAdd('listId '.$whereOp. ' ' . $this->conditionalValue);
return $listEntry->find(true);
}

/**
* @return array
*/
Expand Down
Loading

0 comments on commit e06196c

Please sign in to comment.