Merge pull request #4 from Mailtrain-org/development

Development
This commit is contained in:
Carlos Zamora Sanz 2019-08-14 14:35:19 +02:00 committed by GitHub
commit 6a8f139b43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
35 changed files with 543 additions and 133 deletions

View file

@ -721,7 +721,7 @@ export default class CUD extends Component {
templateEdit = <div> templateEdit = <div>
<Dropdown id="data_sourceCustom_type" label={t('type')} options={this.customTemplateTypeOptions}/> <Dropdown id="data_sourceCustom_type" label={t('type')} options={this.customTemplateTypeOptions}/>
<Dropdown id="data_sourceCustom_tag_language" label={t('Tag language')} options={this.customTemplateTagLanguageOptions} disabled={isEdit && (!customTemplateTypeKey || this.templateTypes[customTemplateTypeKey].isTagLanguageSelectorDisabledForEdit)}/> <Dropdown id="data_sourceCustom_tag_language" label={t('Tag language')} options={this.customTemplateTagLanguageOptions} disabled={isEdit}/>
{customTemplateTypeForm} {customTemplateTypeForm}
</div>; </div>;

View file

@ -277,7 +277,7 @@ export default class CustomContent extends Component {
{customTemplateTypeKey && this.templateTypes[customTemplateTypeKey].typeName} {customTemplateTypeKey && this.templateTypes[customTemplateTypeKey].typeName}
</StaticField> </StaticField>
<Dropdown id="data_sourceCustom_tag_language" label={t('Tag language')} options={this.customTemplateTagLanguageOptions} disabled={!customTemplateTypeKey || this.templateTypes[customTemplateTypeKey].isTagLanguageSelectorDisabledForEdit}/> <Dropdown id="data_sourceCustom_tag_language" label={t('Tag language')} options={this.customTemplateTagLanguageOptions} disabled={true}/>
{customTemplateTypeKey && getTypeForm(this, customTemplateTypeKey, true)} {customTemplateTypeKey && getTypeForm(this, customTemplateTypeKey, true)}

View file

@ -10,7 +10,7 @@ import {getCampaignLabels} from './helpers';
import {Table} from "../lib/table"; import {Table} from "../lib/table";
import {Button, Icon, ModalDialog} from "../lib/bootstrap-components"; import {Button, Icon, ModalDialog} from "../lib/bootstrap-components";
import axios from "../lib/axios"; import axios from "../lib/axios";
import {getPublicUrl, getUrl} from "../lib/urls"; import {getPublicUrl, getSandboxUrl, getUrl} from "../lib/urls";
import interoperableErrors from '../../../shared/interoperable-errors'; import interoperableErrors from '../../../shared/interoperable-errors';
import {CampaignStatus, CampaignType} from "../../../shared/campaigns"; import {CampaignStatus, CampaignType} from "../../../shared/campaigns";
import moment from 'moment-timezone'; import moment from 'moment-timezone';
@ -58,10 +58,29 @@ class PreviewForTestUserModalDialog extends Component {
async previewAsync() { async previewAsync() {
if (this.isFormWithoutErrors()) { if (this.isFormWithoutErrors()) {
const campaignCid = this.props.entity.cid; const entity = this.props.entity;
const campaignCid = entity.cid;
const [listCid, subscriptionCid] = this.getFormValue('testUser').split(':'); const [listCid, subscriptionCid] = this.getFormValue('testUser').split(':');
window.open(getPublicUrl(`archive/${campaignCid}/${listCid}/${subscriptionCid}`, {withLocale: true}), '_blank'); if (entity.type === CampaignType.RSS) {
const result = await axios.post(getUrl('rest/restricted-access-token'), {
method: 'rssPreview',
params: {
campaignCid,
listCid
}
});
const accessToken = result.data;
window.open(getSandboxUrl(`cpgs/rss-preview/${campaignCid}/${listCid}/${subscriptionCid}`, accessToken, {withLocale: true}), '_blank');
} else if (entity.type === CampaignType.REGULAR) {
window.open(getPublicUrl(`archive/${campaignCid}/${listCid}/${subscriptionCid}`, {withLocale: true}), '_blank');
} else {
throw new Error('Preview not supported');
}
} else { } else {
this.showFormValidation(); this.showFormValidation();
} }

View file

@ -0,0 +1,9 @@
'use strict';
export function getTagLanguageFromEntity(entity, entityTypeId) {
if (entityTypeId === 'template') {
return entity.tag_language;
} else if (entityTypeId === 'campaign') {
return entity.data.sourceCustom.tag_language;
}
}

View file

@ -27,7 +27,7 @@ class CKEditorSandbox extends Component {
const trustedUrlBase = getTrustedUrl(); const trustedUrlBase = getTrustedUrl();
const sandboxUrlBase = getSandboxUrl(); const sandboxUrlBase = getSandboxUrl();
const publicUrlBase = getPublicUrl(); const publicUrlBase = getPublicUrl();
const source = this.props.initialSource && base(this.props.initialSource, trustedUrlBase, sandboxUrlBase, publicUrlBase); const source = this.props.initialSource && base(this.props.initialSource, this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase);
this.state = { this.state = {
source source
@ -37,6 +37,7 @@ class CKEditorSandbox extends Component {
static propTypes = { static propTypes = {
entityTypeId: PropTypes.string, entityTypeId: PropTypes.string,
entityId: PropTypes.number, entityId: PropTypes.number,
tagLanguage: PropTypes.string,
initialSource: PropTypes.string initialSource: PropTypes.string
} }
@ -48,7 +49,7 @@ class CKEditorSandbox extends Component {
const preHtml = '<!doctype html><html><head><meta charset="utf-8"><title></title></head><body>'; const preHtml = '<!doctype html><html><head><meta charset="utf-8"><title></title></head><body>';
const postHtml = '</body></html>'; const postHtml = '</body></html>';
const unbasedSource = unbase(this.state.source, trustedUrlBase, sandboxUrlBase, publicUrlBase, true); const unbasedSource = unbase(this.state.source, this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase, true);
return { return {
source: unbasedSource, source: unbasedSource,

View file

@ -11,6 +11,7 @@ import {getTrustedUrl} from "./urls";
import {initialHeight} from "./sandboxed-ckeditor-shared"; import {initialHeight} from "./sandboxed-ckeditor-shared";
import {withComponentMixins} from "./decorator-helpers"; import {withComponentMixins} from "./decorator-helpers";
import {getTagLanguageFromEntity} from "./sandbox-common";
const navbarHeight = 34; // Sync this with navbarheight in sandboxed-ckeditor.scss const navbarHeight = 34; // Sync this with navbarheight in sandboxed-ckeditor.scss
@ -83,6 +84,7 @@ export class CKEditorHost extends Component {
const editorData = { const editorData = {
entityTypeId: this.props.entityTypeId, entityTypeId: this.props.entityTypeId,
entityId: this.props.entity.id, entityId: this.props.entity.id,
tagLanguage: getTagLanguageFromEntity(this.props.entity, this.props.entityTypeId),
initialSource: this.props.initialSource initialSource: this.props.initialSource
}; };

View file

@ -66,7 +66,7 @@ class CodeEditorSandbox extends Component {
const trustedUrlBase = getTrustedUrl(); const trustedUrlBase = getTrustedUrl();
const sandboxUrlBase = getSandboxUrl(); const sandboxUrlBase = getSandboxUrl();
const publicUrlBase = getPublicUrl(); const publicUrlBase = getPublicUrl();
const source = this.props.initialSource ? base(this.props.initialSource, trustedUrlBase, sandboxUrlBase, publicUrlBase) : defaultSource; const source = this.props.initialSource ? base(this.props.initialSource, this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase) : defaultSource;
this.state = { this.state = {
source, source,
@ -87,6 +87,7 @@ class CodeEditorSandbox extends Component {
static propTypes = { static propTypes = {
entityTypeId: PropTypes.string, entityTypeId: PropTypes.string,
entityId: PropTypes.number, entityId: PropTypes.number,
tagLanguage: PropTypes.string,
initialSource: PropTypes.string, initialSource: PropTypes.string,
sourceType: PropTypes.string, sourceType: PropTypes.string,
initialPreview: PropTypes.bool, initialPreview: PropTypes.bool,
@ -98,8 +99,8 @@ class CodeEditorSandbox extends Component {
const sandboxUrlBase = getSandboxUrl(); const sandboxUrlBase = getSandboxUrl();
const publicUrlBase = getPublicUrl(); const publicUrlBase = getPublicUrl();
return { return {
html: unbase(this.getHtml(), trustedUrlBase, sandboxUrlBase, publicUrlBase, true), html: unbase(this.getHtml(), this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase, true),
source: unbase(this.state.source, trustedUrlBase, sandboxUrlBase, publicUrlBase, true) source: unbase(this.state.source, this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase, true)
}; };
} }
@ -149,7 +150,7 @@ class CodeEditorSandbox extends Component {
}); });
if (!this.refreshTimeoutId) { if (!this.refreshTimeoutId) {
this.refreshTimeoutId = setTimeout(() => this.refresh(), refreshTimeout); this.refreshTimeoutId = setTimeout(this.refreshHandler, refreshTimeout);
} }
} }

View file

@ -9,6 +9,7 @@ import {UntrustedContentHost} from './untrusted';
import {Icon} from "./bootstrap-components"; import {Icon} from "./bootstrap-components";
import {getTrustedUrl} from "./urls"; import {getTrustedUrl} from "./urls";
import {withComponentMixins} from "./decorator-helpers"; import {withComponentMixins} from "./decorator-helpers";
import {getTagLanguageFromEntity} from "./sandbox-common";
@withComponentMixins([ @withComponentMixins([
withTranslation withTranslation
@ -75,6 +76,7 @@ export class CodeEditorHost extends Component {
const editorData = { const editorData = {
entityTypeId: this.props.entityTypeId, entityTypeId: this.props.entityTypeId,
entityId: this.props.entity.id, entityId: this.props.entity.id,
tagLanguage: getTagLanguageFromEntity(this.props.entity, this.props.entityTypeId),
initialSource: this.props.initialSource, initialSource: this.props.initialSource,
sourceType: this.props.sourceType, sourceType: this.props.sourceType,
initialPreview: this.state.preview, initialPreview: this.state.preview,

View file

@ -54,6 +54,7 @@ export class GrapesJSSandbox extends Component {
static propTypes = { static propTypes = {
entityTypeId: PropTypes.string, entityTypeId: PropTypes.string,
entityId: PropTypes.number, entityId: PropTypes.number,
tagLanguage: PropTypes.string,
initialSource: PropTypes.string, initialSource: PropTypes.string,
initialStyle: PropTypes.string, initialStyle: PropTypes.string,
sourceType: PropTypes.string sourceType: PropTypes.string
@ -75,8 +76,8 @@ export class GrapesJSSandbox extends Component {
const sandboxUrlBase = getSandboxUrl(); const sandboxUrlBase = getSandboxUrl();
const publicUrlBase = getPublicUrl(); const publicUrlBase = getPublicUrl();
const source = unbase(editor.getHtml(), trustedUrlBase, sandboxUrlBase, publicUrlBase, true); const source = unbase(editor.getHtml(), this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase, true);
const style = unbase(editor.getCss(), trustedUrlBase, sandboxUrlBase, publicUrlBase, true); const style = unbase(editor.getCss(), this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase, true);
let html; let html;
@ -96,7 +97,7 @@ export class GrapesJSSandbox extends Component {
const preHtml = '<!doctype html><html><head><meta charset="utf-8"><title></title></head><body>'; const preHtml = '<!doctype html><html><head><meta charset="utf-8"><title></title></head><body>';
const postHtml = '</body></html>'; const postHtml = '</body></html>';
html = preHtml + unbase(htmlBody, trustedUrlBase, sandboxUrlBase, publicUrlBase, true) + postHtml; html = preHtml + unbase(htmlBody, this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase, true) + postHtml;
} }
@ -603,8 +604,8 @@ export class GrapesJSSandbox extends Component {
config.plugins.push('gjs-preset-newsletter'); config.plugins.push('gjs-preset-newsletter');
} }
config.components = props.initialSource ? base(props.initialSource, trustedUrlBase, sandboxUrlBase, publicUrlBase) : defaultSource; config.components = props.initialSource ? base(props.initialSource, this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase) : defaultSource;
config.style = props.initialStyle ? base(props.initialStyle, trustedUrlBase, sandboxUrlBase, publicUrlBase) : defaultStyle; config.style = props.initialStyle ? base(props.initialStyle, this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase) : defaultStyle;
config.plugins.push('mailtrain-remove-buttons'); config.plugins.push('mailtrain-remove-buttons');

View file

@ -10,6 +10,7 @@ import {Icon} from "./bootstrap-components";
import {getTrustedUrl} from "./urls"; import {getTrustedUrl} from "./urls";
import {withComponentMixins} from "./decorator-helpers"; import {withComponentMixins} from "./decorator-helpers";
import {GrapesJSSourceType} from "./sandboxed-grapesjs-shared"; import {GrapesJSSourceType} from "./sandboxed-grapesjs-shared";
import {getTagLanguageFromEntity} from "./sandbox-common";
@withComponentMixins([ @withComponentMixins([
withTranslation withTranslation
@ -57,6 +58,7 @@ export class GrapesJSHost extends Component {
const editorData = { const editorData = {
entityTypeId: this.props.entityTypeId, entityTypeId: this.props.entityTypeId,
entityId: this.props.entity.id, entityId: this.props.entity.id,
tagLanguage: getTagLanguageFromEntity(this.props.entity, this.props.entityTypeId),
initialSource: this.props.initialSource, initialSource: this.props.initialSource,
initialStyle: this.props.initialStyle, initialStyle: this.props.initialStyle,
sourceType: this.props.sourceType sourceType: this.props.sourceType

View file

@ -27,6 +27,7 @@ class MosaicoSandbox extends Component {
static propTypes = { static propTypes = {
entityTypeId: PropTypes.string, entityTypeId: PropTypes.string,
entityId: PropTypes.number, entityId: PropTypes.number,
tagLanguage: PropTypes.string,
templateId: PropTypes.number, templateId: PropTypes.number,
templatePath: PropTypes.string, templatePath: PropTypes.string,
initialModel: PropTypes.string, initialModel: PropTypes.string,
@ -60,9 +61,9 @@ class MosaicoSandbox extends Component {
html = juice(html); html = juice(html);
return { return {
html: unbase(html, trustedUrlBase, sandboxUrlBase, publicUrlBase, true), html: unbase(html, this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase, true),
model: unbase(this.viewModel.exportJSON(), trustedUrlBase, sandboxUrlBase, publicUrlBase), model: unbase(this.viewModel.exportJSON(), this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase),
metadata: unbase(this.viewModel.exportMetadata(), trustedUrlBase, sandboxUrlBase, publicUrlBase) metadata: unbase(this.viewModel.exportMetadata(), this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase)
}; };
} }
@ -128,8 +129,8 @@ class MosaicoSandbox extends Component {
const trustedUrlBase = getTrustedUrl(); const trustedUrlBase = getTrustedUrl();
const sandboxUrlBase = getSandboxUrl(); const sandboxUrlBase = getSandboxUrl();
const publicUrlBase = getPublicUrl(); const publicUrlBase = getPublicUrl();
const metadata = this.props.initialMetadata && JSON.parse(base(this.props.initialMetadata, trustedUrlBase, sandboxUrlBase, publicUrlBase)); const metadata = this.props.initialMetadata && JSON.parse(base(this.props.initialMetadata, this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase));
const model = this.props.initialModel && JSON.parse(base(this.props.initialModel, trustedUrlBase, sandboxUrlBase, publicUrlBase)); const model = this.props.initialModel && JSON.parse(base(this.props.initialModel, this.props.tagLanguage, trustedUrlBase, sandboxUrlBase, publicUrlBase));
const template = this.props.templateId ? getSandboxUrl(`mosaico/templates/${this.props.templateId}/index.html`) : this.props.templatePath; const template = this.props.templateId ? getSandboxUrl(`mosaico/templates/${this.props.templateId}/index.html`) : this.props.templatePath;
const allPlugins = plugins.concat(window.mosaicoPlugins); const allPlugins = plugins.concat(window.mosaicoPlugins);

View file

@ -9,6 +9,7 @@ import {UntrustedContentHost} from './untrusted';
import {Icon} from "./bootstrap-components"; import {Icon} from "./bootstrap-components";
import {getTrustedUrl} from "./urls"; import {getTrustedUrl} from "./urls";
import {withComponentMixins} from "./decorator-helpers"; import {withComponentMixins} from "./decorator-helpers";
import {getTagLanguageFromEntity} from "./sandbox-common";
@withComponentMixins([ @withComponentMixins([
@ -58,6 +59,7 @@ export class MosaicoHost extends Component {
const editorData = { const editorData = {
entityTypeId: this.props.entityTypeId, entityTypeId: this.props.entityTypeId,
entityId: this.props.entity.id, entityId: this.props.entity.id,
tagLanguage: getTagLanguageFromEntity(this.props.entity, this.props.entityTypeId),
templateId: this.props.templateId, templateId: this.props.templateId,
templatePath: this.props.templatePath, templatePath: this.props.templatePath,
initialModel: this.props.initialModel, initialModel: this.props.initialModel,

View file

@ -15,9 +15,15 @@ function getTrustedUrl(path) {
return mailtrainConfig.trustedUrlBase + (path || ''); return mailtrainConfig.trustedUrlBase + (path || '');
} }
function getSandboxUrl(path, customRestrictedAccessToken) { function getSandboxUrl(path, customRestrictedAccessToken, opts) {
const localRestrictedAccessToken = customRestrictedAccessToken || restrictedAccessToken; const localRestrictedAccessToken = customRestrictedAccessToken || restrictedAccessToken;
return mailtrainConfig.sandboxUrlBase + localRestrictedAccessToken + '/' + (path || ''); const url = new URL(localRestrictedAccessToken + '/' + (path || ''), mailtrainConfig.sandboxUrlBase);
if (opts && opts.withLocale) {
url.searchParams.append('locale', i18n.language);
}
return url.toString();
} }
function getPublicUrl(path, opts) { function getPublicUrl(path, opts) {

View file

@ -376,7 +376,7 @@ export default class CUD extends Component {
{typeForm} {typeForm}
<Dropdown id="tag_language" label={t('Tag language')} options={tagLanguageOptions} disabled={isEdit && (!typeKey || this.templateTypes[typeKey].isTagLanguageSelectorDisabledForEdit)}/> <Dropdown id="tag_language" label={t('Tag language')} options={tagLanguageOptions} disabled={isEdit}/>
</> </>
} }

View file

@ -167,7 +167,6 @@ export function getTemplateTypes(t, prefix = '', entityTypeId = ResourceType.TEM
mutState.setIn([prefix + 'mosaicoTemplate', 'value'], null); mutState.setIn([prefix + 'mosaicoTemplate', 'value'], null);
} }
}, },
isTagLanguageSelectorDisabledForEdit: true,
validate: state => { validate: state => {
const mosaicoTemplate = state.getIn([prefix + 'mosaicoTemplate', 'value']); const mosaicoTemplate = state.getIn([prefix + 'mosaicoTemplate', 'value']);
if (!mosaicoTemplate) { if (!mosaicoTemplate) {
@ -256,7 +255,6 @@ export function getTemplateTypes(t, prefix = '', entityTypeId = ResourceType.TEM
}, },
afterTagLanguageChange: (mutState, isEdit) => { afterTagLanguageChange: (mutState, isEdit) => {
}, },
isTagLanguageSelectorDisabledForEdit: false,
validate: state => { validate: state => {
} }
}; };
@ -346,7 +344,6 @@ export function getTemplateTypes(t, prefix = '', entityTypeId = ResourceType.TEM
}, },
afterTagLanguageChange: (mutState, isEdit) => { afterTagLanguageChange: (mutState, isEdit) => {
}, },
isTagLanguageSelectorDisabledForEdit: false,
validate: state => { validate: state => {
} }
}; };
@ -408,7 +405,6 @@ export function getTemplateTypes(t, prefix = '', entityTypeId = ResourceType.TEM
}, },
afterTagLanguageChange: (mutState, isEdit) => { afterTagLanguageChange: (mutState, isEdit) => {
}, },
isTagLanguageSelectorDisabledForEdit: false,
validate: state => { validate: state => {
} }
}; };
@ -495,7 +491,6 @@ export function getTemplateTypes(t, prefix = '', entityTypeId = ResourceType.TEM
}, },
afterTagLanguageChange: (mutState, isEdit) => { afterTagLanguageChange: (mutState, isEdit) => {
}, },
isTagLanguageSelectorDisabledForEdit: false,
validate: state => { validate: state => {
} }
}; };
@ -683,6 +678,14 @@ export function getEditForm(owner, typeKey, prefix = '') {
<Trans i18nKey="rssEntryImageUrl">RSS entry image URL</Trans> <Trans i18nKey="rssEntryImageUrl">RSS entry image URL</Trans>
</td> </td>
</tr> </tr>
<tr>
<th scope="row">
{tg('RSS_ENTRY_CUSTOM_TAGS')}
</th>
<td>
<Trans>Mailtrain custom tags. The custom tags can be passed in via <code>mt:entries-json</code> element in RSS entry. The text contents of the elements is interpreted as JSON-formatted object..</Trans>
</td>
</tr>
</tbody> </tbody>
</table> </table>
</div>} </div>}

View file

@ -12,6 +12,15 @@ Optional parameters:
--mongoHost XXX - sets mongo host (default: mongo) --mongoHost XXX - sets mongo host (default: mongo)
--redisHost XXX - sets redis host (default: redis) --redisHost XXX - sets redis host (default: redis)
--mySqlHost XXX - sets mysql host (default: mysql) --mySqlHost XXX - sets mysql host (default: mysql)
--withLdap - use if you want to enable LDAP authentication
--ldapHost XXX - LDAP Host for authentication (default: ldap)
--ldapPort XXX - LDAP port (default: 389)
--ldapSecure - use if you want to use LDAP with ldaps protocol
--ldapBindUser XXX - User for LDAP connexion
--ldapBindPass XXX - Password for LDAP connexion
--ldapFilter XXX - LDAP filter
--ldapBaseDN XXX - LDAP base DN
--ldapUidTag XXX - LDAP UID tag (e.g. uid/cn/username)
EOF EOF
exit 1 exit 1
@ -22,6 +31,15 @@ urlBaseTrusted=http://localhost:3000
urlBaseSandbox=http://localhost:3003 urlBaseSandbox=http://localhost:3003
urlBasePublic=http://localhost:3004 urlBasePublic=http://localhost:3004
wwwProxy=false wwwProxy=false
withLdap=false
ldapHost=ldap
ldapPort=389
ldapSecure=false
ldapBindUser=""
ldapBindPass=""
ldapFilter=""
ldapBaseDN=""
ldapUidTag=""
mongoHost=mongo mongoHost=mongo
redisHost=redis redisHost=redis
mySqlHost=mysql mySqlHost=mysql
@ -59,12 +77,73 @@ while [ $# -gt 0 ]; do
mySqlHost="$2" mySqlHost="$2"
shift 2 shift 2
;; ;;
--withLdap)
withLdap=true
shift 1
;;
--ldapHost)
ldapHost="$2"
shift 2
;;
--ldapPort)
ldapPort="$2"
shift 2
;;
--ldapSecure)
ldapSecure=true
shift 1
;;
--ldapBindUser)
ldapBindUser="$2"
shift 2
;;
--ldapBindPass)
ldapBindPass="$2"
shift 2
;;
--ldapFilter)
ldapFilter="$2"
shift 2
;;
--ldapBaseDN)
ldapBaseDN="$2"
shift 2
;;
--ldapUidTag)
ldapUidTag="$2"
shift 2
;;
*) *)
echo "Error: unrecognized option $1." echo "Error: unrecognized option $1."
printHelp printHelp
esac esac
done done
if [ "$ldapBindUser" == "" ]; then
ldapBindUserLine=""
else
ldapBindUserLine="bindUser: $ldapBindUser"
fi
if [ "$ldapBindPass" == "" ]; then
ldapBindPassLine=""
else
ldapBindPassLine="bindPassword: $ldapBindPass"
fi
if [ "$ldapFilter" == "" ]; then
ldapFilterLine=""
else
ldapFilterLine="filter: $ldapFilter"
fi
if [ "$ldapBaseDN" == "" ]; then
ldapBaseDNLine=""
else
ldapBaseDNLine="baseDN: $ldapBaseDN"
fi
if [ "$ldapUidTag" == "" ]; then
ldapUidTagLine=""
else
ldapUidTagLine="uidTag: $ldapUidTag"
fi
cat > server/config/production.yaml <<EOT cat > server/config/production.yaml <<EOT
www: www:
@ -93,6 +172,17 @@ builtinZoneMTA:
queue: queue:
processes: 5 processes: 5
ldap:
enabled: $withLdap
host: $ldapHost
port: $ldapPort
secure: $ldapSecure
$ldapBindUserLine
$ldapBindPassLine
$ldapFilterLine
$ldapBaseDNLine
$ldapUidTagLine
EOT EOT
cat > server/services/workers/reports/config/production.yaml <<EOT cat > server/services/workers/reports/config/production.yaml <<EOT

View file

@ -157,7 +157,7 @@
"campaign_plural": "Campaigns", "campaign_plural": "Campaigns",
"contentOfTheSelectedCampaignWillBeCopied": "Content of the selected campaign will be copied into this campaign.", "contentOfTheSelectedCampaignWillBeCopied": "Content of the selected campaign will be copied into this campaign.",
"renderUrl": "Render URL", "renderUrl": "Render URL",
"ifAMessageIsSentThenThisUrlWillBePosTed": "If a message is sent then this URL will be POSTed to using Merge Tags as POST body. Use this if you want to generate the HTML message yourself.", "ifAMessageIsSentThenThisUrlWillBePosTed": "If a message is sent then this URL will be POSTed to using Merge Tags as POST body. Use this if you want to generate the HTML message yourself. Example: http://www.example.com/foo",
"deletingCampaign": "Deleting campaign ...", "deletingCampaign": "Deleting campaign ...",
"campaignDeleted": "Campaign deleted", "campaignDeleted": "Campaign deleted",
"formCannotBeEditedBecauseTheCampaignIs": "Form cannot be edited because the campaign is currently being sent out. Wait till the sending is finished and refresh.", "formCannotBeEditedBecauseTheCampaignIs": "Form cannot be edited because the campaign is currently being sent out. Wait till the sending is finished and refresh.",

View file

@ -23,6 +23,7 @@ const api = require('./routes/api');
const reports = require('./routes/reports'); const reports = require('./routes/reports');
const quickReports = require('./routes/quick-reports'); const quickReports = require('./routes/quick-reports');
const subscriptions = require('./routes/subscriptions'); const subscriptions = require('./routes/subscriptions');
const campaigns = require('./routes/campaigns');
const subscription = require('./routes/subscription'); const subscription = require('./routes/subscription');
const sandboxedMosaico = require('./routes/sandboxed-mosaico'); const sandboxedMosaico = require('./routes/sandboxed-mosaico');
const sandboxedCKEditor = require('./routes/sandboxed-ckeditor'); const sandboxedCKEditor = require('./routes/sandboxed-ckeditor');
@ -60,7 +61,7 @@ const index = require('./routes/index');
const interoperableErrors = require('../shared/interoperable-errors'); const interoperableErrors = require('../shared/interoperable-errors');
const { getTrustedUrl } = require('./lib/urls'); const { getTrustedUrl, getSandboxUrl, getPublicUrl } = require('./lib/urls');
const { AppType } = require('../shared/app'); const { AppType } = require('../shared/app');
@ -274,6 +275,8 @@ async function createApp(appType) {
useWith404Fallback('/files', files); useWith404Fallback('/files', files);
} }
useWith404Fallback('/cpgs', await campaigns.getRouter(appType)); // This needs to be different from "campaigns", which is already used by the UI
useWith404Fallback('/mosaico', await sandboxedMosaico.getRouter(appType)); useWith404Fallback('/mosaico', await sandboxedMosaico.getRouter(appType));
useWith404Fallback('/ckeditor', await sandboxedCKEditor.getRouter(appType)); useWith404Fallback('/ckeditor', await sandboxedCKEditor.getRouter(appType));
useWith404Fallback('/grapesjs', await sandboxedGrapesJS.getRouter(appType)); useWith404Fallback('/grapesjs', await sandboxedGrapesJS.getRouter(appType));
@ -357,11 +360,21 @@ async function createApp(appType) {
if (err instanceof interoperableErrors.NotLoggedInError) { if (err instanceof interoperableErrors.NotLoggedInError) {
return res.redirect(getTrustedUrl('/login?next=' + encodeURIComponent(req.originalUrl))); return res.redirect(getTrustedUrl('/login?next=' + encodeURIComponent(req.originalUrl)));
} else { } else {
let publicPath;
if (appType === AppType.TRUSTED) {
publicPath = getTrustedUrl();
} else if (appType === AppType.SANDBOXED) {
publicPath = getSandboxUrl();
} else if (appType === AppType.PUBLIC) {
publicPath = getPublicUrl();
}
log.verbose('HTTP', err); log.verbose('HTTP', err);
res.status(err.status || 500); res.status(err.status || 500);
res.render('error', { res.render('error', {
message: err.message, message: err.message,
error: config.sendStacktracesToClient ? err : {} error: config.sendStacktracesToClient ? err : {},
publicPath
}); });
} }
} }

View file

@ -139,6 +139,8 @@ ldap:
# method: ldapjs # method: ldapjs
host: localhost host: localhost
port: 3002 port: 3002
# secure enables ldaps protocol if true. Otherwise, ldap protocol is used.
secure: false
baseDN: ou=users,dc=company baseDN: ou=users,dc=company
filter: (|(username={{username}})(mail={{username}})) filter: (|(username={{username}})(mail={{username}}))
# Username field in LDAP (uid/cn/username) # Username field in LDAP (uid/cn/username)

View file

@ -1,7 +1,11 @@
'use strict'; 'use strict';
const {renderTag} = require('../../shared/templates');
function convertFileURLs(sourceCustom, fromEntityType, fromEntityId, toEntityType, toEntityId) { function convertFileURLs(sourceCustom, fromEntityType, fromEntityId, toEntityType, toEntityId) {
const tagLanguage = sourceCustom.tag_language;
function convertText(text) { function convertText(text) {
if (text) { if (text) {
const fromUrl = `/files/${fromEntityType}/file/${fromEntityId}`; const fromUrl = `/files/${fromEntityType}/file/${fromEntityId}`;
@ -10,10 +14,10 @@ function convertFileURLs(sourceCustom, fromEntityType, fromEntityId, toEntityTyp
const encodedFromUrl = encodeURIComponent(fromUrl); const encodedFromUrl = encodeURIComponent(fromUrl);
const encodedToUrl = encodeURIComponent(toUrl); const encodedToUrl = encodeURIComponent(toUrl);
text = text.split('[URL_BASE]' + fromUrl).join('[URL_BASE]' + toUrl); text = text.split(renderTag(tagLanguage, 'URL_BASE') + fromUrl).join(renderTag(tagLanguage, 'URL_BASE') + toUrl);
text = text.split('[SANDBOX_URL_BASE]' + fromUrl).join('[SANDBOX_URL_BASE]' + toUrl); text = text.split(renderTag(tagLanguage,'SANDBOX_URL_BASE') + fromUrl).join(renderTag(tagLanguage, 'SANDBOX_URL_BASE') + toUrl);
text = text.split('[ENCODED_URL_BASE]' + encodedFromUrl).join('[ENCODED_URL_BASE]' + encodedToUrl); text = text.split(renderTag(tagLanguage, 'ENCODED_URL_BASE') + encodedFromUrl).join(renderTag(tagLanguage, 'ENCODED_URL_BASE') + encodedToUrl);
text = text.split('[ENCODED_SANDBOX_URL_BASE]' + encodedFromUrl).join('[ENCODED_SANDBOX_URL_BASE]' + encodedToUrl); text = text.split(renderTag(tagLanguage, 'ENCODED_SANDBOX_URL_BASE') + encodedFromUrl).join(renderTag(tagLanguage, 'ENCODED_SANDBOX_URL_BASE') + encodedToUrl);
} }
return text; return text;

View file

@ -5,6 +5,8 @@ const log = require('./log');
const path = require('path'); const path = require('path');
const senders = require('./senders'); const senders = require('./senders');
const bluebird = require('bluebird'); const bluebird = require('bluebird');
const feedparser = require('feedparser-promised');
const {getPublicUrl} = require('./urls');
let messageTid = 0; let messageTid = 0;
let feedcheckProcess; let feedcheckProcess;
@ -42,5 +44,79 @@ function scheduleCheck() {
messageTid++; messageTid++;
} }
async function fetch(url) {
const httpOptions = {
uri: url,
headers: {
'user-agent': 'Mailtrain',
'accept': 'text/html,application/xhtml+xml'
}
};
const items = await feedparser.parse(httpOptions);
const entries = [];
for (const item of items) {
const entry = {
title: item.title,
date: item.date || item.pubdate || item.pubDate || new Date(),
guid: item.guid || item.link,
link: item.link,
content: item.description || item.summary,
summary: item.summary || item.description,
imageUrl: item.image.url,
};
if ('mt:entries-json' in item) {
entry.customTags = JSON.parse(item['mt:entries-json']['#'])
}
entries.push(entry);
}
return entries;
}
async function getEntryForPreview(url) {
const entries = await fetch(url);
let entry;
if (entries.length === 0) {
entry = {
title: "Lorem Ipsum",
date: new Date(),
guid: "c21bc6c8-d351-4000-aa1f-e7ff928084cd",
link: "http://www.example.com/sample-item.html",
content: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer gravida a purus in commodo. Sed risus eros, pharetra sit amet sagittis vel, porta nec magna. Sed sollicitudin blandit ornare. Pellentesque a lacinia dui. Etiam ullamcorper, nisl at pharetra fringilla, enim nunc blandit quam, nec vestibulum purus lorem in urna.",
summary: "Aliquam malesuada nibh eget arcu egestas, id pellentesque urna egestas. Phasellus lacus est, viverra in dolor quis, aliquet elementum nisi. Donec hendrerit elit pretium vehicula pharetra. Pellentesque aliquam elit id rutrum imperdiet. Phasellus ac enim at lacus sodales condimentum vitae quis sapien.",
imageUrl: getPublicUrl('static/mailtrain-notext.png'),
customTags: {
placerat: "Ligula at consequat",
accumsan: {
mauris: "Placerat nec justo",
ornare: "Nunc egestas"
},
fringilla: 42,
purus: [
{
consequat: "Vivamus",
enim: "volutpat blandit"
},
{
consequat: "Phasellus",
enim: "sed semper"
}
]
}
};
} else {
entry = entries[0];
}
return entry;
}
module.exports.spawn = bluebird.promisify(spawn); module.exports.spawn = bluebird.promisify(spawn);
module.exports.scheduleCheck = scheduleCheck; module.exports.scheduleCheck = scheduleCheck;
module.exports.fetch = fetch;
module.exports.getEntryForPreview = getEntryForPreview;

View file

@ -43,7 +43,7 @@ class MessageSender {
Option #1 Option #1
- settings.type in [MessageType.REGULAR, MessageType.TRIGGERED, MessageType.TEST] - settings.type in [MessageType.REGULAR, MessageType.TRIGGERED, MessageType.TEST]
- campaignCid / campaignId - campaign / campaignCid / campaignId
- listId / listCid [optional if campaign is provided] - listId / listCid [optional if campaign is provided]
- sendConfigurationId [optional if campaign is provided] - sendConfigurationId [optional if campaign is provided]
- attachments [optional] - attachments [optional]
@ -68,7 +68,9 @@ class MessageSender {
if (this.type === MessageType.REGULAR || this.type === MessageType.TRIGGERED || this.type === MessageType.TEST) { if (this.type === MessageType.REGULAR || this.type === MessageType.TRIGGERED || this.type === MessageType.TEST) {
this.isMassMail = true; this.isMassMail = true;
if (settings.campaignCid) { if (settings.campaign) {
this.campaign = settings.campaign;
} else if (settings.campaignCid) {
this.campaign = await campaigns.rawGetByTx(tx, 'cid', settings.campaignCid); this.campaign = await campaigns.rawGetByTx(tx, 'cid', settings.campaignCid);
} else if (settings.campaignId) { } else if (settings.campaignId) {
this.campaign = await campaigns.rawGetByTx(tx, 'id', settings.campaignId); this.campaign = await campaigns.rawGetByTx(tx, 'id', settings.campaignId);
@ -155,6 +157,12 @@ class MessageSender {
this.tagLanguage = this.campaign.data.sourceCustom.tag_language; this.tagLanguage = this.campaign.data.sourceCustom.tag_language;
} }
if (settings.rssEntry !== undefined) {
this.rssEntry = settings.rssEntry;
} else if (this.campaign && this.campaign.data.rssEntry) {
this.rssEntry = this.campaign.data.rssEntry;
}
enforce(this.renderedHtml || (this.campaign && this.campaign.source === CampaignSource.URL) || this.tagLanguage); enforce(this.renderedHtml || (this.campaign && this.campaign.source === CampaignSource.URL) || this.tagLanguage);
if (settings.subject !== undefined) { if (settings.subject !== undefined) {
@ -192,14 +200,16 @@ class MessageSender {
form[key] = mergeTags[key]; form[key] = mergeTags[key];
} }
const sourceUrl = campaign.data.sourceUrl;
const response = await request.post({ const response = await request.post({
uri: campaign.sourceUrl, uri: sourceUrl,
form, form,
resolveWithFullResponse: true resolveWithFullResponse: true
}); });
if (response.statusCode !== 200) { if (response.statusCode !== 200) {
throw new Error(`Received status code ${httpResponse.statusCode} from ${campaign.sourceUrl}`); throw new Error(`Received status code ${httpResponse.statusCode} from ${sourceUrl}`);
} }
html = response.body; html = response.body;
@ -245,11 +255,11 @@ class MessageSender {
}; };
} }
_getExtraTags(campaign) { _getExtraTags() {
const tags = {}; const tags = {};
if (campaign && campaign.type === CampaignType.RSS_ENTRY) { if (this.rssEntry) {
const rssEntry = campaign.data.rssEntry; const rssEntry = this.rssEntry;
tags['RSS_ENTRY_TITLE'] = rssEntry.title; tags['RSS_ENTRY_TITLE'] = rssEntry.title;
tags['RSS_ENTRY_DATE'] = rssEntry.date; tags['RSS_ENTRY_DATE'] = rssEntry.date;
tags['RSS_ENTRY_LINK'] = rssEntry.link; tags['RSS_ENTRY_LINK'] = rssEntry.link;
@ -311,7 +321,7 @@ class MessageSender {
const flds = this.listsFieldsGrouped.get(list.id); const flds = this.listsFieldsGrouped.get(list.id);
if (!mergeTags) { if (!mergeTags) {
mergeTags = fields.getMergeTags(flds, subscriptionGrouped, this._getExtraTags(campaign)); mergeTags = fields.getMergeTags(flds, subscriptionGrouped, this._getExtraTags());
} }
for (const fld of flds) { for (const fld of flds) {
@ -539,7 +549,8 @@ async function sendQueuedMessage(queuedMessage) {
subject: msgData.subject, subject: msgData.subject,
tagLanguage: msgData.tagLanguage, tagLanguage: msgData.tagLanguage,
renderedHtml: msgData.renderedHtml, renderedHtml: msgData.renderedHtml,
renderedText: msgData.renderedText renderedText: msgData.renderedText,
rssEntry: msgData.rssEntry
}); });
const campaign = cs.campaign; const campaign = cs.campaign;
@ -696,9 +707,9 @@ async function queueSubscriptionMessage(sendConfigurationId, to, subject, encryp
senders.scheduleCheck(); senders.scheduleCheck();
} }
async function getMessage(campaignCid, listCid, subscriptionCid) { async function getMessage(campaignCid, listCid, subscriptionCid, settings) {
const cs = new MessageSender(); const cs = new MessageSender();
await cs._init({type: MessageType.REGULAR, campaignCid, listCid}); await cs._init({type: MessageType.REGULAR, campaignCid, listCid, ...settings});
const campaign = cs.campaign; const campaign = cs.campaign;
const list = cs.listsByCid.get(listCid); const list = cs.listsByCid.get(listCid);
@ -732,7 +743,7 @@ async function getMessage(campaignCid, listCid, subscriptionCid) {
} }
const flds = cs.listsFieldsGrouped.get(list.id); const flds = cs.listsFieldsGrouped.get(list.id);
const mergeTags = fields.getMergeTags(flds, subscriptionGrouped, cs._getExtraTags(campaign)); const mergeTags = fields.getMergeTags(flds, subscriptionGrouped, cs._getExtraTags());
return await cs._getMessage(mergeTags, list, subscriptionGrouped, false); return await cs._getMessage(mergeTags, list, subscriptionGrouped, false);
} }

View file

@ -20,7 +20,8 @@ let authMode = 'local';
let LdapStrategy; let LdapStrategy;
let ldapStrategyOpts; let ldapStrategyOpts;
if (config.ldap.enabled) { if (config.ldap.enabled) {
if (!config.ldap.method || config.ldap.method == 'ldapjs') { const ldapProtocol = config.ldap.secure ? 'ldaps' : 'ldap';
if (!config.ldap.method || config.ldap.method === 'ldapjs') {
try { try {
LdapStrategy = require('passport-ldapjs').Strategy; // eslint-disable-line global-require LdapStrategy = require('passport-ldapjs').Strategy; // eslint-disable-line global-require
authMode = 'ldapjs'; authMode = 'ldapjs';
@ -28,7 +29,7 @@ if (config.ldap.enabled) {
ldapStrategyOpts = { ldapStrategyOpts = {
server: { server: {
url: 'ldap://' + config.ldap.host + ':' + config.ldap.port url: ldapProtocol + '://' + config.ldap.host + ':' + config.ldap.port
}, },
base: config.ldap.baseDN, base: config.ldap.baseDN,
search: { search: {
@ -46,7 +47,7 @@ if (config.ldap.enabled) {
} }
} }
if (!LdapStrategy && (!config.ldap.method || config.ldap.method == 'ldapauth')) { if (!LdapStrategy && (!config.ldap.method || config.ldap.method === 'ldapauth')) {
try { try {
LdapStrategy = require('passport-ldapauth').Strategy; // eslint-disable-line global-require LdapStrategy = require('passport-ldapauth').Strategy; // eslint-disable-line global-require
authMode = 'ldapauth'; authMode = 'ldapauth';
@ -54,7 +55,7 @@ if (config.ldap.enabled) {
ldapStrategyOpts = { ldapStrategyOpts = {
server: { server: {
url: 'ldap://' + config.ldap.host + ':' + config.ldap.port, url: ldapProtocol + '://' + config.ldap.host + ':' + config.ldap.port,
searchBase: config.ldap.baseDN, searchBase: config.ldap.baseDN,
searchFilter: config.ldap.filter, searchFilter: config.ldap.filter,
searchAttributes: [config.ldap.uidTag, config.ldap.nameTag, 'mail'], searchAttributes: [config.ldap.uidTag, config.ldap.nameTag, 'mail'],

View file

@ -358,7 +358,7 @@ async function rawGetByTx(tx, key, id) {
.first(); .first();
if (!entity) { if (!entity) {
throw new interoperableErrors.NotFoundError(); throw new shares.throwPermissionDenied();
} }
if (entity.lists) { if (entity.lists) {
@ -425,6 +425,16 @@ async function getById(context, id, withPermissions = true, content = Content.AL
}); });
} }
async function getByCid(context, cid) {
return await knex.transaction(async tx => {
const entity = await rawGetByTx(tx,'cid', cid);
await shares.enforceEntityPermissionTx(tx, context, 'campaign', entity.id, 'view');
return entity;
});
}
async function _validateAndPreprocess(tx, context, entity, isCreate, content) { async function _validateAndPreprocess(tx, context, entity, isCreate, content) {
if (content === Content.ALL || content === Content.WITHOUT_SOURCE_CUSTOM || content === Content.RSS_ENTRY) { if (content === Content.ALL || content === Content.WITHOUT_SOURCE_CUSTOM || content === Content.RSS_ENTRY) {
await namespaceHelpers.validateEntity(tx, entity); await namespaceHelpers.validateEntity(tx, entity);
@ -991,6 +1001,10 @@ async function testSend(context, data) {
attachments: [] attachments: []
}; };
if (campaign.type === CampaignType.RSS) {
messageData.rssEntry = await feedcheck.getEntryForPreview(campaign.data.feedUrl);
}
const attachments = await files.listTx(tx, contextHelpers.getAdminContext(), 'campaign', 'attachment', campaignId); const attachments = await files.listTx(tx, contextHelpers.getAdminContext(), 'campaign', 'attachment', campaignId);
for (const attachment of attachments) { for (const attachment of attachments) {
messageData.attachments.push({ messageData.attachments.push({
@ -1057,6 +1071,30 @@ async function testSend(context, data) {
senders.scheduleCheck(); senders.scheduleCheck();
} }
async function getRssPreview(context, campaignCid, listCid, subscriptionCid) {
const campaign = await getByCid(context, campaignCid);
await shares.enforceEntityPermission(context, 'campaign', campaign.id, 'view');
enforce(campaign.type === CampaignType.RSS);
const list = await lists.getByCid(context, listCid);
await shares.enforceEntityPermission(context, 'list', list.id, 'viewTestSubscriptions');
const subscription = await subscriptions.getByCid(context, list.id, subscriptionCid);
if (!subscription.is_test) {
shares.throwPermissionDenied();
}
const settings = {
campaign, // this prevents message sender from fetching the campaign again
rssEntry: await feedcheck.getEntryForPreview(campaign.data.feedUrl)
};
return await messageSender.getMessage(campaignCid, listCid, subscriptionCid, settings);
}
module.exports.Content = Content; module.exports.Content = Content;
module.exports.hash = hash; module.exports.hash = hash;
@ -1073,6 +1111,7 @@ module.exports.listLinkClicksDTAjax = listLinkClicksDTAjax;
module.exports.getByIdTx = getByIdTx; module.exports.getByIdTx = getByIdTx;
module.exports.getById = getById; module.exports.getById = getById;
module.exports.getByCid = getByCid;
module.exports.create = create; module.exports.create = create;
module.exports.createRssTx = createRssTx; module.exports.createRssTx = createRssTx;
module.exports.updateWithConsistencyCheck = updateWithConsistencyCheck; module.exports.updateWithConsistencyCheck = updateWithConsistencyCheck;
@ -1101,4 +1140,5 @@ module.exports.getStatisticsOpened = getStatisticsOpened;
module.exports.fetchRssCampaign = fetchRssCampaign; module.exports.fetchRssCampaign = fetchRssCampaign;
module.exports.testSend = testSend; module.exports.testSend = testSend;
module.exports.getRssPreview = getRssPreview;

View file

@ -8,6 +8,7 @@ const interoperableErrors = require('../../shared/interoperable-errors');
const shares = require('./shares'); const shares = require('./shares');
const validators = require('../../shared/validators'); const validators = require('../../shared/validators');
const shortid = require('shortid'); const shortid = require('shortid');
const slugify = require('slugify');
const segments = require('./segments'); const segments = require('./segments');
const { formatDate, formatBirthday, parseDate, parseBirthday } = require('../../shared/date'); const { formatDate, formatBirthday, parseDate, parseBirthday } = require('../../shared/date');
const { getFieldColumn } = require('../../shared/lists'); const { getFieldColumn } = require('../../shared/lists');
@ -542,7 +543,7 @@ async function createTx(tx, context, listId, entity) {
let columnName; let columnName;
if (!fieldType.grouped) { if (!fieldType.grouped) {
columnName = ('custom_' + '_' + shortid.generate()).toLowerCase().replace(/[^a-z0-9_]/g, '_'); columnName = ('custom_' + slugify(entity.name, '_').substring(0, 32) + '_' + shortid.generate()).toLowerCase().replace(/[^a-z0-9_]/g, '_');
} }
const filteredEntity = filterObject(entity, allowedKeysCreate); const filteredEntity = filterObject(entity, allowedKeysCreate);

View file

@ -420,7 +420,7 @@ async function list(context, listId, grouped, offset, limit) {
} }
async function listTestUsersTx(tx, context, listId, segmentId, grouped) { async function listTestUsersTx(tx, context, listId, segmentId, grouped) {
await shares.enforceEntityPermissionTx(tx, context, 'list', listId, 'viewSubscriptions'); await shares.enforceEntityPermissionTx(tx, context, 'list', listId, 'viewTestSubscriptions');
let entitiesQry = tx(getSubscriptionTableName(listId)).orderBy('id', 'asc').where('is_test', true).limit(TEST_USERS_LIST_LIMIT); let entitiesQry = tx(getSubscriptionTableName(listId)).orderBy('id', 'asc').where('is_test', true).limit(TEST_USERS_LIST_LIMIT);

View file

@ -0,0 +1,69 @@
'use strict';
const passport = require('../lib/passport');
const routerFactory = require('../lib/router-async');
const campaigns = require('../models/campaigns');
const lists = require('../models/lists');
const users = require('../models/users');
const contextHelpers = require('../lib/context-helpers');
const { AppType } = require('../../shared/app');
users.registerRestrictedAccessTokenMethod('rssPreview', async ({campaignCid, listCid}) => {
const campaign = await campaigns.getByCid(contextHelpers.getAdminContext(), campaignCid);
const list = await lists.getByCid(contextHelpers.getAdminContext(), listCid);
return {
permissions: {
'campaign': {
[campaign.id]: new Set(['view'])
},
'list': {
[list.id]: new Set(['view', 'viewTestSubscriptions'])
}
}
};
});
async function getRouter(appType) {
const router = routerFactory.create();
if (appType === AppType.SANDBOXED) {
router.get('/rss-preview/:campaign/:list/:subscription', passport.loggedIn, (req, res, next) => {
campaigns.getRssPreview(req.context, req.params.campaign, req.params.list, req.params.subscription)
.then(result => {
const {html} = result;
if (html.match(/<\/body\b/i)) {
res.render('partials/tracking-scripts', {
layout: 'archive/layout-raw'
}, (err, scripts) => {
if (err) {
return next(err);
}
const htmlWithScripts = scripts ? html.replace(/<\/body\b/i, match => scripts + match) : html;
res.render('archive/view', {
layout: 'archive/layout-raw',
message: htmlWithScripts
});
});
} else {
res.render('archive/view', {
layout: 'archive/layout-wrapped',
message: html
});
}
})
.catch(err => next(err));
});
}
return router;
}
module.exports.getRouter = getRouter;

View file

@ -141,7 +141,7 @@ async function getRouter(appType) {
const tmpl = await mosaicoTemplates.getById(req.context, castToInteger(req.params.mosaicoTemplateId)); const tmpl = await mosaicoTemplates.getById(req.context, castToInteger(req.params.mosaicoTemplateId));
res.set('Content-Type', 'text/html'); res.set('Content-Type', 'text/html');
res.send(base(tmpl.data.html, getTrustedUrl(), getSandboxUrl('', req.context), getPublicUrl())); res.send(base(tmpl.data.html, tmpl.tag_language, getTrustedUrl(), getSandboxUrl('', req.context), getPublicUrl()));
}); });
// Mosaico looks for block thumbnails in edres folder relative to index.html of the template. We respond to such requests here. // Mosaico looks for block thumbnails in edres folder relative to index.html of the template. We respond to such requests here.

View file

@ -1,8 +1,6 @@
'use strict'; 'use strict';
const passport = require('../lib/passport'); const passport = require('../lib/passport');
const shares = require('../models/shares');
const contextHelpers = require('../lib/context-helpers');
const router = require('../lib/router-async').create(); const router = require('../lib/router-async').create();
const subscriptions = require('../models/subscriptions'); const subscriptions = require('../models/subscriptions');
const {castToInteger} = require('../lib/helpers'); const {castToInteger} = require('../lib/helpers');

View file

@ -3,10 +3,10 @@
const config = require('../lib/config'); const config = require('../lib/config');
const log = require('../lib/log'); const log = require('../lib/log');
const knex = require('../lib/knex'); const knex = require('../lib/knex');
const feedparser = require('feedparser-promised');
const { CampaignType, CampaignStatus, CampaignSource } = require('../../shared/campaigns'); const { CampaignType, CampaignStatus, CampaignSource } = require('../../shared/campaigns');
const campaigns = require('../models/campaigns'); const campaigns = require('../models/campaigns');
const contextHelpers = require('../lib/context-helpers'); const contextHelpers = require('../lib/context-helpers');
const {fetch} = require('../lib/feedcheck');
require('../lib/fork'); require('../lib/fork');
const { tLog } = require('../lib/translate'); const { tLog } = require('../lib/translate');
@ -19,39 +19,6 @@ let running = false;
let periodicTimeout = null; let periodicTimeout = null;
async function fetch(url) {
const httpOptions = {
uri: url,
headers: {
'user-agent': 'Mailtrain',
'accept': 'text/html,application/xhtml+xml'
}
};
const items = await feedparser.parse(httpOptions);
const entries = [];
for (const item of items) {
const entry = {
title: item.title,
date: item.date || item.pubdate || item.pubDate || new Date(),
guid: item.guid || item.link,
link: item.link,
content: item.description || item.summary,
summary: item.summary || item.description,
imageUrl: item.image.url,
};
if ('mt:entries-json' in item) {
entry.customTags = JSON.parse(item['mt:entries-json']['#'])
}
entries.push(entry);
}
return entries;
}
async function run() { async function run() {
if (running) { if (running) {
return; return;

View file

@ -4,6 +4,6 @@ if (!process.env.NODE_CONFIG_DIR) {
process.env.NODE_CONFIG_DIR = __dirname + '/../../config'; process.env.NODE_CONFIG_DIR = __dirname + '/../../config';
} }
const config = require('server/setup/knex/config'); const config = require('../../lib/config');
module.exports = config; module.exports = config;

View file

@ -0,0 +1,69 @@
'use strict';
const config = require('../config');
const knex = require('../../../lib/knex');
const shortid = require('shortid');
const slugify = require('slugify');
async function run() {
const lists = await knex('lists');
for (const list of lists) {
console.log(`Processing list ${list.id}`);
const fields = await knex('custom_fields').whereNotNull('column').where('list', list.id);
const fieldsMap = new Map();
const prefixesMap = new Map();
for (const field of fields) {
const oldName = field.column;
const newName = ('custom_' + slugify(field.name, '_').substring(0, 32) + '_' + shortid.generate()).toLowerCase().replace(/[^a-z0-9_]/g, '_');
const formerPrefix = ('custom_' + slugify(field.name, '_') + '_').toLowerCase().replace(/[^a-z0-9_]/g, '');
fieldsMap.set(oldName, newName);
prefixesMap.set(formerPrefix, newName);
await knex('custom_fields').where('id', field.id).update('column', newName);
await knex.schema.table('subscription__' + list.id, table => {
table.renameColumn(oldName, newName);
table.renameColumn('source_' + oldName, 'source_' + newName);
});
}
function processRule(rule) {
if (rule.type === 'all' || rule.type === 'some' || rule.type === 'none') {
for (const childRule of rule.rules) {
processRule(childRule);
}
} else {
let newName = fieldsMap.get(rule.column);
if (newName) {
rule.column = newName;
return;
}
for (const [formerPrefix, newName] of prefixesMap.entries()) {
if (rule.column.startsWith(formerPrefix)) {
rule.column = newName;
return;
}
}
}
}
const segments = await knex('segments').where('list', list.id);
for (const segment of segments) {
const settings = JSON.parse(segment.settings);
processRule(settings.rootRule);
await knex('segments').where('id', segment.id).update({settings: JSON.stringify(settings)});
}
}
await knex('knex_migrations').where('name', '20190726150000_shorten_field_column_names.js').del();
console.log('All fixes done');
process.exit();
}
run().catch(err => console.error(err));

View file

@ -11,6 +11,8 @@ const { EntityVals: TriggerEntityVals, EventVals: TriggerEventVals } = require('
const { SubscriptionSource } = require('../../../../shared/lists'); const { SubscriptionSource } = require('../../../../shared/lists');
const {DOMParser, XMLSerializer} = require('xmldom'); const {DOMParser, XMLSerializer} = require('xmldom');
const log = require('../../../lib/log'); const log = require('../../../lib/log');
const shortid = require('shortid');
const slugify = require('slugify');
const entityTypesAddNamespace = ['list', 'custom_form', 'template', 'campaign', 'report', 'report_template', 'user']; const entityTypesAddNamespace = ['list', 'custom_form', 'template', 'campaign', 'report', 'report_template', 'user'];
const shareableEntityTypes = ['list', 'custom_form', 'template', 'campaign', 'report', 'report_template', 'namespace', 'send_configuration', 'mosaico_template']; const shareableEntityTypes = ['list', 'custom_form', 'template', 'campaign', 'report', 'report_template', 'namespace', 'send_configuration', 'mosaico_template'];
@ -236,16 +238,54 @@ async function migrateUsers(knex) {
}); });
} }
async function shortenFieldColumnNames(knex, list) {
const fields = await knex('custom_fields').whereNotNull('column').where('list', list.id);
const fieldsMap = new Map();
for (const field of fields) {
const oldName = field.column;
const newName = ('custom_' + slugify(field.name, '_').substring(0,32) + '_' + shortid.generate()).toLowerCase().replace(/[^a-z0-9_]/g, '_');
fieldsMap.set(oldName, newName);
await knex('custom_fields').where('id', field.id).update('column', newName);
await knex.schema.table('subscription__' + list.id, table => {
table.renameColumn(oldName, newName);
});
}
function processRule(rule) {
if (rule.type === 'all' || rule.type === 'some' || rule.type === 'none') {
for (const childRule of rule.rules) {
processRule(childRule);
}
} else {
rule.column = fieldsMap.get(rule.column) || rule.column /* this is to handle "email" column */;
}
}
const segments = await knex('segments').where('list', list.id);
for (const segment of segments) {
const settings = JSON.parse(segment.settings);
processRule(settings.rootRule);
await knex('segments').where('id', segment.id).update({settings: JSON.stringify(settings)});
}
}
async function migrateSubscriptions(knex) { async function migrateSubscriptions(knex) {
await knex.schema.dropTableIfExists('subscription'); await knex.schema.dropTableIfExists('subscription');
const lists = await knex('lists'); const lists = await knex('lists');
for (const list of lists) { for (const list of lists) {
await shortenFieldColumnNames(knex, list);
await knex.schema.raw('ALTER TABLE `subscription__' + list.id + '` ADD `unsubscribed` timestamp NULL DEFAULT NULL'); await knex.schema.raw('ALTER TABLE `subscription__' + list.id + '` ADD `unsubscribed` timestamp NULL DEFAULT NULL');
await knex.schema.raw('ALTER TABLE `subscription__' + list.id + '` ADD `source_email` int(11) DEFAULT NULL'); await knex.schema.raw('ALTER TABLE `subscription__' + list.id + '` ADD `source_email` int(11) DEFAULT NULL');
await knex.schema.raw('ALTER TABLE `subscription__' + list.id + '` ADD `hash_email` varchar(255) CHARACTER SET ascii'); await knex.schema.raw('ALTER TABLE `subscription__' + list.id + '` ADD `hash_email` varchar(255) CHARACTER SET ascii');
const fields = await knex('custom_fields').where('list', list.id); const fields = await knex('custom_fields').where('list', list.id);
const info = await knex('subscription__' + list.id).columnInfo(); const info = await knex('subscription__' + list.id).columnInfo();
for (const field of fields) { for (const field of fields) {
@ -1251,11 +1291,12 @@ exports.up = (knex, Promise) => (async() => {
await migrateCustomFields(knex); await migrateCustomFields(knex);
log.verbose('Migration', 'Custom fields complete') log.verbose('Migration', 'Custom fields complete')
await migrateSubscriptions(knex);
await migrateSegments(knex); await migrateSegments(knex);
log.verbose('Migration', 'Segments complete') log.verbose('Migration', 'Segments complete')
await migrateSubscriptions(knex);
log.verbose('Migration', 'Subscriptions complete')
await migrateReports(knex); await migrateReports(knex);
log.verbose('Migration', 'Reports complete') log.verbose('Migration', 'Reports complete')

View file

@ -1,21 +0,0 @@
const shortid = require('shortid');
exports.up = (knex, Promise) => (async() => {
const fields = await knex('custom_fields').whereNotNull('column');
for (const field of fields) {
const listId = field.list;
const oldName = field.column;
const newName = ('custom_' + '_' + shortid.generate()).toLowerCase().replace(/[^a-z0-9_]/g, '_');
await knex('custom_fields').where('id', field.id).update('column', newName);
await knex.schema.table('subscription__' + listId, table => {
table.renameColumn(oldName, newName);
table.renameColumn('source_' + oldName, 'source_' + newName);
});
}
})();
exports.down = (knex, Promise) => (async() => {
})();

View file

@ -44,28 +44,28 @@ function getMergeTagsForBases(trustedBaseUrl, sandboxBaseUrl, publicBaseUrl) {
}; };
} }
function base(text, trustedBaseUrl, sandboxBaseUrl, publicBaseUrl) { function base(text, tagLanguage, trustedBaseUrl, sandboxBaseUrl, publicBaseUrl) {
const bases = _getBases(trustedBaseUrl, sandboxBaseUrl, publicBaseUrl); const bases = _getBases(trustedBaseUrl, sandboxBaseUrl, publicBaseUrl);
text = text.split('[URL_BASE]').join(bases.publicBaseUrl); text = text.split(renderTag(tagLanguage, 'URL_BASE')).join(bases.publicBaseUrl);
text = text.split('[TRUSTED_URL_BASE]').join(bases.trustedBaseUrl); text = text.split(renderTag(tagLanguage, 'TRUSTED_URL_BASE')).join(bases.trustedBaseUrl);
text = text.split('[SANDBOX_URL_BASE]').join(bases.sandboxBaseUrl); text = text.split(renderTag(tagLanguage, 'SANDBOX_URL_BASE')).join(bases.sandboxBaseUrl);
text = text.split('[ENCODED_URL_BASE]').join(encodeURIComponent(bases.publicBaseUrl)); text = text.split(renderTag(tagLanguage, 'ENCODED_URL_BASE')).join(encodeURIComponent(bases.publicBaseUrl));
text = text.split('[ENCODED_TRUSTED_URL_BASE]').join(encodeURIComponent(bases.trustedBaseUrl)); text = text.split(renderTag(tagLanguage, 'ENCODED_TRUSTED_URL_BASE')).join(encodeURIComponent(bases.trustedBaseUrl));
text = text.split('[ENCODED_SANDBOX_URL_BASE]').join(encodeURIComponent(bases.sandboxBaseUrl)); text = text.split(renderTag(tagLanguage, 'ENCODED_SANDBOX_URL_BASE')).join(encodeURIComponent(bases.sandboxBaseUrl));
return text; return text;
} }
function unbase(text, trustedBaseUrl, sandboxBaseUrl, publicBaseUrl, treatAllAsPublic = false) { function unbase(text, tagLanguage, trustedBaseUrl, sandboxBaseUrl, publicBaseUrl, treatAllAsPublic = false) {
const bases = _getBases(trustedBaseUrl, sandboxBaseUrl, publicBaseUrl); const bases = _getBases(trustedBaseUrl, sandboxBaseUrl, publicBaseUrl);
text = text.split(bases.publicBaseUrl).join('[URL_BASE]'); text = text.split(bases.publicBaseUrl).join(renderTag(tagLanguage, 'URL_BASE'));
text = text.split(bases.trustedBaseUrl).join(treatAllAsPublic ? '[URL_BASE]' : '[TRUSTED_URL_BASE]'); text = text.split(bases.trustedBaseUrl).join(renderTag(tagLanguage, treatAllAsPublic ? 'URL_BASE' : 'TRUSTED_URL_BASE'));
text = text.split(bases.sandboxBaseUrl).join(treatAllAsPublic ? '[URL_BASE]' : '[SANDBOX_URL_BASE]'); text = text.split(bases.sandboxBaseUrl).join(renderTag(tagLanguage, treatAllAsPublic ? 'URL_BASE' : 'SANDBOX_URL_BASE'));
text = text.split(encodeURIComponent(bases.publicBaseUrl)).join('[ENCODED_URL_BASE]'); text = text.split(encodeURIComponent(bases.publicBaseUrl)).join(renderTag(tagLanguage, 'ENCODED_URL_BASE'));
text = text.split(encodeURIComponent(bases.trustedBaseUrl)).join(treatAllAsPublic ? '[ENCODED_URL_BASE]' : '[ENCODED_TRUSTED_URL_BASE]'); text = text.split(encodeURIComponent(bases.trustedBaseUrl)).join(renderTag(tagLanguage, treatAllAsPublic ? 'ENCODED_URL_BASE' : 'ENCODED_TRUSTED_URL_BASE'));
text = text.split(encodeURIComponent(bases.sandboxBaseUrl)).join(treatAllAsPublic ? '[ENCODED_URL_BASE]' : '[ENCODED_SANDBOX_URL_BASE]'); text = text.split(encodeURIComponent(bases.sandboxBaseUrl)).join(renderTag(tagLanguage, treatAllAsPublic ? 'ENCODED_URL_BASE' : 'ENCODED_SANDBOX_URL_BASE'));
return text; return text;
} }