
com.createsend.Segments Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of createsend-java Show documentation
Show all versions of createsend-java Show documentation
A Java library which implements the complete functionality of the Campaign Monitor API.
The newest version!
/**
* Copyright (c) 2011 Toby Brain
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.createsend;
import com.createsend.models.PagedResult;
import com.createsend.models.segments.ClauseResults;
import com.createsend.models.segments.RuleCreationFailureDetails;
import com.createsend.models.segments.RuleGroup;
import com.createsend.models.segments.Segment;
import com.createsend.models.subscribers.SubscriberWithJoinedDate;
import com.createsend.util.AuthenticationDetails;
import com.createsend.util.ErrorDeserialiser;
import com.createsend.util.JerseyClientImpl;
import com.createsend.util.exceptions.CreateSendException;
import com.createsend.util.jersey.JsonProvider;
import com.sun.jersey.core.util.MultivaluedMapImpl;
import javax.ws.rs.core.MultivaluedMap;
import java.util.Date;
/**
* Provides methods for accessing all
* Segment resources in the Campaign Monitor API
*/
public class Segments extends CreateSendBase {
private String segmentID;
/**
* Constructor used to create new segments.
* @param auth The authentication details to use when making API calls.
* May be either an OAuthAuthenticationDetails or
* ApiKeyAuthenticationDetails instance.
*/
public Segments(AuthenticationDetails auth) {
this(auth, null);
}
/**
* Constructor for working with existing segments.
* @param auth The authentication details to use when making API calls.
* May be either an OAuthAuthenticationDetails or
* ApiKeyAuthenticationDetails instance.
* @param segmentID The Segment ID to use when making API calls.
*/
public Segments(AuthenticationDetails auth, String segmentID) {
setSegmentID(segmentID);
this.jerseyClient = new JerseyClientImpl(auth);
}
/**
* Sets the current segment ID
* @param segmentID The ID of the segment to apply calls to.
*/
public void setSegmentID(String segmentID) {
this.segmentID = segmentID;
}
/**
* Gets the current segment ID.
* @return The current segment ID.
*/
public String getSegmentID() {
return segmentID;
}
/**
* Creates a new segment on the specified list.
* A successful call to this method will set the current segment ID to that of
* the newly created segment.
* @param listID The ID of the list to segment
* @param segment The segment details
* @return The ID of the newly created segment
* @throws CreateSendException Thrown when the API responds with HTTP Status >= 400
* @see
* Creating a segment
*/
public String create(String listID, Segment segment) throws CreateSendException {
segmentID = jerseyClient.post(String.class, segment,
new ErrorDeserialiser(), "segments", listID + ".json");
return segmentID;
}
/**
* Updates an existing segment with the specified details
* @param segment The details of the segment to update.
* The SegmentID
field of this object must be populated
* @throws CreateSendException Thrown when the API responds with HTTP Status >= 400
* @see
* Updating a segment
*/
public void update(Segment segment) throws CreateSendException {
jerseyClient.put(segment, new ErrorDeserialiser(),
"segments", segmentID + ".json");
}
/**
* Adds a new rule to an existing list segment
* @param ruleGroup The rule group specification
* @throws CreateSendException Raised when the API responds with HTTP Status >= 400
* @see
* Adding a segment rule
*/
public void addRuleGroup(RuleGroup ruleGroup) throws CreateSendException {
jerseyClient.post(String.class, ruleGroup, new ErrorDeserialiser(),
"segments", segmentID, "rules.json");
}
/**
* Gets the details of the specified segment, including all rules and the current number of
* active subscribers.
* @return The details of the specified segment.
* @throws CreateSendException Raised when the API responds with HTTP Status >= 400
* @see
* Getting a segment
*/
public Segment details() throws CreateSendException {
return jerseyClient.get(Segment.class, "segments", segmentID + ".json");
}
/**
* Gets a paged collection of active subscribers within the specified segment.
* @return The paged subscribers returned by the API call.
* @throws CreateSendException Thrown when the API responds with a HTTP Status >= 400
* @see
* Getting active subscribers
*/
public PagedResult active() throws CreateSendException {
return active(1, 1000, "email", "asc", false);
}
/**
* Gets a paged collection of active subscribers within the specified segment.
* @param includeTrackingPreference To include subscriber consent to track value in the results.
* @return The paged subscribers returned by the API call.
* @throws CreateSendException Thrown when the API responds with a HTTP Status >= 400
* @see
* Getting active subscribers
*/
public PagedResult active(boolean includeTrackingPreference) throws CreateSendException {
return active(1, 1000, "email", "asc", includeTrackingPreference);
}
/**
* Gets a paged collection of active subscribers within the specified segment.
* @param page The page number of results to get. Use null
for the default (page=1)
* @param pageSize The number of records to get on the current page. Use null
for the default.
* @param orderField The field used to order the results by. Use null
for the default.
* @param orderDirection The direction to order the results by. Use null
for the default.
* @return The paged subscribers returned by the API call.
* @throws CreateSendException Thrown when the API responds with a HTTP Status >= 400
* @see
* Getting active subscribers
*/
public PagedResult active(Integer page, Integer pageSize,
String orderField, String orderDirection) throws CreateSendException {
return active("", page, pageSize, orderField, orderDirection, false);
}
/**
* Gets a paged collection of active subscribers within the specified segment.
* @param page The page number of results to get. Use null
for the default (page=1)
* @param pageSize The number of records to get on the current page. Use null
for the default.
* @param orderField The field used to order the results by. Use null
for the default.
* @param orderDirection The direction to order the results by. Use null
for the default.
* @param includeTrackingPreference To include subscriber consent to track value in the results.
* @return The paged subscribers returned by the API call.
* @throws CreateSendException Thrown when the API responds with a HTTP Status >= 400
* @see
* Getting active subscribers
*/
public PagedResult active(Integer page, Integer pageSize, String orderField,
String orderDirection, boolean includeTrackingPreference) throws CreateSendException {
return active("", page, pageSize, orderField, orderDirection, includeTrackingPreference);
}
/**
* Gets a paged collection of active subscribers within the specified segment
* since the provided date.
* @param subscribedFrom The API will only return subscribers who became active on or after this date.
* This field is required
* @param page The page number of results to get. Use null
for the default (page=1)
* @param pageSize The number of records to get on the current page. Use null
for the default.
* @param orderField The field used to order the results by. Use null
for the default.
* @param orderDirection The direction to order the results by. Use null
for the default.
* @return The paged subscribers returned by the API call.
* @throws CreateSendException Thrown when the API responds with a HTTP Status >= 400
* @see
* Getting active subscribers
*/
public PagedResult active(Date subscribedFrom, Integer page, Integer pageSize,
String orderField, String orderDirection) throws CreateSendException {
return active(JsonProvider.ApiDateFormat.format(subscribedFrom),
page, pageSize, orderField, orderDirection, false);
}
/**
* Gets a paged collection of active subscribers within the specified segment
* since the provided date.
* @param subscribedFrom The API will only return subscribers who became active on or after this date.
* This field is required
* @param page The page number of results to get. Use null
for the default (page=1)
* @param pageSize The number of records to get on the current page. Use null
for the default.
* @param orderField The field used to order the results by. Use null
for the default.
* @param orderDirection The direction to order the results by. Use null
for the default.
* @param includeTrackingPreference To include subscriber consent to track value in the results.
* @return The paged subscribers returned by the API call.
* @throws CreateSendException Thrown when the API responds with a HTTP Status >= 400
* @see
* Getting active subscribers
*/
public PagedResult active(Date subscribedFrom, Integer page, Integer pageSize,
String orderField, String orderDirection, boolean includeTrackingPreference) throws CreateSendException {
return active(JsonProvider.ApiDateFormat.format(subscribedFrom),
page, pageSize, orderField, orderDirection, includeTrackingPreference);
}
private PagedResult active(String subscribedFrom, Integer page, Integer pageSize,
String orderField, String orderDirection, boolean includeTrackingPreference) throws CreateSendException {
MultivaluedMap queryString = new MultivaluedMapImpl();
queryString.add("date", subscribedFrom);
queryString.add("includetrackingpreference", String.valueOf(includeTrackingPreference));
return jerseyClient.getPagedResult(page, pageSize, orderField, orderDirection,
queryString, "segments", segmentID, "active.json");
}
/**
* Deletes the specified segment.
* @throws CreateSendException Raised when the API responds with HTTP Status >= 400
* @see
* Deleting a segment
*/
public void delete() throws CreateSendException {
jerseyClient.delete("segments", segmentID + ".json");
}
/**
* Deletes all rules from the specifed segment
* @throws CreateSendException Raised when the API responds with HTTP Status >= 400
* @see
* Deleting a segments rules
*/
public void deleteRules() throws CreateSendException {
jerseyClient.delete("segments", segmentID, "rules.json");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy