id = $id; $membershipObj->find(); while ($membershipObj->fetch()) { $oldStatus = $membershipObj->status_id; $oldType = $membershipObj->membership_type_id; } } if (array_key_exists('is_override', $params) && !$params['is_override']) { $params['is_override'] = 'null'; } $membership = new CRM_Member_BAO_Membership(); $membership->copyValues($params); $membership->id = $id; $membership->save(); if (empty($membership->contact_id) || empty($membership->status_id)) { // this means we are in renewal mode and are just updating the membership // record or this is an API update call and all fields are not present in the update record // however the hooks don't care and want all data CRM-7784 $tempMembership = new CRM_Member_DAO_Membership(); $tempMembership->id = $membership->id; $tempMembership->find(TRUE); $membership = $tempMembership; } //get the log start date. //it is set during renewal of membership. $logStartDate = CRM_Utils_Array::value('log_start_date', $params); $logStartDate = ($logStartDate) ? CRM_Utils_Date::isoToMysql($logStartDate) : CRM_Utils_Date::isoToMysql($membership->start_date); $values = self::getStatusANDTypeValues($membership->id); $membershipLog = [ 'membership_id' => $membership->id, 'status_id' => $membership->status_id, 'start_date' => $logStartDate, 'end_date' => CRM_Utils_Date::isoToMysql($membership->end_date), 'modified_date' => date('Ymd'), 'membership_type_id' => $values[$membership->id]['membership_type_id'], 'max_related' => $membership->max_related, ]; $session = CRM_Core_Session::singleton(); // If we have an authenticated session, set modified_id to that user's contact_id, else set to membership.contact_id if ($session->get('userID')) { $membershipLog['modified_id'] = $session->get('userID'); } elseif (!empty($ids['userId'])) { $membershipLog['modified_id'] = $ids['userId']; } else { $membershipLog['modified_id'] = $membership->contact_id; } CRM_Member_BAO_MembershipLog::add($membershipLog); // reset the group contact cache since smart groups might be affected due to this CRM_Contact_BAO_GroupContactCache::opportunisticCacheFlush(); $allStatus = CRM_Member_BAO_Membership::buildOptions('status_id', 'get'); $activityParams = [ 'status_id' => CRM_Utils_Array::value('membership_activity_status', $params, 'Completed'), ]; if (in_array($allStatus[$membership->status_id], ['Pending', 'Grace'])) { $activityParams['status_id'] = 'Scheduled'; } $activityParams['status_id'] = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_status_id', $activityParams['status_id']); $targetContactID = $membership->contact_id; if (!empty($params['is_for_organization'])) { $targetContactID = CRM_Utils_Array::value('userId', $ids); } if ($id) { if ($membership->status_id != $oldStatus) { CRM_Activity_BAO_Activity::addActivity($membership, 'Change Membership Status', NULL, [ 'subject' => "Status changed from {$allStatus[$oldStatus]} to {$allStatus[$membership->status_id]}", 'source_contact_id' => $membershipLog['modified_id'], 'priority_id' => 'Normal', ] ); } if (isset($membership->membership_type_id) && $membership->membership_type_id != $oldType) { $membershipTypes = CRM_Member_BAO_Membership::buildOptions('membership_type_id', 'get'); CRM_Activity_BAO_Activity::addActivity($membership, 'Change Membership Type', NULL, [ 'subject' => "Type changed from {$membershipTypes[$oldType]} to {$membershipTypes[$membership->membership_type_id]}", 'source_contact_id' => $membershipLog['modified_id'], 'priority_id' => 'Normal', ] ); } foreach (['Membership Signup', 'Membership Renewal'] as $activityType) { $activityParams['id'] = CRM_Utils_Array::value('id', civicrm_api3('Activity', 'Get', [ 'source_record_id' => $membership->id, 'activity_type_id' => $activityType, 'status_id' => 'Scheduled', ] ) ); // 1. Update Schedule Membership Signup/Renwal activity to completed on successful payment of pending membership // 2. OR Create renewal activity scheduled if its membership renewal will be paid later if (!empty($params['membership_activity_status']) && (!empty($activityParams['id']) || $activityType == 'Membership Renewal')) { CRM_Activity_BAO_Activity::addActivity($membership, $activityType, $targetContactID, $activityParams); break; } } CRM_Utils_Hook::post('edit', 'Membership', $membership->id, $membership); } else { CRM_Activity_BAO_Activity::addActivity($membership, 'Membership Signup', $targetContactID, $activityParams); CRM_Utils_Hook::post('create', 'Membership', $membership->id, $membership); } return $membership; } /** * Fetch the object and store the values in the values array. * * @param array $params * Input parameters to find object. * @param array $values * Output values of the object. * @param bool $active * Do you want only active memberships to. * be returned * @param bool $relatedMemberships * * @return CRM_Member_BAO_Membership|null * The found object or null */ public static function &getValues(&$params, &$values, $active = FALSE, $relatedMemberships = FALSE) { if (empty($params)) { return NULL; } $membership = new CRM_Member_BAO_Membership(); $membership->copyValues($params); $membership->find(); $memberships = []; while ($membership->fetch()) { if ($active && (!CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipStatus', $membership->status_id, 'is_current_member' )) ) { continue; } CRM_Core_DAO::storeValues($membership, $values[$membership->id]); $memberships[$membership->id] = $membership; if ($relatedMemberships && !empty($membership->owner_membership_id)) { $values['owner_membership_ids'][] = $membership->owner_membership_id; } } return $memberships; } /** * Takes an associative array and creates a membership object. * * @param array $params * (reference ) an assoc array of name/value pairs. * @param array $ids * Deprecated parameter The array that holds all the db ids. * * @return CRM_Member_BAO_Membership|CRM_Core_Error * @throws \CiviCRM_API3_Exception * * @throws CRM_Core_Exception */ public static function create(&$params, &$ids = []) { // always calculate status if is_override/skipStatusCal is not true. // giving respect to is_override during import. CRM-4012 // To skip status calculation we should use 'skipStatusCal'. // eg pay later membership, membership update cron CRM-3984 if (empty($params['is_override']) && empty($params['skipStatusCal'])) { $dates = ['start_date', 'end_date', 'join_date']; // Declare these out of courtesy as IDEs don't pick up the setting of them below. $start_date = $end_date = $join_date = NULL; foreach ($dates as $date) { $$date = $params[$date] = CRM_Utils_Date::processDate(CRM_Utils_Array::value($date, $params), NULL, TRUE, 'Ymd'); } //fix for CRM-3570, during import exclude the statuses those having is_admin = 1 $excludeIsAdmin = CRM_Utils_Array::value('exclude_is_admin', $params, FALSE); //CRM-3724 always skip is_admin if is_override != true. if (!$excludeIsAdmin && empty($params['is_override'])) { $excludeIsAdmin = TRUE; } $calcStatus = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($start_date, $end_date, $join_date, 'today', $excludeIsAdmin, CRM_Utils_Array::value('membership_type_id', $params), $params ); if (empty($calcStatus)) { // Redirect the form in case of error // @todo this redirect in the BAO layer is really bad & should be moved to the form layer // however since we have no idea how (if) this is triggered we can't safely move / remove it // NB I tried really hard to trigger this error from backoffice membership form in order to test it // and am convinced form validation is complete on that form WRT this error. $errorParams = [ 'message_title' => ts('No valid membership status for given dates.'), 'legacy_redirect_path' => 'civicrm/contact/view', 'legacy_redirect_query' => "reset=1&force=1&cid={$params['contact_id']}&selectedChild=member", ]; throw new CRM_Core_Exception(ts( "The membership cannot be saved because the status cannot be calculated for start_date: $start_date end_date $end_date join_date $join_date as at " . date('Y-m-d H:i:s')), 0, $errorParams ); } $params['status_id'] = $calcStatus['id']; } // data cleanup only: all verifications on number of related memberships are done upstream in: // CRM_Member_BAO_Membership::createRelatedMemberships() // CRM_Contact_BAO_Relationship::relatedMemberships() if (!empty($params['owner_membership_id'])) { unset($params['max_related']); } else { // if membership allows related, default max_related to value in membership_type if (!array_key_exists('max_related', $params) && !empty($params['membership_type_id'])) { $membershipType = CRM_Member_BAO_MembershipType::getMembershipTypeDetails($params['membership_type_id']); if (isset($membershipType['relationship_type_id'])) { $params['max_related'] = CRM_Utils_Array::value('max_related', $membershipType); } } } $transaction = new CRM_Core_Transaction(); // @todo remove $ids from here - $ids['contribution'] is not used or set by add. $ids['userId'] is used. $ids['membership'] is used if $params['id'] is not set $membership = self::add($params, $ids); if (is_a($membership, 'CRM_Core_Error')) { $transaction->rollback(); return $membership; } // add custom field values if (!empty($params['custom']) && is_array($params['custom']) ) { CRM_Core_BAO_CustomValueTable::store($params['custom'], 'civicrm_membership', $membership->id); } $params['membership_id'] = $membership->id; // @todo further cleanup required to remove use of $ids['contribution'] from here if (isset($ids['membership'])) { $ids['contribution'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipPayment', $membership->id, 'contribution_id', 'membership_id' ); // @todo this is a temporary step to removing $ids['contribution'] completely if (empty($params['contribution_id']) && !empty($ids['contribution'])) { $params['contribution_id'] = $ids['contribution']; } } // This code ensures a line item is created but it is recommended you pass in 'skipLineItem' or 'line_item' if (empty($params['line_item']) && !empty($params['membership_type_id']) && empty($params['skipLineItem'])) { CRM_Price_BAO_LineItem::getLineItemArray($params, NULL, 'membership', $params['membership_type_id']); } $params['skipLineItem'] = TRUE; //record contribution for this membership if (!empty($params['contribution_status_id']) && empty($params['relate_contribution_id'])) { $memInfo = array_merge($params, ['membership_id' => $membership->id]); $params['contribution'] = self::recordMembershipContribution($memInfo); } if (!empty($params['lineItems'])) { $params['line_item'] = $params['lineItems']; } // do cleanup line items if membership edit the Membership type. if (empty($ids['contribution']) && !empty($ids['membership'])) { CRM_Price_BAO_LineItem::deleteLineItems($ids['membership'], 'civicrm_membership'); } // This could happen if there is no contribution or we are in one of many // weird and wonderful flows. This is scary code. Keep adding tests. if (!empty($params['line_item']) && empty($ids['contribution']) && empty($params['contribution_id'])) { foreach ($params['line_item'] as $priceSetId => $lineItems) { foreach ($lineItems as $lineIndex => $lineItem) { $lineMembershipType = CRM_Utils_Array::value('membership_type_id', $lineItem); if (!empty($params['contribution'])) { $params['line_item'][$priceSetId][$lineIndex]['contribution_id'] = $params['contribution']->id; } if ($lineMembershipType && $lineMembershipType == CRM_Utils_Array::value('membership_type_id', $params)) { $params['line_item'][$priceSetId][$lineIndex]['entity_id'] = $membership->id; $params['line_item'][$priceSetId][$lineIndex]['entity_table'] = 'civicrm_membership'; } elseif (!$lineMembershipType && !empty($params['contribution'])) { $params['line_item'][$priceSetId][$lineIndex]['entity_id'] = $params['contribution']->id; $params['line_item'][$priceSetId][$lineIndex]['entity_table'] = 'civicrm_contribution'; } } } CRM_Price_BAO_LineItem::processPriceSet( $membership->id, $params['line_item'], CRM_Utils_Array::value('contribution', $params) ); } //insert payment record for this membership if (!empty($params['relate_contribution_id'])) { $membershipPaymentParams = [ 'membership_id' => $membership->id, 'membership_type_id' => $membership->membership_type_id, 'contribution_id' => $params['relate_contribution_id'], ]; civicrm_api3('MembershipPayment', 'create', $membershipPaymentParams); } $transaction->commit(); self::createRelatedMemberships($params, $membership); // do not add to recent items for import, CRM-4399 if (empty($params['skipRecentView'])) { $url = CRM_Utils_System::url('civicrm/contact/view/membership', "action=view&reset=1&id={$membership->id}&cid={$membership->contact_id}&context=home" ); if (empty($membership->membership_type_id)) { // ie in an update situation. $membership->find(TRUE); } $membershipTypes = CRM_Member_PseudoConstant::membershipType(); $title = CRM_Contact_BAO_Contact::displayName($membership->contact_id) . ' - ' . ts('Membership Type:') . ' ' . $membershipTypes[$membership->membership_type_id]; $recentOther = []; if (CRM_Core_Permission::checkActionPermission('CiviMember', CRM_Core_Action::UPDATE)) { $recentOther['editUrl'] = CRM_Utils_System::url('civicrm/contact/view/membership', "action=update&reset=1&id={$membership->id}&cid={$membership->contact_id}&context=home" ); } if (CRM_Core_Permission::checkActionPermission('CiviMember', CRM_Core_Action::DELETE)) { $recentOther['deleteUrl'] = CRM_Utils_System::url('civicrm/contact/view/membership', "action=delete&reset=1&id={$membership->id}&cid={$membership->contact_id}&context=home" ); } // add the recently created Membership CRM_Utils_Recent::add($title, $url, $membership->id, 'Membership', $membership->contact_id, NULL, $recentOther ); } return $membership; } /** * Check the membership extended through relationship. * * @param int $membershipTypeID * Membership type id. * @param int $contactId * Contact id. * * @param int $action * * @return array * array of contact_id of all related contacts. */ public static function checkMembershipRelationship($membershipTypeID, $contactId, $action = CRM_Core_Action::ADD) { $contacts = []; $membershipType = CRM_Member_BAO_MembershipType::getMembershipTypeDetails($membershipTypeID); $relationships = []; if (isset($membershipType['relationship_type_id'])) { $relationships = CRM_Contact_BAO_Relationship::getRelationship($contactId, CRM_Contact_BAO_Relationship::CURRENT ); if ($action & CRM_Core_Action::UPDATE) { $pastRelationships = CRM_Contact_BAO_Relationship::getRelationship($contactId, CRM_Contact_BAO_Relationship::PAST ); $relationships = array_merge($relationships, $pastRelationships); } } if (!empty($relationships)) { // check for each contact relationships foreach ($relationships as $values) { //get details of the relationship type $relType = ['id' => $values['civicrm_relationship_type_id']]; $relValues = []; CRM_Contact_BAO_RelationshipType::retrieve($relType, $relValues); // Check if contact's relationship type exists in membership type $relTypeDirs = []; $relTypeIds = explode(CRM_Core_DAO::VALUE_SEPARATOR, $membershipType['relationship_type_id']); $relDirections = explode(CRM_Core_DAO::VALUE_SEPARATOR, $membershipType['relationship_direction']); $bidirectional = FALSE; foreach ($relTypeIds as $key => $value) { $relTypeDirs[] = $value . '_' . $relDirections[$key]; if (in_array($value, $relType) && $relValues['name_a_b'] == $relValues['name_b_a'] ) { $bidirectional = TRUE; break; } } $relTypeDir = $values['civicrm_relationship_type_id'] . '_' . $values['rtype']; if ($bidirectional || in_array($relTypeDir, $relTypeDirs)) { // $values['status'] is going to have value for // current or past relationships. $contacts[$values['cid']] = $values['status']; } } } // Sort by contact_id ascending ksort($contacts); return $contacts; } /** * Retrieve DB object based on input parameters. * * It also stores all the retrieved values in the default array. * * @param array $params * (reference ) an assoc array of name/value pairs. * @param array $defaults * (reference ) an assoc array to hold the name / value pairs. * in a hierarchical manner * * @return CRM_Member_BAO_Membership */ public static function retrieve(&$params, &$defaults) { $membership = new CRM_Member_DAO_Membership(); $membership->copyValues($params); if ($membership->find(TRUE)) { CRM_Core_DAO::storeValues($membership, $defaults); //get the membership status and type values. $statusANDType = self::getStatusANDTypeValues($membership->id); foreach (['status', 'membership_type'] as $fld) { $defaults[$fld] = CRM_Utils_Array::value($fld, $statusANDType[$membership->id]); } if (!empty($statusANDType[$membership->id]['is_current_member'])) { $defaults['active'] = TRUE; } return $membership; } return NULL; } /** * Get membership status and membership type values. * * @param int $membershipId * Membership id of values to return. * * @return array * Array of key value pairs */ public static function getStatusANDTypeValues($membershipId) { $values = []; if (!$membershipId) { return $values; } $sql = ' SELECT membership.id as id, status.id as status_id, status.label as status, status.is_current_member as is_current_member, type.id as membership_type_id, type.name as membership_type, type.relationship_type_id as relationship_type_id FROM civicrm_membership membership INNER JOIN civicrm_membership_status status ON ( status.id = membership.status_id ) INNER JOIN civicrm_membership_type type ON ( type.id = membership.membership_type_id ) WHERE membership.id = %1'; $dao = CRM_Core_DAO::executeQuery($sql, [1 => [$membershipId, 'Positive']]); $properties = [ 'status', 'status_id', 'membership_type', 'membership_type_id', 'is_current_member', 'relationship_type_id', ]; while ($dao->fetch()) { foreach ($properties as $property) { $values[$dao->id][$property] = $dao->$property; } } return $values; } /** * Delete membership. * * Wrapper for most delete calls. Use this unless you JUST want to delete related memberships w/o deleting the parent. * * @param int $membershipId * Membership id that needs to be deleted. * @param bool $preserveContrib * * @return int * Id of deleted Membership on success, false otherwise. */ public static function del($membershipId, $preserveContrib = FALSE) { //delete related first and then delete parent. self::deleteRelatedMemberships($membershipId); return self::deleteMembership($membershipId, $preserveContrib); } /** * Delete membership. * * @param int $membershipId * Membership id that needs to be deleted. * @param bool $preserveContrib * * @return int * Id of deleted Membership on success, false otherwise. */ public static function deleteMembership($membershipId, $preserveContrib = FALSE) { // CRM-12147, retrieve membership data before we delete it for hooks $params = ['id' => $membershipId]; $memValues = []; $memberships = self::getValues($params, $memValues); $membership = $memberships[$membershipId]; CRM_Utils_Hook::pre('delete', 'Membership', $membershipId, $memValues); $transaction = new CRM_Core_Transaction(); $results = NULL; //delete activity record $activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, FALSE, FALSE, 'name'); $params = []; $deleteActivity = FALSE; $membershipActivities = [ 'Membership Signup', 'Membership Renewal', 'Change Membership Status', 'Change Membership Type', 'Membership Renewal Reminder', ]; foreach ($membershipActivities as $membershipActivity) { $activityId = array_search($membershipActivity, $activityTypes); if ($activityId) { $params['activity_type_id'][] = $activityId; $deleteActivity = TRUE; } } if ($deleteActivity) { $params['source_record_id'] = $membershipId; CRM_Activity_BAO_Activity::deleteActivity($params); } self::deleteMembershipPayment($membershipId, $preserveContrib); $results = $membership->delete(); $transaction->commit(); CRM_Utils_Hook::post('delete', 'Membership', $membership->id, $membership); // delete the recently created Membership $membershipRecent = [ 'id' => $membershipId, 'type' => 'Membership', ]; CRM_Utils_Recent::del($membershipRecent); return $results; } /** * Delete related memberships. * * @param int $ownerMembershipId * @param int $contactId * * @return null */ public static function deleteRelatedMemberships($ownerMembershipId, $contactId = NULL) { if (!$ownerMembershipId && !$contactId) { return FALSE; } $membership = new CRM_Member_DAO_Membership(); $membership->owner_membership_id = $ownerMembershipId; if ($contactId) { $membership->contact_id = $contactId; } $membership->find(); while ($membership->fetch()) { //delete related first and then delete parent. self::deleteRelatedMemberships($membership->id); self::deleteMembership($membership->id); } } /** * Obtain active/inactive memberships from the list of memberships passed to it. * * @param array $memberships * Membership records. * @param string $status * Active or inactive. * * @return array * array of memberships based on status */ public static function activeMembers($memberships, $status = 'active') { $actives = []; if ($status == 'active') { foreach ($memberships as $f => $v) { if (!empty($v['active'])) { $actives[$f] = $v; } } return $actives; } elseif ($status == 'inactive') { foreach ($memberships as $f => $v) { if (empty($v['active'])) { $actives[$f] = $v; } } return $actives; } return NULL; } /** * Return Membership Block info in Contribution Pages. * * @param int $pageID * Contribution page id. * * @return array|null */ public static function getMembershipBlock($pageID) { $membershipBlock = []; $dao = new CRM_Member_DAO_MembershipBlock(); $dao->entity_table = 'civicrm_contribution_page'; $dao->entity_id = $pageID; $dao->is_active = 1; if ($dao->find(TRUE)) { CRM_Core_DAO::storeValues($dao, $membershipBlock); if (!empty($membershipBlock['membership_types'])) { $membershipTypes = unserialize($membershipBlock['membership_types']); if (!is_array($membershipTypes)) { return $membershipBlock; } $memTypes = []; foreach ($membershipTypes as $key => $value) { $membershipBlock['auto_renew'][$key] = $value; $memTypes[$key] = $key; } $membershipBlock['membership_types'] = implode(',', $memTypes); } } else { return NULL; } return $membershipBlock; } /** * Return a current membership of given contact. * * NB: if more than one membership meets criteria, a randomly selected one is returned. * * @param int $contactID * Contact id. * @param int $memType * Membership type, null to retrieve all types. * @param int $isTest * @param int $membershipId * If provided, then determine if it is current. * @param bool $onlySameParentOrg * True if only Memberships with same parent org as the $memType wanted, false otherwise. * * @return array|bool * @throws \CiviCRM_API3_Exception */ public static function getContactMembership($contactID, $memType, $isTest, $membershipId = NULL, $onlySameParentOrg = FALSE) { //check for owner membership id, if it exists update that membership instead: CRM-15992 if ($membershipId) { $ownerMemberId = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $membershipId, 'owner_membership_id', 'id' ); if ($ownerMemberId) { $membershipId = $ownerMemberId; $contactID = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $membershipId, 'contact_id', 'id' ); } } $dao = new CRM_Member_DAO_Membership(); if ($membershipId) { $dao->id = $membershipId; } $dao->contact_id = $contactID; $dao->membership_type_id = $memType; //fetch proper membership record. if ($isTest) { $dao->is_test = $isTest; } else { $dao->whereAdd('is_test IS NULL OR is_test = 0'); } //avoid pending membership as current membership: CRM-3027 $statusIds = [array_search('Pending', CRM_Member_PseudoConstant::membershipStatus())]; if (!$membershipId) { // CRM-15475 $statusIds[] = array_search( 'Cancelled', CRM_Member_PseudoConstant::membershipStatus( NULL, " name = 'Cancelled' ", 'name', FALSE, TRUE ) ); } $dao->whereAdd('status_id NOT IN ( ' . implode(',', $statusIds) . ')'); // order by start date to find most recent membership first, CRM-4545 $dao->orderBy('start_date DESC'); // CRM-8141 if ($onlySameParentOrg && $memType) { // require the same parent org as the $memType $params = ['id' => $memType]; $membershipType = []; if (CRM_Member_BAO_MembershipType::retrieve($params, $membershipType)) { $memberTypesSameParentOrg = civicrm_api3('MembershipType', 'get', [ 'member_of_contact_id' => $membershipType['member_of_contact_id'], 'options' => [ 'limit' => 0, ], ]); $memberTypesSameParentOrgList = implode(',', array_keys(CRM_Utils_Array::value('values', $memberTypesSameParentOrg, []))); $dao->whereAdd('membership_type_id IN (' . $memberTypesSameParentOrgList . ')'); } } if ($dao->find(TRUE)) { $membership = []; CRM_Core_DAO::storeValues($dao, $membership); $membership['is_current_member'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipStatus', $membership['status_id'], 'is_current_member', 'id' ); $ownerMemberId = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $membership['id'], 'owner_membership_id', 'id' ); if ($ownerMemberId) { $membership['id'] = $membership['membership_id'] = $ownerMemberId; $membership['membership_contact_id'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $membership['id'], 'contact_id', 'id' ); } return $membership; } // CRM-8141 if ($onlySameParentOrg && $memType) { // see if there is a membership that has same parent as $memType but different parent than $membershipID if ($dao->id && CRM_Core_Permission::check('edit memberships')) { // CRM-10016, This is probably a backend renewal, and make sure we return the same membership thats being renewed. $dao->whereAdd(); } else { unset($dao->id); } unset($dao->membership_type_id); if ($dao->find(TRUE)) { $membership = []; CRM_Core_DAO::storeValues($dao, $membership); $membership['is_current_member'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipStatus', $membership['status_id'], 'is_current_member', 'id' ); return $membership; } } return FALSE; } /** * Combine all the importable fields from the lower levels object. * * @param string $contactType * Contact type. * @param bool $status * * @return array * array of importable Fields */ public static function &importableFields($contactType = 'Individual', $status = TRUE) { if (!self::$_importableFields) { if (!self::$_importableFields) { self::$_importableFields = []; } if (!$status) { $fields = ['' => ['title' => '- ' . ts('do not import') . ' -']]; } else { $fields = ['' => ['title' => '- ' . ts('Membership Fields') . ' -']]; } $tmpFields = CRM_Member_DAO_Membership::import(); $contactFields = CRM_Contact_BAO_Contact::importableFields($contactType, NULL); // Using new Dedupe rule. $ruleParams = [ 'contact_type' => $contactType, 'used' => 'Unsupervised', ]; $fieldsArray = CRM_Dedupe_BAO_Rule::dedupeRuleFields($ruleParams); $tmpContactField = []; if (is_array($fieldsArray)) { foreach ($fieldsArray as $value) { $customFieldId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField', $value, 'id', 'column_name' ); $value = $customFieldId ? 'custom_' . $customFieldId : $value; $tmpContactField[trim($value)] = CRM_Utils_Array::value(trim($value), $contactFields); if (!$status) { $title = $tmpContactField[trim($value)]['title'] . " " . ts('(match to contact)'); } else { $title = $tmpContactField[trim($value)]['title']; } $tmpContactField[trim($value)]['title'] = $title; } } $tmpContactField['external_identifier'] = $contactFields['external_identifier']; $tmpContactField['external_identifier']['title'] = $contactFields['external_identifier']['title'] . " " . ts('(match to contact)'); $tmpFields['membership_contact_id']['title'] = $tmpFields['membership_contact_id']['title'] . " " . ts('(match to contact)');; $fields = array_merge($fields, $tmpContactField); $fields = array_merge($fields, $tmpFields); $fields = array_merge($fields, CRM_Core_BAO_CustomField::getFieldsForImport('Membership')); self::$_importableFields = $fields; } return self::$_importableFields; } /** * Get all exportable fields. * * @return array return array of all exportable fields */ public static function &exportableFields() { $expFieldMembership = CRM_Member_DAO_Membership::export(); $expFieldsMemType = CRM_Member_DAO_MembershipType::export(); $fields = array_merge($expFieldMembership, $expFieldsMemType); $fields = array_merge($fields, $expFieldMembership); $membershipStatus = [ 'membership_status' => [ 'title' => ts('Membership Status'), 'name' => 'membership_status', 'type' => CRM_Utils_Type::T_STRING, 'where' => 'civicrm_membership_status.name', ], ]; //CRM-6161 fix for customdata export $fields = array_merge($fields, $membershipStatus, CRM_Core_BAO_CustomField::getFieldsForImport('Membership')); return $fields; } /** * Get membership joins/renewals for a specified membership type. * * Specifically, retrieves a count of memberships whose "Membership * Signup" or "Membership Renewal" activity falls in the given date range. * Dates match the pattern "yyyy-mm-dd". * * @param int $membershipTypeId * Membership type id. * @param int $startDate * Date on which to start counting. * @param int $endDate * Date on which to end counting. * @param bool|int $isTest if true, membership is for a test site * @param bool|int $isOwner if true, only retrieve membership records for owners //LCD * * @return int * the number of members of type $membershipTypeId whose * start_date is between $startDate and $endDate */ public static function getMembershipStarts($membershipTypeId, $startDate, $endDate, $isTest = 0, $isOwner = 0) { $testClause = 'membership.is_test = 1'; if (!$isTest) { $testClause = '( membership.is_test IS NULL OR membership.is_test = 0 )'; } if (!self::$_signupActType || !self::$_renewalActType) { self::_getActTypes(); } if (!self::$_signupActType || !self::$_renewalActType) { return 0; } $query = " SELECT COUNT(DISTINCT membership.id) as member_count FROM civicrm_membership membership INNER JOIN civicrm_activity activity ON (activity.source_record_id = membership.id AND activity.activity_type_id in (%1, %2)) INNER JOIN civicrm_membership_status status ON ( membership.status_id = status.id AND status.is_current_member = 1 ) INNER JOIN civicrm_contact contact ON ( contact.id = membership.contact_id AND contact.is_deleted = 0 ) WHERE membership.membership_type_id = %3 AND activity.activity_date_time >= '$startDate' AND activity.activity_date_time <= '$endDate 23:59:59' AND {$testClause}"; $query .= ($isOwner) ? ' AND owner_membership_id IS NULL' : ''; $params = [ 1 => [self::$_signupActType, 'Integer'], 2 => [self::$_renewalActType, 'Integer'], 3 => [$membershipTypeId, 'Integer'], ]; $memberCount = CRM_Core_DAO::singleValueQuery($query, $params); return (int) $memberCount; } /** * Get a count of membership for a specified membership type, optionally for a specified date. * * The date must have the form yyyy-mm-dd. * * If $date is omitted, this function counts as a member anyone whose * membership status_id indicates they're a current member. * If $date is given, this function counts as a member anyone who: * -- Has a start_date before $date and end_date after $date, or * -- Has a start_date before $date and is currently a member, as indicated * by the the membership's status_id. * The second condition takes care of records that have no end_date. These * are assumed to be lifetime memberships. * * @param int $membershipTypeId * Membership type id. * @param string $date * The date for which to retrieve the count. * @param bool|int $isTest if true, membership is for a test site * @param bool|int $isOwner if true, only retrieve membership records for owners //LCD * * @return int * the number of members of type $membershipTypeId as of $date. */ public static function getMembershipCount($membershipTypeId, $date = NULL, $isTest = 0, $isOwner = 0) { if (!CRM_Utils_Rule::date($date)) { CRM_Core_Error::fatal(ts('Invalid date "%1" (must have form yyyy-mm-dd).', [1 => $date])); } $params = [ 1 => [$membershipTypeId, 'Integer'], 2 => [$isTest, 'Boolean'], ]; $query = "SELECT count(civicrm_membership.id ) as member_count FROM civicrm_membership left join civicrm_membership_status on ( civicrm_membership.status_id = civicrm_membership_status.id ) WHERE civicrm_membership.membership_type_id = %1 AND civicrm_membership.contact_id NOT IN (SELECT id FROM civicrm_contact WHERE is_deleted = 1) AND civicrm_membership.is_test = %2"; if (!$date) { $query .= " AND civicrm_membership_status.is_current_member = 1"; } else { $query .= " AND civicrm_membership.start_date <= '$date' AND civicrm_membership_status.is_current_member = 1"; } // LCD $query .= ($isOwner) ? ' AND owner_membership_id IS NULL' : ''; $memberCount = CRM_Core_DAO::singleValueQuery($query, $params); return (int) $memberCount; } /** * Function check the status of the membership before adding membership for a contact. * * @return int */ public static function statusAvailabilty() { $membership = new CRM_Member_DAO_MembershipStatus(); $membership->whereAdd('is_active=1'); return $membership->count(); } /** * @deprecated This is not used anywhere and should be removed soon! * Function for updating a membership record's contribution_recur_id. * * @param CRM_Member_DAO_Membership $membership * @param \CRM_Contribute_BAO_Contribution|\CRM_Contribute_DAO_Contribution $contribution */ public static function updateRecurMembership(CRM_Member_DAO_Membership $membership, CRM_Contribute_BAO_Contribution $contribution) { CRM_Core_Error::deprecatedFunctionWarning('Use the API instead'); if (empty($contribution->contribution_recur_id)) { return; } $params = [ 1 => [$contribution->contribution_recur_id, 'Integer'], 2 => [$membership->id, 'Integer'], ]; $sql = "UPDATE civicrm_membership SET contribution_recur_id = %1 WHERE id = %2"; CRM_Core_DAO::executeQuery($sql, $params); } /** * Method to fix membership status of stale membership. * * This method first checks if the membership is stale. If it is, * then status will be updated based on existing start and end * dates and log will be added for the status change. * * @param array $currentMembership * Reference to the array. * containing all values of * the current membership * @param string $changeToday * In case today needs * to be customised, null otherwise * * @throws \CRM_Core_Exception */ public static function fixMembershipStatusBeforeRenew(&$currentMembership, $changeToday) { $today = NULL; if ($changeToday) { $today = CRM_Utils_Date::processDate($changeToday, NULL, FALSE, 'Y-m-d'); } $status = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate( CRM_Utils_Array::value('start_date', $currentMembership), CRM_Utils_Array::value('end_date', $currentMembership), CRM_Utils_Array::value('join_date', $currentMembership), $today, TRUE, $currentMembership['membership_type_id'], $currentMembership ); if (empty($status) || empty($status['id'])) { throw new CRM_Core_Exception(ts('Oops, it looks like there is no valid membership status corresponding to the membership start and end dates for this membership. Contact the site administrator for assistance.')); } $currentMembership['today_date'] = $today; if ($status['id'] !== $currentMembership['status_id']) { $oldStatus = $currentMembership['status_id']; $memberDAO = new CRM_Member_DAO_Membership(); $memberDAO->id = $currentMembership['id']; $memberDAO->find(TRUE); $memberDAO->status_id = $status['id']; $memberDAO->join_date = CRM_Utils_Date::isoToMysql($memberDAO->join_date); $memberDAO->start_date = CRM_Utils_Date::isoToMysql($memberDAO->start_date); $memberDAO->end_date = CRM_Utils_Date::isoToMysql($memberDAO->end_date); $memberDAO->save(); CRM_Core_DAO::storeValues($memberDAO, $currentMembership); $currentMembership['is_current_member'] = CRM_Core_DAO::getFieldValue( 'CRM_Member_DAO_MembershipStatus', $currentMembership['status_id'], 'is_current_member' ); $format = '%Y%m%d'; $logParams = [ 'membership_id' => $currentMembership['id'], 'status_id' => $status['id'], 'start_date' => CRM_Utils_Date::customFormat( $currentMembership['start_date'], $format ), 'end_date' => CRM_Utils_Date::customFormat( $currentMembership['end_date'], $format ), 'modified_date' => CRM_Utils_Date::customFormat( $currentMembership['today_date'], $format ), 'membership_type_id' => $currentMembership['membership_type_id'], 'max_related' => CRM_Utils_Array::value('max_related', $currentMembership, 0), ]; $session = CRM_Core_Session::singleton(); // If we have an authenticated session, set modified_id to that user's contact_id, else set to membership.contact_id if ($session->get('userID')) { $logParams['modified_id'] = $session->get('userID'); } else { $logParams['modified_id'] = $currentMembership['contact_id']; } //Create activity for status change. $allStatus = CRM_Member_BAO_Membership::buildOptions('status_id', 'get'); CRM_Activity_BAO_Activity::addActivity($memberDAO, 'Change Membership Status', NULL, [ 'subject' => "Status changed from {$allStatus[$oldStatus]} to {$allStatus[$status['id']]}", 'source_contact_id' => $logParams['modified_id'], 'priority_id' => 'Normal', ] ); CRM_Member_BAO_MembershipLog::add($logParams); } } /** * Get the contribution page id from the membership record. * * @param int $membershipID * * @return int * contribution page id */ public static function getContributionPageId($membershipID) { $query = " SELECT c.contribution_page_id as pageID FROM civicrm_membership_payment mp, civicrm_contribution c WHERE mp.contribution_id = c.id AND c.contribution_page_id IS NOT NULL AND mp.membership_id = " . CRM_Utils_Type::escape($membershipID, 'Integer') . " ORDER BY mp.id DESC"; return CRM_Core_DAO::singleValueQuery($query); } /** * Updated related memberships. * * @param int $ownerMembershipId * Owner Membership Id. * @param array $params * Formatted array of key => value. */ public static function updateRelatedMemberships($ownerMembershipId, $params) { $membership = new CRM_Member_DAO_Membership(); $membership->owner_membership_id = $ownerMembershipId; $membership->find(); while ($membership->fetch()) { $relatedMembership = new CRM_Member_DAO_Membership(); $relatedMembership->id = $membership->id; $relatedMembership->copyValues($params); $relatedMembership->save(); } } /** * Get list of membership fields for profile. * * For now we only allow custom membership fields to be in * profile * * @param null $mode * FIXME: This param is ignored * * @return array * the list of membership fields */ public static function getMembershipFields($mode = NULL) { $fields = CRM_Member_DAO_Membership::export(); unset($fields['membership_contact_id']); $fields = array_merge($fields, CRM_Core_BAO_CustomField::getFieldsForImport('Membership')); $membershipType = CRM_Member_DAO_MembershipType::export(); $membershipStatus = CRM_Member_DAO_MembershipStatus::export(); $fields = array_merge($fields, $membershipType, $membershipStatus); return $fields; } /** * Get the sort name of a contact for a particular membership. * * @param int $id * Id of the membership. * * @return null|string * sort name of the contact if found */ public static function sortName($id) { $id = CRM_Utils_Type::escape($id, 'Integer'); $query = " SELECT civicrm_contact.sort_name FROM civicrm_membership, civicrm_contact WHERE civicrm_membership.contact_id = civicrm_contact.id AND civicrm_membership.id = {$id} "; return CRM_Core_DAO::singleValueQuery($query); } /** * Create memberships for related contacts, taking into account the maximum related memberships. * * @param array $params * Array of key - value pairs. * @param CRM_Core_DAO $dao * Membership object. * * @param bool $reset * * @return array|null * Membership details, if created. * * @throws \CRM_Core_Exception * @throws \CiviCRM_API3_Exception */ public static function createRelatedMemberships(&$params, &$dao, $reset = FALSE) { // CRM-4213 check for loops, using static variable to record contacts already processed. static $relatedContactIds = []; if ($reset) { // We need a way to reset this static variable from the test suite. // @todo consider replacing with Civi::$statics but note reset now used elsewhere: CRM-17723. $relatedContactIds = []; return FALSE; } $membership = new CRM_Member_DAO_Membership(); $membership->id = $dao->id; // required since create method doesn't return all the // parameters in the returned membership object if (!$membership->find(TRUE)) { return; } $deceasedStatusId = array_search('Deceased', CRM_Member_PseudoConstant::membershipStatus()); // FIXME : While updating/ renewing the // membership, if the relationship is PAST then // the membership of the related contact must be // expired. // For that, getting Membership Status for which // is_current_member is 0. It works for the // generated data as there is only one membership // status having is_current_member = 0. // But this wont work exactly if there will be // more than one status having is_current_member = 0. $membershipStatus = new CRM_Member_DAO_MembershipStatus(); $membershipStatus->is_current_member = 0; if ($membershipStatus->find(TRUE)) { $expiredStatusId = $membershipStatus->id; } else { $expiredStatusId = array_search('Expired', CRM_Member_PseudoConstant::membershipStatus()); } $allRelatedContacts = []; $relatedContacts = []; if (!is_a($membership, 'CRM_Core_Error')) { $allRelatedContacts = CRM_Member_BAO_Membership::checkMembershipRelationship($membership->membership_type_id, $membership->contact_id, CRM_Utils_Array::value('action', $params) ); } // CRM-4213, CRM-19735 check for loops, using static variable to record contacts already processed. // Remove repeated related contacts, which already inherited membership of this type. $relatedContactIds[$membership->contact_id][$membership->membership_type_id] = TRUE; foreach ($allRelatedContacts as $cid => $status) { if (empty($relatedContactIds[$cid]) || empty($relatedContactIds[$cid][$membership->membership_type_id])) { $relatedContactIds[$cid][$membership->membership_type_id] = TRUE; //don't create membership again for owner contact. $nestedRelationship = FALSE; if ($membership->owner_membership_id) { $nestedRelMembership = new CRM_Member_DAO_Membership(); $nestedRelMembership->id = $membership->owner_membership_id; $nestedRelMembership->contact_id = $cid; $nestedRelationship = $nestedRelMembership->find(TRUE); } if (!$nestedRelationship) { $relatedContacts[$cid] = $status; } } } //lets cleanup related membership if any. if (empty($relatedContacts)) { self::deleteRelatedMemberships($membership->id); } else { // Edit the params array unset($params['id']); // Reminder should be sent only to the direct membership unset($params['reminder_date']); // unset the custom value ids if (is_array(CRM_Utils_Array::value('custom', $params))) { foreach ($params['custom'] as $k => $v) { unset($params['custom'][$k]['id']); } } if (!isset($params['membership_type_id'])) { $params['membership_type_id'] = $membership->membership_type_id; } // max_related should be set in the parent membership unset($params['max_related']); // Number of inherited memberships available - NULL is interpreted as unlimited, '0' as none $numRelatedAvailable = ($membership->max_related == NULL ? PHP_INT_MAX : $membership->max_related); // will be used to queue potential memberships to be created. $queue = []; foreach ($relatedContacts as $contactId => $relationshipStatus) { //use existing membership record. $relMembership = new CRM_Member_DAO_Membership(); $relMembership->contact_id = $contactId; $relMembership->owner_membership_id = $membership->id; if ($relMembership->find(TRUE)) { $params['id'] = $relMembership->id; } $params['contact_id'] = $contactId; $params['owner_membership_id'] = $membership->id; // set status_id as it might have been changed for // past relationship $params['status_id'] = $membership->status_id; if ($deceasedStatusId && CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $contactId, 'is_deceased') ) { $params['status_id'] = $deceasedStatusId; } elseif ((CRM_Utils_Array::value('action', $params) & CRM_Core_Action::UPDATE) && ($relationshipStatus == CRM_Contact_BAO_Relationship::PAST) ) { $params['status_id'] = $expiredStatusId; } //don't calculate status again in create( ); $params['skipStatusCal'] = TRUE; //do create activity if we changed status. if ($params['status_id'] != $relMembership->status_id) { $params['createActivity'] = TRUE; } //CRM-20707 - include start/end date $params['start_date'] = $membership->start_date; $params['end_date'] = $membership->end_date; // we should not created contribution record for related contacts, CRM-3371 unset($params['contribution_status_id']); //CRM-16857: Do not create multiple line-items for inherited membership through priceset. unset($params['lineItems']); unset($params['line_item']); // CRM-20966: Do not create membership_payment record for inherited membership. unset($params['relate_contribution_id']); $ids = []; if (($params['status_id'] == $deceasedStatusId) || ($params['status_id'] == $expiredStatusId)) { // related membership is not active so does not count towards maximum // @todo stop passing empty $ids CRM_Member_BAO_Membership::create($params, $ids); } else { // related membership already exists, so this is just an update if (isset($params['id'])) { if ($numRelatedAvailable > 0) { // @todo stop passing empty $ids CRM_Member_BAO_Membership::create($params, $ids); $numRelatedAvailable--; } else { // we have run out of inherited memberships, so delete extras self::deleteMembership($params['id']); } // we need to first check if there will remain inherited memberships, so queue it up } else { $queue[] = $params; } } } // now go over the queue and create any available related memberships foreach ($queue as $params) { if ($numRelatedAvailable <= 0) { break; } // @todo stop passing $ids - at this point it may be set by reference from earlier calls to CRM_Member_BAO_Membership::create CRM_Member_BAO_Membership::create($params, $ids); $numRelatedAvailable--; } } } /** * Delete the record that are associated with this Membership Payment. * * @param int $membershipId * @param bool $preserveContrib * * @return object * $membershipPayment deleted membership payment object */ public static function deleteMembershipPayment($membershipId, $preserveContrib = FALSE) { $membershipPayment = new CRM_Member_DAO_MembershipPayment(); $membershipPayment->membership_id = $membershipId; $membershipPayment->find(); while ($membershipPayment->fetch()) { if (!$preserveContrib) { CRM_Contribute_BAO_Contribution::deleteContribution($membershipPayment->contribution_id); } CRM_Utils_Hook::pre('delete', 'MembershipPayment', $membershipPayment->id, $membershipPayment); $membershipPayment->delete(); CRM_Utils_Hook::post('delete', 'MembershipPayment', $membershipPayment->id, $membershipPayment); } return $membershipPayment; } /** * Build an array of available membership types. * * @param CRM_Core_Form $form * @param array $membershipTypeID * @param bool $activeOnly * Do we only want active ones? * (probably this should default to TRUE but as a newly added parameter we are leaving default b * behaviour unchanged). * * @return array */ public static function buildMembershipTypeValues(&$form, $membershipTypeID = [], $activeOnly = FALSE) { $whereClause = " WHERE domain_id = " . CRM_Core_Config::domainID(); $membershipTypeIDS = (array) $membershipTypeID; if ($activeOnly) { $whereClause .= " AND is_active = 1 "; } if (!empty($membershipTypeIDS)) { $allIDs = implode(',', $membershipTypeIDS); $whereClause .= " AND id IN ( $allIDs )"; } CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($financialTypes, CRM_Core_Action::ADD); if ($financialTypes) { $whereClause .= " AND financial_type_id IN (" . implode(',', array_keys($financialTypes)) . ")"; } else { $whereClause .= " AND financial_type_id IN (0)"; } $query = " SELECT * FROM civicrm_membership_type $whereClause; "; $dao = CRM_Core_DAO::executeQuery($query); $membershipTypeValues = []; $membershipTypeFields = [ 'id', 'minimum_fee', 'name', 'is_active', 'description', 'financial_type_id', 'auto_renew', 'member_of_contact_id', 'relationship_type_id', 'relationship_direction', 'max_related', 'duration_unit', 'duration_interval', ]; while ($dao->fetch()) { $membershipTypeValues[$dao->id] = []; foreach ($membershipTypeFields as $mtField) { $membershipTypeValues[$dao->id][$mtField] = $dao->$mtField; } } CRM_Utils_Hook::membershipTypeValues($form, $membershipTypeValues); if (is_numeric($membershipTypeID) && $membershipTypeID > 0 ) { return $membershipTypeValues[$membershipTypeID]; } else { return $membershipTypeValues; } } /** * Get membership record count for a Contact. * * @param int $contactID * @param bool $activeOnly * * @return null|string */ public static function getContactMembershipCount($contactID, $activeOnly = FALSE) { CRM_Financial_BAO_FinancialType::getAvailableMembershipTypes($membershipTypes); $addWhere = " AND membership_type_id IN (0)"; if (!empty($membershipTypes)) { $addWhere = " AND membership_type_id IN (" . implode(',', array_keys($membershipTypes)) . ")"; } $select = "SELECT count(*) FROM civicrm_membership "; $where = "WHERE civicrm_membership.contact_id = {$contactID} AND civicrm_membership.is_test = 0 "; // CRM-6627, all status below 3 (active, pending, grace) are considered active if ($activeOnly) { $select .= " INNER JOIN civicrm_membership_status ON civicrm_membership.status_id = civicrm_membership_status.id "; $where .= " and civicrm_membership_status.is_current_member = 1"; } $query = $select . $where . $addWhere; return CRM_Core_DAO::singleValueQuery($query); } /** * Check whether payment processor supports cancellation of membership subscription. * * @param int $mid * Membership id. * * @param bool $isNotCancelled * * @return bool */ public static function isCancelSubscriptionSupported($mid, $isNotCancelled = TRUE) { $cacheKeyString = "$mid"; $cacheKeyString .= $isNotCancelled ? '_1' : '_0'; static $supportsCancel = []; if (!array_key_exists($cacheKeyString, $supportsCancel)) { $supportsCancel[$cacheKeyString] = FALSE; $isCancelled = FALSE; if ($isNotCancelled) { $isCancelled = self::isSubscriptionCancelled($mid); } $paymentObject = CRM_Financial_BAO_PaymentProcessor::getProcessorForEntity($mid, 'membership', 'obj'); if (!empty($paymentObject)) { $supportsCancel[$cacheKeyString] = $paymentObject->supports('cancelRecurring') && !$isCancelled; } } return $supportsCancel[$cacheKeyString]; } /** * Check whether subscription is already cancelled. * * @param int $mid * Membership id. * * @return string * contribution status */ public static function isSubscriptionCancelled($mid) { $sql = " SELECT cr.contribution_status_id FROM civicrm_contribution_recur cr LEFT JOIN civicrm_membership mem ON ( cr.id = mem.contribution_recur_id ) WHERE mem.id = %1 LIMIT 1"; $params = [1 => [$mid, 'Integer']]; $statusId = CRM_Core_DAO::singleValueQuery($sql, $params); $status = CRM_Contribute_PseudoConstant::contributionStatus($statusId, 'name'); if ($status == 'Cancelled') { return TRUE; } return FALSE; } /** * Get membership joins for a specified membership type. * * Specifically, retrieves a count of still current memberships whose * join_date and start_date are within a specified date range. Dates match * the pattern "yyyy-mm-dd". * * @param int $membershipTypeId * Membership type id. * @param int $startDate * Date on which to start counting. * @param int $endDate * Date on which to end counting. * @param bool|int $isTest if true, membership is for a test site * * @return int * the number of members of type $membershipTypeId * whose join_date is between $startDate and $endDate and * whose start_date is between $startDate and $endDate */ public static function getMembershipJoins($membershipTypeId, $startDate, $endDate, $isTest = 0) { $testClause = 'membership.is_test = 1'; if (!$isTest) { $testClause = '( membership.is_test IS NULL OR membership.is_test = 0 )'; } if (!self::$_signupActType) { self::_getActTypes(); } if (!self::$_signupActType) { return 0; } $query = " SELECT COUNT(DISTINCT membership.id) as member_count FROM civicrm_membership membership INNER JOIN civicrm_activity activity ON (activity.source_record_id = membership.id AND activity.activity_type_id = %1) INNER JOIN civicrm_membership_status status ON ( membership.status_id = status.id AND status.is_current_member = 1 ) INNER JOIN civicrm_contact contact ON ( contact.id = membership.contact_id AND contact.is_deleted = 0 ) WHERE membership.membership_type_id = %2 AND activity.activity_date_time >= '$startDate' AND activity.activity_date_time <= '$endDate 23:59:59' AND {$testClause}"; $params = [ 1 => [self::$_signupActType, 'Integer'], 2 => [$membershipTypeId, 'Integer'], ]; $memberCount = CRM_Core_DAO::singleValueQuery($query, $params); return (int) $memberCount; } /** * Get membership renewals for a specified membership type. * * Specifically, retrieves a count of still current memberships * whose join_date is before and start_date is within a specified date * range. Dates match the pattern "yyyy-mm-dd". * * @param int $membershipTypeId * Membership type id. * @param int $startDate * Date on which to start counting. * @param int $endDate * Date on which to end counting. * @param bool|int $isTest if true, membership is for a test site * * @return int * returns the number of members of type $membershipTypeId * whose join_date is before $startDate and * whose start_date is between $startDate and $endDate */ public static function getMembershipRenewals($membershipTypeId, $startDate, $endDate, $isTest = 0) { $testClause = 'membership.is_test = 1'; if (!$isTest) { $testClause = '( membership.is_test IS NULL OR membership.is_test = 0 )'; } if (!self::$_renewalActType) { self::_getActTypes(); } if (!self::$_renewalActType) { return 0; } $query = " SELECT COUNT(DISTINCT membership.id) as member_count FROM civicrm_membership membership INNER JOIN civicrm_activity activity ON (activity.source_record_id = membership.id AND activity.activity_type_id = %1) INNER JOIN civicrm_membership_status status ON ( membership.status_id = status.id AND status.is_current_member = 1 ) INNER JOIN civicrm_contact contact ON ( contact.id = membership.contact_id AND contact.is_deleted = 0 ) WHERE membership.membership_type_id = %2 AND activity.activity_date_time >= '$startDate' AND activity.activity_date_time <= '$endDate 23:59:59' AND {$testClause}"; $params = [ 1 => [self::$_renewalActType, 'Integer'], 2 => [$membershipTypeId, 'Integer'], ]; $memberCount = CRM_Core_DAO::singleValueQuery($query, $params); return (int) $memberCount; } /** * @param int $contactID * @param int $membershipTypeID * @param bool $is_test * @param string $changeToday * @param int $modifiedID * @param $customFieldsFormatted * @param $numRenewTerms * @param int $membershipID * @param $pending * @param int $contributionRecurID * @param $membershipSource * @param $isPayLater * @param int $campaignId * @param array $formDates * @param null|CRM_Contribute_BAO_Contribution $contribution * @param array $lineItems * * @return array * @throws \CRM_Core_Exception * @throws \CiviCRM_API3_Exception */ public static function processMembership($contactID, $membershipTypeID, $is_test, $changeToday, $modifiedID, $customFieldsFormatted, $numRenewTerms, $membershipID, $pending, $contributionRecurID, $membershipSource, $isPayLater, $campaignId, $formDates = [], $contribution = NULL, $lineItems = []) { $renewalMode = $updateStatusId = FALSE; $allStatus = CRM_Member_PseudoConstant::membershipStatus(); $format = '%Y%m%d'; $statusFormat = '%Y-%m-%d'; $membershipTypeDetails = CRM_Member_BAO_MembershipType::getMembershipTypeDetails($membershipTypeID); $dates = []; $ids = []; // CRM-7297 - allow membership type to be be changed during renewal so long as the parent org of new membershipType // is the same as the parent org of an existing membership of the contact $currentMembership = CRM_Member_BAO_Membership::getContactMembership($contactID, $membershipTypeID, $is_test, $membershipID, TRUE ); if ($currentMembership) { $renewalMode = TRUE; // Do NOT do anything. //1. membership with status : PENDING/CANCELLED (CRM-2395) //2. Paylater/IPN renew. CRM-4556. if ($pending || in_array($currentMembership['status_id'], [ array_search('Pending', $allStatus), // CRM-15475 array_search('Cancelled', CRM_Member_PseudoConstant::membershipStatus(NULL, " name = 'Cancelled' ", 'name', FALSE, TRUE)), ])) { $memParams = [ 'id' => $currentMembership['id'], 'contribution' => $contribution, 'status_id' => $currentMembership['status_id'], 'start_date' => $currentMembership['start_date'], 'end_date' => $currentMembership['end_date'], 'line_item' => $lineItems, 'join_date' => $currentMembership['join_date'], 'membership_type_id' => $membershipTypeID, 'max_related' => !empty($membershipTypeDetails['max_related']) ? $membershipTypeDetails['max_related'] : NULL, 'membership_activity_status' => ($pending || $isPayLater) ? 'Scheduled' : 'Completed', ]; if ($contributionRecurID) { $memParams['contribution_recur_id'] = $contributionRecurID; } // @todo stop passing $ids - it is empty $membership = self::create($memParams, $ids); return [$membership, $renewalMode, $dates]; } // Check and fix the membership if it is STALE self::fixMembershipStatusBeforeRenew($currentMembership, $changeToday); // Now Renew the membership if (!$currentMembership['is_current_member']) { // membership is not CURRENT // CRM-7297 Membership Upsell - calculate dates based on new membership type $dates = CRM_Member_BAO_MembershipType::getRenewalDatesForMembershipType($currentMembership['id'], $changeToday, $membershipTypeID, $numRenewTerms ); $currentMembership['join_date'] = CRM_Utils_Date::customFormat($currentMembership['join_date'], $format); foreach (['start_date', 'end_date'] as $dateType) { $currentMembership[$dateType] = CRM_Utils_Array::value($dateType, $formDates); if (empty($currentMembership[$dateType])) { $currentMembership[$dateType] = CRM_Utils_Array::value($dateType, $dates); } } $currentMembership['is_test'] = $is_test; if (!empty($membershipSource)) { $currentMembership['source'] = $membershipSource; } else { $currentMembership['source'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $currentMembership['id'], 'source' ); } if (!empty($currentMembership['id'])) { $ids['membership'] = $currentMembership['id']; } $memParams = $currentMembership; $memParams['membership_type_id'] = $membershipTypeID; //set the log start date. $memParams['log_start_date'] = CRM_Utils_Date::customFormat($dates['log_start_date'], $format); } else { // CURRENT Membership $membership = new CRM_Member_DAO_Membership(); $membership->id = $currentMembership['id']; $membership->find(TRUE); // CRM-7297 Membership Upsell - calculate dates based on new membership type $dates = CRM_Member_BAO_MembershipType::getRenewalDatesForMembershipType($membership->id, $changeToday, $membershipTypeID, $numRenewTerms ); // Insert renewed dates for CURRENT membership $memParams = []; $memParams['join_date'] = CRM_Utils_Date::isoToMysql($membership->join_date); $memParams['start_date'] = CRM_Utils_Array::value('start_date', $formDates, CRM_Utils_Date::isoToMysql($membership->start_date)); $memParams['end_date'] = CRM_Utils_Array::value('end_date', $formDates); if (empty($memParams['end_date'])) { $memParams['end_date'] = CRM_Utils_Array::value('end_date', $dates); } $memParams['membership_type_id'] = $membershipTypeID; //set the log start date. $memParams['log_start_date'] = CRM_Utils_Date::customFormat($dates['log_start_date'], $format); //CRM-18067 if (!empty($membershipSource)) { $memParams['source'] = $membershipSource; } elseif (empty($membership->source)) { $memParams['source'] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $currentMembership['id'], 'source' ); } if (!empty($currentMembership['id'])) { $ids['membership'] = $currentMembership['id']; } $memParams['membership_activity_status'] = ($pending || $isPayLater) ? 'Scheduled' : 'Completed'; } //CRM-4555 if ($pending) { $updateStatusId = array_search('Pending', $allStatus); } } else { // NEW Membership $memParams = [ 'contact_id' => $contactID, 'membership_type_id' => $membershipTypeID, ]; if (!$pending) { $dates = CRM_Member_BAO_MembershipType::getDatesForMembershipType($membershipTypeID, NULL, NULL, NULL, $numRenewTerms); foreach (['join_date', 'start_date', 'end_date'] as $dateType) { $memParams[$dateType] = CRM_Utils_Array::value($dateType, $formDates); if (empty($memParams[$dateType])) { $memParams[$dateType] = CRM_Utils_Array::value($dateType, $dates); } } $status = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate(CRM_Utils_Date::customFormat($dates['start_date'], $statusFormat ), CRM_Utils_Date::customFormat($dates['end_date'], $statusFormat ), CRM_Utils_Date::customFormat($dates['join_date'], $statusFormat ), 'today', TRUE, $membershipTypeID, $memParams ); $updateStatusId = CRM_Utils_Array::value('id', $status); } else { // if IPN/Pay-Later set status to: PENDING $updateStatusId = array_search('Pending', $allStatus); } if (!empty($membershipSource)) { $memParams['source'] = $membershipSource; } $memParams['is_test'] = $is_test; $memParams['is_pay_later'] = $isPayLater; } // Putting this in an IF is precautionary as it seems likely that it would be ignored if empty, but // perhaps shouldn't be? if ($contributionRecurID) { $memParams['contribution_recur_id'] = $contributionRecurID; } //CRM-4555 //if we decided status here and want to skip status //calculation in create( ); then need to pass 'skipStatusCal'. if ($updateStatusId) { $memParams['status_id'] = $updateStatusId; $memParams['skipStatusCal'] = TRUE; } //since we are renewing, //make status override false. $memParams['is_override'] = FALSE; //CRM-4027, create log w/ individual contact. if ($modifiedID) { $ids['userId'] = $modifiedID; $memParams['is_for_organization'] = TRUE; } else { $ids['userId'] = $contactID; } //inherit campaign from contrib page. if (isset($campaignId)) { $memParams['campaign_id'] = $campaignId; } $memParams['contribution'] = $contribution; $memParams['custom'] = $customFieldsFormatted; // Load all line items & process all in membership. Don't do in contribution. // Relevant tests in api_v3_ContributionPageTest. $memParams['line_item'] = $lineItems; // @todo stop passing $ids (membership and userId may be set by this point) $membership = self::create($memParams, $ids); // not sure why this statement is here, seems quite odd :( - Lobo: 12/26/2010 // related to: http://forum.civicrm.org/index.php/topic,11416.msg49072.html#msg49072 $membership->find(TRUE); return [$membership, $renewalMode, $dates]; } /** * Get line items representing the default price set. * * @param int $membershipOrg * @param int $membershipTypeID * @param float $total_amount * @param int $priceSetId * * @return array */ public static function setQuickConfigMembershipParameters($membershipOrg, $membershipTypeID, $total_amount, $priceSetId) { $priceSets = current(CRM_Price_BAO_PriceSet::getSetDetail($priceSetId)); // The name of the price field corresponds to the membership_type organization contact. $params = [ 'price_set_id' => $priceSetId, 'name' => $membershipOrg, ]; $results = []; CRM_Price_BAO_PriceField::retrieve($params, $results); if (!empty($results)) { $fields[$results['id']] = $priceSets['fields'][$results['id']]; $fid = $results['id']; $editedFieldParams = [ 'price_field_id' => $results['id'], 'membership_type_id' => $membershipTypeID, ]; $results = []; CRM_Price_BAO_PriceFieldValue::retrieve($editedFieldParams, $results); $fields[$fid]['options'][$results['id']] = $priceSets['fields'][$fid]['options'][$results['id']]; if (!empty($total_amount)) { $fields[$fid]['options'][$results['id']]['amount'] = $total_amount; } } $fieldID = key($fields); $returnParams = [ 'price_set_id' => $priceSetId, 'price_sets' => $priceSets, 'fields' => $fields, 'price_fields' => [ 'price_' . $fieldID => CRM_Utils_Array::value('id', $results), ], ]; return $returnParams; } /** * Update the status of all deceased members to deceased. * * @return int * Count of updated contacts. * * @throws \CiviCRM_API3_Exception * @throws \CRM_Core_Exception */ protected static function updateDeceasedMembersStatuses() { $count = 0; $deceasedStatusId = CRM_Core_PseudoConstant::getKey('CRM_Member_BAO_Membership', 'status_id', 'Deceased'); // 'create' context for buildOptions returns only if enabled. $allStatus = self::buildOptions('status_id', 'create'); if (array_key_exists($deceasedStatusId, $allStatus) === FALSE) { // Deceased status is an admin status & is required. We want to fail early if // it is not present or active. // We could make the case 'some databases just don't use deceased so we will check // for the presence of a deceased contact in the DB before rejecting. if (CRM_Core_DAO::singleValueQuery(' SELECT count(*) FROM civicrm_contact WHERE is_deceased = 0' )) { throw new CRM_Core_Exception( ts("Deceased Membership status is missing or not active. Click here to check.", [1 => CRM_Utils_System::url('civicrm/admin/member/membershipStatus', 'reset=1')] )); } } $deceasedDAO = CRM_Core_DAO::executeQuery( $baseQuery = " SELECT membership.id as membership_id FROM civicrm_membership membership INNER JOIN civicrm_contact ON membership.contact_id = civicrm_contact.id INNER JOIN civicrm_membership_type ON membership.membership_type_id = civicrm_membership_type.id AND civicrm_membership_type.is_active = 1 WHERE membership.is_test = 0 AND civicrm_contact.is_deceased = 1 AND membership.status_id <> %1 ", [1 => [$deceasedStatusId, 'Integer']] ); while ($deceasedDAO->fetch()) { civicrm_api3('membership', 'create', [ 'id' => $deceasedDAO->membership_id, 'status_id' => $deceasedStatusId, 'createActivity' => TRUE, 'skipStatusCal' => TRUE, 'skipRecentView' => TRUE, ]); $count++; } return $count; } /** * Process price set and line items. * * @param int $membershipId * @param array $lineItem * * @throws \CiviCRM_API3_Exception */ public function processPriceSet($membershipId, $lineItem) { //FIXME : need to move this too if (!$membershipId || !is_array($lineItem) || CRM_Utils_System::isNull($lineItem) ) { return; } foreach ($lineItem as $priceSetId => $values) { if (!$priceSetId) { continue; } foreach ($values as $line) { $line['entity_table'] = 'civicrm_membership'; $line['entity_id'] = $membershipId; CRM_Price_BAO_LineItem::create($line); } } } /** * Retrieve the contribution id for the associated Membership id. * @todo we should get this off the line item * * @param int $membershipId * Membership id. * @param bool $all * if more than one payment associated with membership id need to be returned. * * @return int|int[] * contribution id * @todo we should get this off the line item * */ public static function getMembershipContributionId($membershipId, $all = FALSE) { $membershipPayment = new CRM_Member_DAO_MembershipPayment(); $membershipPayment->membership_id = $membershipId; if ($all && $membershipPayment->find()) { $contributionIds = []; while ($membershipPayment->fetch()) { $contributionIds[] = $membershipPayment->contribution_id; } return $contributionIds; } if ($membershipPayment->find(TRUE)) { return $membershipPayment->contribution_id; } return NULL; } /** * The function checks and updates the status of all membership records for a given domain using the * calc_membership_status and update_contact_membership APIs. * * IMPORTANT: * Sending renewal reminders has been migrated from this job to the Scheduled Reminders function as of 4.3. * * @return array * * @throws \CiviCRM_API3_Exception * @throws \CRM_Core_Exception */ public static function updateAllMembershipStatus() { // Tests for this function are in api_v3_JobTest. Please add tests for all updates. $updateCount = $processCount = self::updateDeceasedMembersStatuses(); // We want all of the statuses as id => name, even the disabled ones (cf. // CRM-15475), to identify which are Pending, Deceased, Cancelled, and // Expired. $allStatus = CRM_Member_BAO_Membership::buildOptions('status_id', 'validate'); $allTypes = CRM_Member_PseudoConstant::membershipType(); // This query retrieves ALL memberships of active types. $baseQuery = " SELECT civicrm_membership.id as membership_id, civicrm_membership.is_override as is_override, civicrm_membership.status_override_end_date as status_override_end_date, civicrm_membership.membership_type_id as membership_type_id, civicrm_membership.status_id as status_id, civicrm_membership.join_date as join_date, civicrm_membership.start_date as start_date, civicrm_membership.end_date as end_date, civicrm_membership.source as source, civicrm_contact.id as contact_id, civicrm_membership.owner_membership_id as owner_membership_id, civicrm_membership.contribution_recur_id as recur_id FROM civicrm_membership INNER JOIN civicrm_contact ON ( civicrm_membership.contact_id = civicrm_contact.id ) INNER JOIN civicrm_membership_type ON (civicrm_membership.membership_type_id = civicrm_membership_type.id AND civicrm_membership_type.is_active = 1) WHERE civicrm_membership.is_test = 0 AND civicrm_contact.is_deceased = 0 "; $deceaseStatusId = array_search('Deceased', $allStatus); $pendingStatusId = array_search('Pending', $allStatus); $cancelledStatusId = array_search('Cancelled', $allStatus); // Expired is not reserved so might not exist. A value of `0` won't break. $expiredStatusId = array_search('Expired', $allStatus) ?: 0; $query = $baseQuery . " AND civicrm_membership.is_override IS NOT NULL AND civicrm_membership.status_override_end_date IS NOT NULL"; $dao1 = CRM_Core_DAO::executeQuery($query); while ($dao1->fetch()) { self::processOverriddenUntilDateMembership($dao1); } $query = $baseQuery . " AND (civicrm_membership.is_override = 0 OR civicrm_membership.is_override IS NULL) AND civicrm_membership.status_id NOT IN (%1, %2, %3, %4) AND civicrm_membership.owner_membership_id IS NULL "; $params = [ 1 => [$pendingStatusId, 'Integer'], 2 => [$cancelledStatusId, 'Integer'], 3 => [$expiredStatusId, 'Integer'], 4 => [$deceaseStatusId, 'Integer'], ]; $dao2 = CRM_Core_DAO::executeQuery($query, $params); while ($dao2->fetch()) { // echo "."; $processCount++; // Put common parameters into array for easy access $memberParams = [ 'id' => $dao2->membership_id, 'status_id' => $dao2->status_id, 'contact_id' => $dao2->contact_id, 'membership_type_id' => $dao2->membership_type_id, 'membership_type' => $allTypes[$dao2->membership_type_id], 'join_date' => $dao2->join_date, 'start_date' => $dao2->start_date, 'end_date' => $dao2->end_date, 'source' => $dao2->source, 'skipStatusCal' => TRUE, 'skipRecentView' => TRUE, ]; // CRM-7248: added excludeIsAdmin param to the following fn call to prevent moving to admin statuses //get the membership status as per id. $newStatus = civicrm_api('membership_status', 'calc', [ 'membership_id' => $dao2->membership_id, 'version' => 3, 'ignore_admin_only' => TRUE, ], TRUE ); $statusId = CRM_Utils_Array::value('id', $newStatus); //process only when status change. if ($statusId && $statusId != $dao2->status_id ) { //take all params that need to save. $memParams = $memberParams; $memParams['status_id'] = $statusId; $memParams['createActivity'] = TRUE; $memParams['version'] = 3; // Unset columns which should remain unchanged from their current saved // values. This avoids race condition in which these values may have // been changed by other processes. unset( $memParams['contact_id'], $memParams['membership_type_id'], $memParams['membership_type'], $memParams['join_date'], $memParams['start_date'], $memParams['end_date'], $memParams['source'] ); //since there is change in status. //process member record. civicrm_api('membership', 'create', $memParams); $updateCount++; } } $result['is_error'] = 0; $result['messages'] = ts('Processed %1 membership records. Updated %2 records.', [ 1 => $processCount, 2 => $updateCount, ]); return $result; } /** * Set is_override for the 'overridden until date' membership to * False and clears the 'until date' field in case the 'until date' * is equal or after today date. * * @param CRM_Core_DAO $membership * The membership to be processed * * @throws \CiviCRM_API3_Exception */ private static function processOverriddenUntilDateMembership($membership) { $isOverriddenUntilDate = !empty($membership->is_override) && !empty($membership->status_override_end_date); if (!$isOverriddenUntilDate) { return; } $todayDate = new DateTime(); $todayDate->setTime(0, 0); $overrideEndDate = new DateTime($membership->status_override_end_date); $overrideEndDate->setTime(0, 0); $datesDifference = $todayDate->diff($overrideEndDate); $daysDifference = (int) $datesDifference->format('%R%a'); if ($daysDifference <= 0) { $params = [ 'id' => $membership->membership_id, 'is_override' => FALSE, 'status_override_end_date' => 'null', ]; civicrm_api3('membership', 'create', $params); } } /** * Returns the membership types for a particular contact * who has lifetime membership without end date. * * @param int $contactID * @param bool $isTest * @param bool $onlyLifeTime * * @return array */ public static function getAllContactMembership($contactID, $isTest = FALSE, $onlyLifeTime = FALSE) { $contactMembershipType = []; if (!$contactID) { return $contactMembershipType; } $dao = new CRM_Member_DAO_Membership(); $dao->contact_id = $contactID; $pendingStatusId = array_search('Pending', CRM_Member_PseudoConstant::membershipStatus()); $dao->whereAdd("status_id != $pendingStatusId"); if ($isTest) { $dao->is_test = $isTest; } else { $dao->whereAdd('is_test IS NULL OR is_test = 0'); } if ($onlyLifeTime) { $dao->whereAdd('end_date IS NULL'); } $dao->find(); while ($dao->fetch()) { $membership = []; CRM_Core_DAO::storeValues($dao, $membership); $contactMembershipType[$dao->membership_type_id] = $membership; } return $contactMembershipType; } /** * Record contribution record associated with membership. * * @param array $params * Array of submitted params. * @param array $ids * (@return CRM_Contribute_BAO_Contribution * * @throws \CiviCRM_API3_Exception * @throws \CRM_Core_Exception */ public static function recordMembershipContribution(&$params, $ids = []) { if (!empty($ids)) { CRM_Core_Error::deprecatedFunctionWarning('no $ids array'); } $membershipId = $params['membership_id']; $contributionParams = []; $config = CRM_Core_Config::singleton(); $contributionParams['currency'] = $config->defaultCurrency; $contributionParams['receipt_date'] = (CRM_Utils_Array::value('receipt_date', $params)) ? $params['receipt_date'] : 'null'; $contributionParams['source'] = CRM_Utils_Array::value('contribution_source', $params); $contributionParams['non_deductible_amount'] = 'null'; $contributionParams['skipCleanMoney'] = TRUE; $contributionParams['payment_processor'] = CRM_Utils_Array::value('payment_processor_id', $params); $contributionSoftParams = CRM_Utils_Array::value('soft_credit', $params); $recordContribution = [ 'contact_id', 'fee_amount', 'total_amount', 'receive_date', 'financial_type_id', 'payment_instrument_id', 'trxn_id', 'invoice_id', 'is_test', 'contribution_status_id', 'check_number', 'campaign_id', 'is_pay_later', 'membership_id', 'tax_amount', 'skipLineItem', 'contribution_recur_id', 'pan_truncation', 'card_type_id', ]; foreach ($recordContribution as $f) { $contributionParams[$f] = CRM_Utils_Array::value($f, $params); } if (!empty($params['contribution_id'])) { $contributionParams['id'] = $params['contribution_id']; } // make entry in batch entity batch table if (!empty($params['batch_id'])) { $contributionParams['batch_id'] = $params['batch_id']; } if (!empty($params['contribution_contact_id'])) { // deal with possibility of a different person paying for contribution $contributionParams['contact_id'] = $params['contribution_contact_id']; } if (!empty($params['processPriceSet']) && !empty($params['lineItems']) ) { $contributionParams['line_item'] = CRM_Utils_Array::value('lineItems', $params, NULL); } $contribution = CRM_Contribute_BAO_Contribution::create($contributionParams); //CRM-13981, create new soft-credit record as to record payment from different person for this membership if (!empty($contributionSoftParams)) { if (!empty($params['batch_id'])) { foreach ($contributionSoftParams as $contributionSoft) { $contributionSoft['contribution_id'] = $contribution->id; $contributionSoft['currency'] = $contribution->currency; CRM_Contribute_BAO_ContributionSoft::add($contributionSoft); } } else { $contributionSoftParams['contribution_id'] = $contribution->id; $contributionSoftParams['currency'] = $contribution->currency; $contributionSoftParams['amount'] = $contribution->total_amount; CRM_Contribute_BAO_ContributionSoft::add($contributionSoftParams); } } // store contribution id $params['contribution_id'] = $contribution->id; // Create membership payment if it does not already exist $membershipPayment = civicrm_api3('MembershipPayment', 'get', [ 'contribution_id' => $contribution->id, ]); if (empty($membershipPayment['count'])) { civicrm_api3('MembershipPayment', 'create', [ 'membership_id' => $membershipId, 'contribution_id' => $contribution->id, ]); } return $contribution; } /** * @todo document me - I seem a bit out of date.... */ public static function _getActTypes() { $activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, FALSE, FALSE, 'name'); self::$_renewalActType = CRM_Utils_Array::key('Membership Renewal', $activityTypes); self::$_signupActType = CRM_Utils_Array::key('Membership Signup', $activityTypes); } /** * Get all Cancelled Membership(s) for a contact * * @param int $contactID * Contact id. * @param bool $isTest * Mode of payment. * * @return array * Array of membership type */ public static function getContactsCancelledMembership($contactID, $isTest = FALSE) { if (!$contactID) { return []; } $query = 'SELECT membership_type_id FROM civicrm_membership WHERE contact_id = %1 AND status_id = %2 AND is_test = %3'; $queryParams = [ 1 => [$contactID, 'Integer'], 2 => [ // CRM-15475 array_search( 'Cancelled', CRM_Member_PseudoConstant::membershipStatus( NULL, " name = 'Cancelled' ", 'name', FALSE, TRUE ) ), 'Integer', ], 3 => [$isTest, 'Boolean'], ]; $dao = CRM_Core_DAO::executeQuery($query, $queryParams); $cancelledMembershipIds = []; while ($dao->fetch()) { $cancelledMembershipIds[] = $dao->membership_type_id; } return $cancelledMembershipIds; } /** * Merges the memberships from otherContactID to mainContactID. * * General idea is to merge memberships in regards to their type. We * move the other contact’s contributions to the main contact’s * membership which has the same type (if any) and then we update * membership to avoid loosing `join_date`, `end_date`, and * `status_id`. In this function, we don’t touch the contributions * directly (CRM_Dedupe_Merger::moveContactBelongings() takes care * of it). * * This function adds new SQL queries to the $sqlQueries parameter. * * @param int $mainContactID * Contact id of main contact record. * @param int $otherContactID * Contact id of record which is going to merge. * @param array $sqlQueries * (reference) array of SQL queries to be executed. * @param array $tables * List of tables that have to be merged. * @param array $tableOperations * Special options/params for some tables to be merged. * * @see CRM_Dedupe_Merger::cpTables() */ public static function mergeMemberships($mainContactID, $otherContactID, &$sqlQueries, $tables, $tableOperations) { /* * If the user requests not to merge memberships but to add them, * just attribute the `civicrm_membership` to the * `$mainContactID`. We have to do this here since the general * merge process is bypassed by this function. */ if (array_key_exists("civicrm_membership", $tableOperations) && $tableOperations['civicrm_membership']['add']) { $sqlQueries[] = "UPDATE IGNORE civicrm_membership SET contact_id = $mainContactID WHERE contact_id = $otherContactID"; return; } /* * Retrieve all memberships that belongs to each contacts and * keep track of each membership type. */ $mainContactMemberships = []; $otherContactMemberships = []; $sql = "SELECT id, membership_type_id FROM civicrm_membership membership WHERE contact_id = %1"; $dao = CRM_Core_DAO::executeQuery($sql, [1 => [$mainContactID, "Integer"]]); while ($dao->fetch()) { $mainContactMemberships[$dao->id] = $dao->membership_type_id; } $dao = CRM_Core_DAO::executeQuery($sql, [1 => [$otherContactID, "Integer"]]); while ($dao->fetch()) { $otherContactMemberships[$dao->id] = $dao->membership_type_id; } /* * For each membership, move related contributions to the main * contact’s membership (by updating `membership_payments`). Then, * update membership’s `join_date` (if the other membership’s * join_date is older) and `end_date` (if the other membership’s * `end_date` is newer) and `status_id` (if the newly calculated * status is different). * * FIXME: what should we do if we have multiple memberships with * the same type (currently we only take the first one)? */ $newSql = []; foreach ($otherContactMemberships as $otherMembershipId => $otherMembershipTypeId) { if ($newMembershipId = array_search($otherMembershipTypeId, $mainContactMemberships)) { /* * Move other membership’s contributions to the main one only * if user requested to merge contributions. */ if (!empty($tables) && in_array('civicrm_contribution', $tables)) { $newSql[] = "UPDATE civicrm_membership_payment SET membership_id=$newMembershipId WHERE membership_id=$otherMembershipId"; } $sql = "SELECT * FROM civicrm_membership membership WHERE id = %1"; $newMembership = CRM_Member_DAO_Membership::findById($newMembershipId); $otherMembership = CRM_Member_DAO_Membership::findById($otherMembershipId); $updates = []; if (new DateTime($otherMembership->join_date) < new DateTime($newMembership->join_date)) { $updates["join_date"] = $otherMembership->join_date; } if (new DateTime($otherMembership->end_date) > new DateTime($newMembership->end_date)) { $updates["end_date"] = $otherMembership->end_date; } if (count($updates)) { /* * Update status */ $status = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate( isset($updates["start_date"]) ? $updates["start_date"] : $newMembership->start_date, isset($updates["end_date"]) ? $updates["end_date"] : $newMembership->end_date, isset($updates["join_date"]) ? $updates["join_date"] : $newMembership->join_date, 'today', FALSE, $newMembershipId, $newMembership ); if (!empty($status['id']) and $status['id'] != $newMembership->status_id) { $updates['status_id'] = $status['id']; } $updates_sql = []; foreach ($updates as $k => $v) { $updates_sql[] = "$k = '{$v}'"; } $newSql[] = sprintf("UPDATE civicrm_membership SET %s WHERE id=%s", implode(", ", $updates_sql), $newMembershipId); $newSql[] = sprintf("DELETE FROM civicrm_membership WHERE id=%s", $otherMembershipId); } } } $sqlQueries = array_merge($sqlQueries, $newSql); } }