mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #6356 from open-sausages/pulls/4.0/use-validationexceptions-in-forms
API Refactor form validation handling
This commit is contained in:
commit
b2e3540385
189
admin/client/dist/js/bundle.js
vendored
189
admin/client/dist/js/bundle.js
vendored
@ -1,6 +1,6 @@
|
||||
webpackJsonp([5],[function(e,t,n){"use strict"
|
||||
n(2),n(3),n(6),n(19),n(25),n(27),n(29),n(31),n(34),n(105),n(112),n(116),n(126),n(127),n(128),n(129),n(130),n(131),n(133),n(136),n(138),n(141),n(144),n(146),n(148),n(150),n(151),n(160),n(161),n(163),n(164),
|
||||
n(165),n(166),n(167),n(168),n(169),n(170),n(171),n(172),n(173),n(174),n(175),n(178),n(180),n(181),n(182),n(183),n(187),n(188),n(189),n(190),n(191),n(188),n(183),n(194),n(195),n(197),n(198)},,function(e,t){
|
||||
n(2),n(3),n(6),n(19),n(25),n(27),n(29),n(31),n(34),n(105),n(113),n(117),n(127),n(128),n(129),n(130),n(131),n(132),n(134),n(137),n(139),n(142),n(145),n(147),n(149),n(151),n(152),n(161),n(162),n(164),n(165),
|
||||
n(166),n(167),n(168),n(169),n(170),n(171),n(172),n(173),n(174),n(175),n(176),n(179),n(181),n(182),n(183),n(184),n(188),n(189),n(190),n(191),n(192),n(189),n(184),n(195),n(196),n(198),n(199)},,function(e,t){
|
||||
"use strict"
|
||||
function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
@ -430,10 +430,10 @@ return Object.entries(e).reduce(function(e,n){var o=u(n,1),a=o[0],s=(0,m.findFie
|
||||
if(d)return e
|
||||
var h=p.map(function(e,t){return f["default"].createElement("span",{key:t,className:"form__validation-message"},e)})
|
||||
return l({},e,r({},a,{type:"error",value:{react:h}}))},{})}},{key:"handleAction",value:function i(e){"function"==typeof this.props.handleAction&&this.props.handleAction(e,this.props.values),e.isPropagationStopped()||this.setState({
|
||||
submittingAction:e.currentTarget.name})}},{key:"handleSubmit",value:function d(e){var t=this,n=this.state.submittingAction?this.state.submittingAction:this.props.schema.schema.actions[0].name,i=l({},e,r({},n,1)),o={
|
||||
"X-Formschema-Request":"state,schema","X-Requested-With":"XMLHttpRequest"},a=function s(e){return t.submitApi(e||i,o).then(function(e){return t.setState({submittingAction:null}),e})["catch"](function(e){
|
||||
throw t.setState({submittingAction:null}),e})}
|
||||
return"function"==typeof this.props.handleSubmit?this.props.handleSubmit(i,n,a):a()}},{key:"buildComponent",value:function p(e){var t=e,n=null!==t.schemaComponent?E["default"].getComponentByName(t.schemaComponent):E["default"].getComponentByDataType(t.type)
|
||||
submittingAction:e.currentTarget.name})}},{key:"handleSubmit",value:function d(e){var t=this,n=this.state.submittingAction?this.state.submittingAction:this.props.schema.schema.actions[0].name,i=l({},e,r({},n,1)),o=this.props.responseRequestedSchema.join(),a={
|
||||
"X-Formschema-Request":o,"X-Requested-With":"XMLHttpRequest"},s=function u(e){return t.submitApi(e||i,a).then(function(e){return t.setState({submittingAction:null}),e})["catch"](function(e){throw t.setState({
|
||||
submittingAction:null}),e})}
|
||||
return"function"==typeof this.props.handleSubmit?this.props.handleSubmit(i,n,s):s()}},{key:"buildComponent",value:function p(e){var t=e,n=null!==t.schemaComponent?E["default"].getComponentByName(t.schemaComponent):E["default"].getComponentByDataType(t.type)
|
||||
|
||||
|
||||
if(null===n)return null
|
||||
@ -461,9 +461,11 @@ persistentSubmitErrors:p,validate:this.validateForm}
|
||||
return f["default"].createElement(n,v)}}]),t}(y["default"]),O=d.PropTypes.shape({id:d.PropTypes.string,schema:d.PropTypes.shape({attributes:d.PropTypes.shape({"class":d.PropTypes.string,enctype:d.PropTypes.string
|
||||
}),fields:d.PropTypes.array.isRequired}),state:d.PropTypes.shape({fields:d.PropTypes.array}),loading:d.PropTypes["boolean"],stateOverride:d.PropTypes.shape({fields:d.PropTypes.array})}),S={createFn:d.PropTypes.func,
|
||||
handleSubmit:d.PropTypes.func,handleAction:d.PropTypes.func,asyncValidate:d.PropTypes.func,onSubmitFail:d.PropTypes.func,onSubmitSuccess:d.PropTypes.func,shouldAsyncValidate:d.PropTypes.func,touchOnBlur:d.PropTypes.bool,
|
||||
touchOnChange:d.PropTypes.bool,persistentSubmitErrors:d.PropTypes.bool,validate:d.PropTypes.func,values:d.PropTypes.object,submitting:d.PropTypes.bool,baseFormComponent:d.PropTypes.func.isRequired,baseFieldComponent:d.PropTypes.func.isRequired
|
||||
}
|
||||
P.propTypes=l({},S,{form:d.PropTypes.string.isRequired,schema:O.isRequired}),t.basePropTypes=S,t.schemaPropType=O,t["default"]=P},function(e,t){"use strict"
|
||||
touchOnChange:d.PropTypes.bool,persistentSubmitErrors:d.PropTypes.bool,validate:d.PropTypes.func,values:d.PropTypes.object,submitting:d.PropTypes.bool,baseFormComponent:d.PropTypes.func.isRequired,baseFieldComponent:d.PropTypes.func.isRequired,
|
||||
responseRequestedSchema:d.PropTypes.arrayOf(d.PropTypes.oneOf(["schema","state","errors","auto"]))}
|
||||
P.propTypes=l({},S,{form:d.PropTypes.string.isRequired,schema:O.isRequired}),P.defaultProps={responseRequestedSchema:["auto"]},t.basePropTypes=S,t.schemaPropType=O,t["default"]=P},function(e,t){"use strict"
|
||||
|
||||
|
||||
function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function i(e,t){var n=null
|
||||
if(!e)return n
|
||||
n=e.find(function(e){return e.name===t})
|
||||
@ -542,39 +544,42 @@ return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function s(e,t){if("funct
|
||||
e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e,t){var n=e.schemas[t.schemaUrl],i=e.form&&e.form[t.schemaUrl],r=i&&i.submitting,o=i&&i.values,a=n&&n.stateOverride,s=n&&n.metadata&&n.metadata.loading
|
||||
|
||||
|
||||
return{schema:n,submitting:r,values:o,stateOverrides:a,loading:s}}function u(e){return{schemaActions:(0,m.bindActionCreators)(_,e)}}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
return{schema:n,submitting:r,values:o,stateOverrides:a,loading:s}}function u(e){return{schemaActions:(0,m.bindActionCreators)(C,e)}}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var c=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},d=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),f=n(5),p=r(f),h=n(107),m=n(108),g=n(8),v=r(g),y=n(109),b=n(110),_=i(b),w=n(17),C=r(w),T=n(26),E=r(T),P=n(111),O=r(P),S=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),f=n(5),p=r(f),h=n(107),m=n(108),g=n(8),v=r(g),y=n(109),b=r(y),_=n(110),w=n(111),C=i(w),T=n(17),E=r(T),P=n(26),O=r(P),S=n(112),k=r(S),j=function(e){
|
||||
function t(e){o(this,t)
|
||||
var n=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.handleSubmit=n.handleSubmit.bind(n),n.clearSchema=n.clearSchema.bind(n),n}return s(t,e),d(t,[{key:"componentDidMount",value:function n(){this.fetch()}},{key:"componentDidUpdate",value:function i(e){
|
||||
this.props.schemaUrl!==e.schemaUrl&&(this.clearSchema(e.schemaUrl),this.fetch())}},{key:"componentWillUnmount",value:function r(){this.clearSchema(this.props.schemaUrl)}},{key:"getMessages",value:function l(e){
|
||||
var t={}
|
||||
return e&&e.fields&&e.fields.forEach(function(e){e.message&&(t[e.name]=e.message)}),t}},{key:"clearSchema",value:function u(e){e&&((0,y.destroy)(e),this.props.schemaActions.setSchema(e,null))}},{key:"handleSubmit",
|
||||
return n.handleSubmit=n.handleSubmit.bind(n),n.clearSchema=n.clearSchema.bind(n),n.reduceSchemaErrors=n.reduceSchemaErrors.bind(n),n}return s(t,e),d(t,[{key:"componentDidMount",value:function n(){this.fetch()
|
||||
|
||||
}},{key:"componentDidUpdate",value:function i(e){this.props.schemaUrl!==e.schemaUrl&&(this.clearSchema(e.schemaUrl),this.fetch())}},{key:"componentWillUnmount",value:function r(){this.clearSchema(this.props.schemaUrl)
|
||||
|
||||
}},{key:"getMessages",value:function l(e){var t={}
|
||||
return e&&e.fields&&e.fields.forEach(function(e){e.message&&(t[e.name]=e.message)}),t}},{key:"clearSchema",value:function u(e){e&&((0,_.destroy)(e),this.props.schemaActions.setSchema(e,null))}},{key:"handleSubmit",
|
||||
value:function f(e,t,n){var i=this,r=null
|
||||
if(r="function"==typeof this.props.handleSubmit?this.props.handleSubmit(e,t,n):n(),!r)throw new Error("Promise was not returned for submitting")
|
||||
return r.then(function(e){return e&&i.props.schemaActions.setSchema(i.props.schemaUrl,e),e}).then(function(e){if(!e||!e.state)return e
|
||||
return r.then(function(e){var t=e
|
||||
return t&&(t=i.reduceSchemaErrors(t),i.props.schemaActions.setSchema(i.props.schemaUrl,t)),t}).then(function(e){if(!e||!e.state)return e
|
||||
var t=i.getMessages(e.state)
|
||||
if(Object.keys(t).length)throw new y.SubmissionError(t)
|
||||
return e})}},{key:"overrideStateData",value:function h(e){if(!this.props.stateOverrides||!e)return e
|
||||
if(Object.keys(t).length)throw new _.SubmissionError(t)
|
||||
return e})}},{key:"reduceSchemaErrors",value:function h(e){if(!e.errors)return e
|
||||
var t=c({},e)
|
||||
return t.state||(t=c({},t,{state:this.props.schema.state})),t=c({},t,{state:c({},t.state,{fields:t.state.fields.map(function(t){return c({},t,{message:e.errors.find(function(e){return e.field===t.name})
|
||||
})}),messages:e.errors.filter(function(e){return!e.field})})}),delete t.errors,(0,b["default"])(t)}},{key:"overrideStateData",value:function m(e){if(!this.props.stateOverrides||!e)return e
|
||||
var t=this.props.stateOverrides.fields,n=e.fields
|
||||
return t&&n&&(n=n.map(function(e){var n=t.find(function(t){return t.name===e.name})
|
||||
return n?C["default"].recursive(!0,e,n):e})),c({},e,this.props.stateOverrides,{fields:n})}},{key:"overrideStateData",value:function m(e){if(!this.props.stateOverrides||!e)return e
|
||||
var t=this.props.stateOverrides.fields,n=e.fields
|
||||
return t&&n&&(n=n.map(function(e){var n=t.find(function(t){return t.name===e.name})
|
||||
return n?C["default"].recursive(!0,e,n):e})),c({},e,this.props.stateOverrides,{fields:n})}},{key:"fetch",value:function g(){var e=this,t=arguments.length<=0||void 0===arguments[0]||arguments[0],n=arguments.length<=1||void 0===arguments[1]||arguments[1],i=[]
|
||||
return n?E["default"].recursive(!0,e,n):e})),c({},e,this.props.stateOverrides,{fields:n})}},{key:"fetch",value:function g(){var e=this,t=arguments.length<=0||void 0===arguments[0]||arguments[0],n=arguments.length<=1||void 0===arguments[1]||arguments[1],i=[]
|
||||
|
||||
|
||||
return t&&i.push("schema"),n&&i.push("state"),this.props.loading?Promise.resolve({}):(this.props.schemaActions.setSchemaLoading(this.props.schemaUrl,!0),(0,v["default"])(this.props.schemaUrl,{headers:{
|
||||
"X-FormSchema-Request":i.join()},credentials:"same-origin"}).then(function(e){return e.json()}).then(function(t){if(e.props.schemaActions.setSchemaLoading(e.props.schemaUrl,!1),"undefined"!=typeof t.id){
|
||||
var n=c({},t,{state:e.overrideStateData(t.state)})
|
||||
return e.props.schemaActions.setSchema(e.props.schemaUrl,n),n}return t}))}},{key:"render",value:function b(){if(!this.props.schema||!this.props.schema.schema||this.props.loading)return null
|
||||
return e.props.schemaActions.setSchema(e.props.schemaUrl,n),n}return t}))}},{key:"render",value:function y(){if(!this.props.schema||!this.props.schema.schema||this.props.loading)return null
|
||||
var e=c({},this.props,{form:this.props.schemaUrl,onSubmitSuccess:this.props.onSubmitSuccess,handleSubmit:this.handleSubmit})
|
||||
return p["default"].createElement(O["default"],e)}}]),t}(f.Component)
|
||||
S.propTypes=c({},P.basePropTypes,{schemaActions:f.PropTypes.object.isRequired,schemaUrl:f.PropTypes.string.isRequired,schema:P.schemaPropType,form:f.PropTypes.string,submitting:f.PropTypes.bool}),S.defaultProps={
|
||||
baseFormComponent:(0,y.reduxForm)()(E["default"]),baseFieldComponent:y.Field},t["default"]=(0,h.connect)(l,u)(S)},,,function(e,t){e.exports=ReduxForm},function(e,t){e.exports=SchemaActions},function(e,t){
|
||||
e.exports=FormBuilder},function(e,t,n){(function(t){e.exports=t.FormBuilderModal=n(113)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
return p["default"].createElement(k["default"],e)}}]),t}(f.Component)
|
||||
j.propTypes=c({},S.basePropTypes,{schemaActions:f.PropTypes.object.isRequired,schemaUrl:f.PropTypes.string.isRequired,schema:S.schemaPropType,form:f.PropTypes.string,submitting:f.PropTypes.bool}),j.defaultProps={
|
||||
baseFormComponent:(0,_.reduxForm)()(O["default"]),baseFieldComponent:_.Field},t["default"]=(0,h.connect)(l,u)(j)},,,function(e,t){e.exports=DeepFreezeStrict},function(e,t){e.exports=ReduxForm},function(e,t){
|
||||
e.exports=SchemaActions},function(e,t){e.exports=FormBuilder},function(e,t,n){(function(t){e.exports=t.FormBuilderModal=n(114)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called")
|
||||
|
||||
|
||||
@ -582,7 +587,7 @@ return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("funct
|
||||
e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{
|
||||
value:!0})
|
||||
var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(114),d=i(c),f=n(22),p=n(21),h=i(p),m=n(115),g=i(m),v=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(115),d=i(c),f=n(22),p=n(21),h=i(p),m=n(116),g=i(m),v=function(e){
|
||||
function t(e){r(this,t)
|
||||
var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.handleSubmit=n.handleSubmit.bind(n),n.handleHide=n.handleHide.bind(n),n.clearResponse=n.clearResponse.bind(n),n}return a(t,e),s(t,[{key:"getForm",value:function n(){return this.props.schemaUrl?u["default"].createElement(g["default"],{
|
||||
@ -603,7 +608,7 @@ className:this.props.bodyClassName},t,e,this.props.children))}}]),t}(h["default"
|
||||
v.propTypes={show:u["default"].PropTypes.bool,title:u["default"].PropTypes.oneOfType([u["default"].PropTypes.string,u["default"].PropTypes.bool]),className:u["default"].PropTypes.string,bodyClassName:u["default"].PropTypes.string,
|
||||
handleHide:u["default"].PropTypes.func,schemaUrl:u["default"].PropTypes.string,handleSubmit:u["default"].PropTypes.func,handleAction:u["default"].PropTypes.func,responseClassGood:u["default"].PropTypes.string,
|
||||
responseClassBad:u["default"].PropTypes.string},v.defaultProps={show:!1,title:null},t["default"]=v},function(e,t){e.exports=i18n},function(e,t){e.exports=FormBuilderLoader},function(e,t,n){(function(t){
|
||||
e.exports=t.GridField=n(117)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
e.exports=t.GridField=n(118)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
function i(e){if(e&&e.__esModule)return e
|
||||
var t={}
|
||||
if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])
|
||||
@ -623,7 +628,7 @@ var i=Object.getOwnPropertyDescriptor(e,t)
|
||||
if(void 0===i){var r=Object.getPrototypeOf(e)
|
||||
return null===r?void 0:M(r,t,n)}if("value"in i)return i.value
|
||||
var o=i.get
|
||||
if(void 0!==o)return o.call(n)},f=n(5),p=r(f),h=n(108),m=n(107),g=n(21),v=r(g),y=n(118),b=r(y),_=n(119),w=r(_),C=n(121),T=r(C),E=n(120),P=r(E),O=n(122),S=r(O),k=n(123),j=r(k),x=n(28),R=r(x),I=n(124),A=i(I),D={},F=function(e){
|
||||
if(void 0!==o)return o.call(n)},f=n(5),p=r(f),h=n(108),m=n(107),g=n(21),v=r(g),y=n(119),b=r(y),_=n(120),w=r(_),C=n(122),T=r(C),E=n(121),P=r(E),O=n(123),S=r(O),k=n(124),j=r(k),x=n(28),R=r(x),I=n(125),A=i(I),D={},F=function(e){
|
||||
function t(e){o(this,t)
|
||||
var n=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.deleteRecord=n.deleteRecord.bind(n),n.editRecord=n.editRecord.bind(n),n}return s(t,e),c(t,[{key:"componentDidMount",value:function n(){d(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"componentDidMount",this).call(this)
|
||||
@ -672,7 +677,7 @@ return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("funct
|
||||
e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{
|
||||
value:!0})
|
||||
var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(21),d=i(c),f=n(120),p=i(f),h=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(21),d=i(c),f=n(121),p=i(f),h=function(e){
|
||||
function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),s(t,[{key:"render",value:function n(){return u["default"].createElement(p["default"],null,this.props.children)
|
||||
|
||||
}}]),t}(d["default"])
|
||||
@ -745,13 +750,13 @@ type:u["default"].FETCH_RECORD_FAILURE,payload:{error:n,recordType:e}}),n})}}fun
|
||||
return function(n){return n({type:u["default"].DELETE_RECORD_REQUEST,payload:a}),d["default"][s].apply(d["default"],l).then(function(){n({type:u["default"].DELETE_RECORD_SUCCESS,payload:{recordType:e,id:t
|
||||
}})})["catch"](function(i){throw n({type:u["default"].DELETE_RECORD_FAILURE,payload:{error:i,recordType:e,id:t}}),i})}}Object.defineProperty(t,"__esModule",{value:!0}),t.fetchRecords=o,t.fetchRecord=a,
|
||||
t.deleteRecord=s
|
||||
var l=n(125),u=i(l),c=n(7),d=i(c)},function(e,t){"use strict"
|
||||
var l=n(126),u=i(l),c=n(7),d=i(c)},function(e,t){"use strict"
|
||||
Object.defineProperty(t,"__esModule",{value:!0}),t["default"]={CREATE_RECORD:"CREATE_RECORD",UPDATE_RECORD:"UPDATE_RECORD",DELETE_RECORD:"DELETE_RECORD",FETCH_RECORDS_REQUEST:"FETCH_RECORDS_REQUEST",FETCH_RECORDS_FAILURE:"FETCH_RECORDS_FAILURE",
|
||||
FETCH_RECORDS_SUCCESS:"FETCH_RECORDS_SUCCESS",FETCH_RECORD_REQUEST:"FETCH_RECORD_REQUEST",FETCH_RECORD_FAILURE:"FETCH_RECORD_FAILURE",FETCH_RECORD_SUCCESS:"FETCH_RECORD_SUCCESS",DELETE_RECORD_REQUEST:"DELETE_RECORD_REQUEST",
|
||||
DELETE_RECORD_FAILURE:"DELETE_RECORD_FAILURE",DELETE_RECORD_SUCCESS:"DELETE_RECORD_SUCCESS"}},function(e,t,n){(function(t){e.exports=t.GridFieldCell=n(122)}).call(t,function(){return this}())},function(e,t,n){
|
||||
(function(t){e.exports=t.GridFieldHeader=n(119)}).call(t,function(){return this}())},function(e,t,n){(function(t){e.exports=t.GridFieldHeaderCell=n(121)}).call(t,function(){return this}())},function(e,t,n){
|
||||
(function(t){e.exports=t.GridFieldRow=n(120)}).call(t,function(){return this}())},function(e,t,n){(function(t){e.exports=t.GridFieldTable=n(118)}).call(t,function(){return this}())},function(e,t,n){(function(t){
|
||||
e.exports=t.HiddenField=n(132)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
DELETE_RECORD_FAILURE:"DELETE_RECORD_FAILURE",DELETE_RECORD_SUCCESS:"DELETE_RECORD_SUCCESS"}},function(e,t,n){(function(t){e.exports=t.GridFieldCell=n(123)}).call(t,function(){return this}())},function(e,t,n){
|
||||
(function(t){e.exports=t.GridFieldHeader=n(120)}).call(t,function(){return this}())},function(e,t,n){(function(t){e.exports=t.GridFieldHeaderCell=n(122)}).call(t,function(){return this}())},function(e,t,n){
|
||||
(function(t){e.exports=t.GridFieldRow=n(121)}).call(t,function(){return this}())},function(e,t,n){(function(t){e.exports=t.GridFieldTable=n(119)}).call(t,function(){return this}())},function(e,t,n){(function(t){
|
||||
e.exports=t.HiddenField=n(133)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called")
|
||||
|
||||
|
||||
@ -765,7 +770,7 @@ className:this.props.className+" "+this.props.extraClass,id:this.props.id,name:t
|
||||
|
||||
}}]),t}(d["default"])
|
||||
p.propTypes={id:u["default"].PropTypes.string,extraClass:u["default"].PropTypes.string,name:u["default"].PropTypes.string.isRequired,value:u["default"].PropTypes.any},p.defaultProps={className:"",extraClass:"",
|
||||
value:""},t["default"]=p},function(e,t,n){(function(t){e.exports=t.TextField=n(134)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
value:""},t["default"]=p},function(e,t,n){(function(t){e.exports=t.TextField=n(135)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called")
|
||||
|
||||
|
||||
@ -774,7 +779,7 @@ e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,wri
|
||||
value:!0}),t.TextField=void 0
|
||||
var s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},l=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(5),c=i(u),d=n(21),f=i(d),p=n(135),h=i(p),m=n(22),g=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(5),c=i(u),d=n(21),f=i(d),p=n(136),h=i(p),m=n(22),g=function(e){
|
||||
function t(e){r(this,t)
|
||||
var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.handleChange=n.handleChange.bind(n),n}return a(t,e),l(t,[{key:"render",value:function n(){var e=null
|
||||
@ -786,7 +791,7 @@ return this.props.readOnly||(s(e,{placeholder:this.props.placeholder,onChange:th
|
||||
id:this.props.id,value:e.target.value})}}]),t}(f["default"])
|
||||
g.propTypes={extraClass:c["default"].PropTypes.string,id:c["default"].PropTypes.string,name:c["default"].PropTypes.string.isRequired,onChange:c["default"].PropTypes.func,value:c["default"].PropTypes.oneOfType([c["default"].PropTypes.string,c["default"].PropTypes.number]),
|
||||
readOnly:c["default"].PropTypes.bool,disabled:c["default"].PropTypes.bool,placeholder:c["default"].PropTypes.string,type:c["default"].PropTypes.string},g.defaultProps={value:"",extraClass:"",className:"",
|
||||
type:"text"},t.TextField=g,t["default"]=(0,h["default"])(g)},function(e,t){e.exports=FieldHolder},function(e,t,n){(function(t){e.exports=t.Toolbar=n(137)}).call(t,function(){return this}())},function(e,t,n){
|
||||
type:"text"},t.TextField=g,t["default"]=(0,h["default"])(g)},function(e,t){e.exports=FieldHolder},function(e,t,n){(function(t){e.exports=t.Toolbar=n(138)}).call(t,function(){return this}())},function(e,t,n){
|
||||
"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called")
|
||||
|
||||
@ -804,7 +809,7 @@ return u["default"].createElement("div",{className:"toolbar toolbar--north"},u["
|
||||
|
||||
}},{key:"handleBackButtonClick",value:function i(e){return"undefined"!=typeof this.props.handleBackButtonClick?void this.props.handleBackButtonClick(e):void e.preventDefault()}}]),t}(d["default"])
|
||||
f.propTypes={handleBackButtonClick:u["default"].PropTypes.func,showBackButton:u["default"].PropTypes.bool,breadcrumbs:u["default"].PropTypes.array},f.defaultProps={showBackButton:!1},t["default"]=f},function(e,t,n){
|
||||
(function(t){e.exports=t.Breadcrumb=n(139)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
(function(t){e.exports=t.Breadcrumb=n(140)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called")
|
||||
|
||||
|
||||
@ -812,7 +817,7 @@ return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("funct
|
||||
e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function s(e){return{crumbs:e.breadcrumbs
|
||||
}}Object.defineProperty(t,"__esModule",{value:!0}),t.Breadcrumb=void 0
|
||||
var l=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(5),c=i(u),d=n(21),f=i(d),p=n(107),h=n(140),m=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(5),c=i(u),d=n(21),f=i(d),p=n(107),h=n(141),m=function(e){
|
||||
function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),l(t,[{key:"render",value:function n(){return c["default"].createElement("ol",{className:"breadcrumb"
|
||||
},this.getBreadcrumbs())}},{key:"getBreadcrumbs",value:function i(){return"undefined"==typeof this.props.crumbs?null:[].concat(this.props.crumbs.slice(0,-1).map(function(e,t){return[c["default"].createElement("li",{
|
||||
className:"breadcrumb__item"},c["default"].createElement(h.Link,{key:t,className:"breadcrumb__item-title",to:e.href,onClick:e.onClick},e.text))]}),this.props.crumbs.slice(-1).map(function(e,t){var n=["breadcrumb__icon",e.icon?e.icon.className:""].join(" ")
|
||||
@ -820,12 +825,12 @@ className:"breadcrumb__item"},c["default"].createElement(h.Link,{key:t,className
|
||||
|
||||
return[c["default"].createElement("li",{className:"breadcrumb__item breadcrumb__item--last"},c["default"].createElement("h2",{className:"breadcrumb__item-title breadcrumb__item-title--last",key:t},e.text,e.icon&&c["default"].createElement("span",{
|
||||
className:n,onClick:e.icon.action})))]}))}}]),t}(f["default"])
|
||||
m.propTypes={crumbs:c["default"].PropTypes.array},t.Breadcrumb=m,t["default"]=(0,p.connect)(s)(m)},function(e,t){e.exports=ReactRouter},function(e,t,n){(function(t){e.exports=t.BreadcrumbsActions=n(142)
|
||||
m.propTypes={crumbs:c["default"].PropTypes.array},t.Breadcrumb=m,t["default"]=(0,p.connect)(s)(m)},function(e,t){e.exports=ReactRouter},function(e,t,n){(function(t){e.exports=t.BreadcrumbsActions=n(143)
|
||||
|
||||
}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e){return{type:a["default"].SET_BREADCRUMBS,payload:{breadcrumbs:e}}}Object.defineProperty(t,"__esModule",{value:!0}),t.setBreadcrumbs=r
|
||||
var o=n(143),a=i(o)},function(e,t){"use strict"
|
||||
Object.defineProperty(t,"__esModule",{value:!0}),t["default"]={SET_BREADCRUMBS:"SET_BREADCRUMBS"}},function(e,t,n){(function(t){e.exports=t.Config=n(145)}).call(t,function(){return this}())},function(e,t){
|
||||
var o=n(144),a=i(o)},function(e,t){"use strict"
|
||||
Object.defineProperty(t,"__esModule",{value:!0}),t["default"]={SET_BREADCRUMBS:"SET_BREADCRUMBS"}},function(e,t,n){(function(t){e.exports=t.Config=n(146)}).call(t,function(){return this}())},function(e,t){
|
||||
"use strict"
|
||||
function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
@ -833,13 +838,13 @@ i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Obj
|
||||
n(this,e)}return i(e,null,[{key:"get",value:function t(e){return window.ss.config[e]}},{key:"getAll",value:function r(){return window.ss.config}},{key:"getSection",value:function o(e){return window.ss.config.sections[e]
|
||||
|
||||
}}]),e}()
|
||||
t["default"]=r},function(e,t,n){(function(t){e.exports=t.ReducerRegister=n(147)}).call(t,function(){return this}())},function(e,t){"use strict"
|
||||
t["default"]=r},function(e,t,n){(function(t){e.exports=t.ReducerRegister=n(148)}).call(t,function(){return this}())},function(e,t){"use strict"
|
||||
function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),r={},o=function(){function e(){
|
||||
n(this,e)}return i(e,[{key:"add",value:function t(e,n){if("undefined"!=typeof r[e])throw new Error("Reducer already exists at '"+e+"'")
|
||||
r[e]=n}},{key:"getAll",value:function o(){return r}},{key:"getByKey",value:function a(e){return r[e]}},{key:"remove",value:function s(e){delete r[e]}}]),e}()
|
||||
window.ss=window.ss||{},window.ss.reducerRegister=window.ss.reducerRegister||new o,t["default"]=window.ss.reducerRegister},function(e,t,n){(function(t){e.exports=t.ReactRouteRegister=n(149)}).call(t,function(){
|
||||
window.ss=window.ss||{},window.ss.reducerRegister=window.ss.reducerRegister||new o,t["default"]=window.ss.reducerRegister},function(e,t,n){(function(t){e.exports=t.ReactRouteRegister=n(150)}).call(t,function(){
|
||||
return this}())},function(e,t){"use strict"
|
||||
function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
@ -858,7 +863,7 @@ return t.path===e})
|
||||
return i<0?null:n.splice(i,1)[0]}}]),e}()
|
||||
window.ss=window.ss||{},window.ss.routeRegister=window.ss.routeRegister||new o,t["default"]=window.ss.routeRegister},function(e,t,n){(function(t){e.exports=t.Injector=n(104)}).call(t,function(){return this
|
||||
|
||||
}())},function(e,t,n){(function(t){e.exports=t.Router=n(152)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
}())},function(e,t,n){(function(t){e.exports=t.Router=n(153)}).call(t,function(){return this}())},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e){var t=c["default"].getAbsoluteBase(),n=f["default"].resolve(t,e)
|
||||
return 0!==n.indexOf(t)?n:n.substring(t.length-1)}function o(e){return function(t,n,i,r){return e(c["default"].resolveURLToBase(t),n,i,r)}}function a(e){var t=new c["default"].Route(e)
|
||||
return t.match(c["default"].current,{})}function s(){return c["default"].absoluteBaseURL}function l(e){c["default"].absoluteBaseURL=e
|
||||
@ -866,7 +871,7 @@ var t=document.createElement("a")
|
||||
t.href=e
|
||||
var n=t.pathname
|
||||
n=n.replace(/\/$/,""),n.match(/^[^\/]/)&&(n="/"+n),c["default"].base(n)}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var u=n(153),c=i(u),d=n(154),f=i(d)
|
||||
var u=n(154),c=i(u),d=n(155),f=i(d)
|
||||
c["default"].oldshow||(c["default"].oldshow=c["default"].show),c["default"].setAbsoluteBase=l.bind(c["default"]),c["default"].getAbsoluteBase=s.bind(c["default"]),c["default"].resolveURLToBase=r.bind(c["default"]),
|
||||
c["default"].show=o(c["default"].oldshow),c["default"].routeAppliesToCurrentLocation=a,window.ss=window.ss||{},window.ss.router=window.ss.router||c["default"],t["default"]=window.ss.router},function(e,t){
|
||||
e.exports=Page},function(e,t,n){"use strict"
|
||||
@ -876,10 +881,10 @@ function i(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,
|
||||
var r=new i
|
||||
return r.parse(e,t,n),r}function o(e){return u.isString(e)&&(e=r(e)),e instanceof i?e.format():i.prototype.format.call(e)}function a(e,t){return r(e,!1,!0).resolve(t)}function s(e,t){return e?r(e,!1,!0).resolveObject(t):t
|
||||
|
||||
}var l=n(155),u=n(156)
|
||||
}var l=n(156),u=n(157)
|
||||
t.parse=r,t.resolve=a,t.resolveObject=s,t.format=o,t.Url=i
|
||||
var c=/^([a-z0-9.+-]+:)/i,d=/:[0-9]*$/,f=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,p=["<",">",'"',"`"," ","\r","\n","\t"],h=["{","}","|","\\","^","`"].concat(p),m=["'"].concat(h),g=["%","/","?",";","#"].concat(m),v=["/","?","#"],y=255,b=/^[+a-z0-9A-Z_-]{0,63}$/,_=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,w={
|
||||
javascript:!0,"javascript:":!0},C={javascript:!0,"javascript:":!0},T={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},E=n(157)
|
||||
javascript:!0,"javascript:":!0},C={javascript:!0,"javascript:":!0},T={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},E=n(158)
|
||||
i.prototype.parse=function(e,t,n){if(!u.isString(e))throw new TypeError("Parameter 'url' must be a string, not "+typeof e)
|
||||
var i=e.indexOf("?"),r=i!==-1&&i<e.indexOf("#")?"?":"#",o=e.split(r),a=/\\/g
|
||||
o[0]=o[0].replace(a,"/"),e=o.join(r)
|
||||
@ -976,7 +981,7 @@ w={version:"1.3.2",ucs2:{decode:u,encode:c},decode:h,encode:m,toASCII:v,toUnicod
|
||||
},function(e,t){"use strict"
|
||||
e.exports={isString:function(e){return"string"==typeof e},isObject:function(e){return"object"==typeof e&&null!==e},isNull:function(e){return null===e},isNullOrUndefined:function(e){return null==e}}},function(e,t,n){
|
||||
"use strict"
|
||||
t.decode=t.parse=n(158),t.encode=t.stringify=n(159)},function(e,t){"use strict"
|
||||
t.decode=t.parse=n(159),t.encode=t.stringify=n(160)},function(e,t){"use strict"
|
||||
function n(e,t){return Object.prototype.hasOwnProperty.call(e,t)}e.exports=function(e,t,i,r){t=t||"&",i=i||"="
|
||||
var o={}
|
||||
if("string"!=typeof e||0===e.length)return o
|
||||
@ -1022,7 +1027,7 @@ return e.replace(/^#/,"")},cleanHash:function O(e){return u.stripHash(e.replace(
|
||||
return!(!t.protocol||t.domain===document.domain)},hasProtocol:function k(e){return/^(:?\w+:)/.test(e)}}
|
||||
o["default"].path=u},function(e,t,n){(function(e){"use strict"
|
||||
function t(e){return e&&e.__esModule?e:{"default":e}}var i=n(1),r=t(i)
|
||||
n(162),r["default"].widget("ssui.button",r["default"].ui.button,{options:{alternate:{icon:null,text:null},showingAlternate:!1},toggleAlternate:function o(){this._trigger("ontogglealternate")!==!1&&(this.options.alternate.icon||this.options.alternate.text)&&(this.options.showingAlternate=!this.options.showingAlternate,
|
||||
n(163),r["default"].widget("ssui.button",r["default"].ui.button,{options:{alternate:{icon:null,text:null},showingAlternate:!1},toggleAlternate:function o(){this._trigger("ontogglealternate")!==!1&&(this.options.alternate.icon||this.options.alternate.text)&&(this.options.showingAlternate=!this.options.showingAlternate,
|
||||
this.refresh())},_refreshAlternate:function a(){this._trigger("beforerefreshalternate"),(this.options.alternate.icon||this.options.alternate.text)&&(this.options.showingAlternate?(this.element.find(".ui-button-icon-primary").hide(),
|
||||
this.element.find(".ui-button-text").hide(),this.element.find(".ui-button-icon-alternate").show(),this.element.find(".ui-button-text-alternate").show()):(this.element.find(".ui-button-icon-primary").show(),
|
||||
this.element.find(".ui-button-text").show(),this.element.find(".ui-button-icon-alternate").hide(),this.element.find(".ui-button-text-alternate").hide()),this._trigger("afterrefreshalternate"))},_resetButton:function s(){
|
||||
@ -1062,7 +1067,7 @@ o.find("*").add(o).disableSelection()},destroy:function m(){this.element.unbind(
|
||||
function _interopRequireDefault(e){return e&&e.__esModule?e:{"default":e}}var _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol?"symbol":typeof e
|
||||
|
||||
},_jQuery=__webpack_require__(1),_jQuery2=_interopRequireDefault(_jQuery)
|
||||
__webpack_require__(161)
|
||||
__webpack_require__(162)
|
||||
var windowWidth,windowHeight
|
||||
_jQuery2["default"].noConflict(),window.ss=window.ss||{},window.ss.debounce=function(e,t,n){var i,r,o,a=function s(){i=null,n||e.apply(r,o)}
|
||||
return function(){var s=n&&!i
|
||||
@ -1347,7 +1352,7 @@ l&&"#"!=l?(l=l.split("?")[0],t.jstree("deselect_all"),t.jstree("uncheck_all"),e.
|
||||
s.loadPanel(l)):t.removeForm()}})}}),e(".cms-content .cms-content-fields").entwine({redraw:function r(){window.debug&&console.log("redraw",this.attr("class"),this.get(0))}}),e(".cms-content .cms-content-header, .cms-content .cms-content-actions").entwine({
|
||||
redraw:function o(){window.debug&&console.log("redraw",this.attr("class"),this.get(0)),this.height("auto"),this.height(this.innerHeight()-this.css("padding-top")-this.css("padding-bottom"))}})})},function(e,t,n){
|
||||
(function(e){"use strict"
|
||||
function t(e){return e&&e.__esModule?e:{"default":e}}var i=n(1),r=t(i),o=n(114),a=t(o)
|
||||
function t(e){return e&&e.__esModule?e:{"default":e}}var i=n(1),r=t(i),o=n(115),a=t(o)
|
||||
window.onbeforeunload=function(e){var t=(0,r["default"])(".cms-edit-form")
|
||||
if(t.trigger("beforesubmitform"),t.is(".changed")&&!t.is(".discardchanges"))return a["default"]._t("LeftAndMain.CONFIRMUNSAVEDSHORT")},r["default"].entwine("ss",function(e){e(".cms-edit-form").entwine({
|
||||
PlaceholderHtml:"",ChangeTrackerOptions:{ignoreFieldSelector:".no-change-track, .ss-upload :input, .cms-navigator :input"},ValidationErrorShown:!1,onadd:function t(){var e=this
|
||||
@ -1442,7 +1447,7 @@ this.toggleCSS(t),this.toggleIndicator(t),this._super()},toggleCSS:function R(e)
|
||||
void 0===t?e.setPersistedCollapsedState(e.hasClass("collapsed")):void 0!==t&&i===!1&&e.clearPersistedCollapsedState(),e.setPersistedStickyState(i),this.toggleCSS(i),this.toggleIndicator(i),this._super()
|
||||
|
||||
}})})},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r),a=n(114),s=i(a)
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r),a=n(115),s=i(a)
|
||||
o["default"].entwine("ss.preview",function(e){e(".cms-preview").entwine({AllowedStates:["StageLink","LiveLink","ArchiveLink"],CurrentStateName:null,CurrentSizeName:"auto",IsPreviewEnabled:!1,DefaultMode:"split",
|
||||
Sizes:{auto:{width:"100%",height:"100%"},mobile:{width:"335px",height:"568px"},mobileLandscape:{width:"583px",height:"320px"},tablet:{width:"783px",height:"1024px"},tabletLandscape:{width:"1039px",height:"768px"
|
||||
},desktop:{width:"1024px",height:"800px"}},changeState:function t(n,i){var r=this,o=this._getNavigatorStates()
|
||||
@ -1519,7 +1524,7 @@ e(".cms-preview").changeSize(n)}}),e(".preview-selector select.preview-dropdown"
|
||||
return"undefined"!=typeof i&&n.removeClass(i),n.addClass(t),n.attr("data-icon",t),this}}),e(".preview-mode-selector .chosen-drop li:last-child").entwine({onmatch:function U(){e(".preview-mode-selector").hasClass("split-disabled")?this.parent().append('<div class="disabled-tooltip"></div>'):this.parent().append('<div class="disabled-tooltip" style="display: none;"></div>')
|
||||
|
||||
}}),e(".preview-device-outer").entwine({onclick:function L(){this.parent(".preview__device").toggleClass("rotate")}})})},function(e,t,n){(function(e){"use strict"
|
||||
function t(e){return e&&e.__esModule?e:{"default":e}}var i=n(1),r=t(i),o=n(114),a=t(o)
|
||||
function t(e){return e&&e.__esModule?e:{"default":e}}var i=n(1),r=t(i),o=n(115),a=t(o)
|
||||
r["default"].entwine("ss.tree",function(t){t("#Form_BatchActionsForm").entwine({Actions:[],getTree:function n(){return t(".cms-tree")},fromTree:{oncheck_node:function i(e,t){this.serializeFromTree()},onuncheck_node:function r(e,t){
|
||||
this.serializeFromTree()}},onmatch:function o(){var e=this
|
||||
e.getTree().bind("load_node.jstree",function(t,n){e.refreshSelected()})},onunmatch:function s(){var e=this
|
||||
@ -1587,7 +1592,7 @@ this.addClass("description-toggle-enabled"),n.on("click",function(){i[e?"hide":"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r)
|
||||
o["default"].entwine("ss",function(e){e(".TreeDropdownField").entwine({"from .cms-container form":{onaftersubmitform:function t(e){this.find(".tree-holder").empty(),this._super()}}})})},function(e,t,n){
|
||||
"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r),a=n(5),s=i(a),l=n(176),u=i(l),c=n(107),d=n(177),f=i(d)
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r),a=n(5),s=i(a),l=n(177),u=i(l),c=n(107),d=n(178),f=i(d)
|
||||
o["default"].entwine("ss",function(e){e(".cms-content-actions .add-to-campaign-action,#add-to-campaign__action").entwine({onclick:function t(){var t=e("#add-to-campaign__dialog-wrapper")
|
||||
return t.length||(t=e('<div id="add-to-campaign__dialog-wrapper" />'),e("body").append(t)),t.open(),!1}}),e("#add-to-campaign__dialog-wrapper").entwine({onunmatch:function n(){this._clearModal()},open:function i(){
|
||||
this._renderModal(!0)},close:function r(){this._renderModal(!1)},_renderModal:function o(t){var n=this,i=function h(){return n.close()},r=function m(){return n._handleSubmitModal.apply(n,arguments)},o=e("form.cms-edit-form :input[name=ID]").val(),a=window.ss.store,l="SilverStripe\\CMS\\Controllers\\CMSPageEditController",d=a.getState().config.sections[l],p=d.form.AddToCampaignForm.schemaUrl+"/"+o
|
||||
@ -1597,7 +1602,7 @@ u["default"].render(s["default"].createElement(c.Provider,{store:a},s["default"]
|
||||
responseClassGood:"modal__response modal__response--good"})),this[0])},_clearModal:function a(){u["default"].unmountComponentAtNode(this[0])},_handleSubmitModal:function l(e,t,n){return n()}})})},,function(e,t){
|
||||
e.exports=FormBuilderModal},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r)
|
||||
n(163),n(179)
|
||||
n(164),n(180)
|
||||
var a=function s(e){var t=(0,o["default"])((0,o["default"])(this).contents()).find(".message")
|
||||
if(t&&t.html()){var n=(0,o["default"])(window.parent.document).find("#Form_EditForm_Members").get(0)
|
||||
n&&n.refresh()
|
||||
@ -1625,7 +1630,7 @@ e(this).prop("checked","checked")}):t.each(function(){e(this).prop("checked",e(t
|
||||
|
||||
})}})})},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r)
|
||||
n(163),o["default"].entwine("ss",function(e){e(".cms-content-tools #Form_SearchForm").entwine({onsubmit:function t(e){this.trigger("beforeSubmit")}}),e(".importSpec").entwine({onmatch:function n(){this.find("div.details").hide(),
|
||||
n(164),o["default"].entwine("ss",function(e){e(".cms-content-tools #Form_SearchForm").entwine({onsubmit:function t(e){this.trigger("beforeSubmit")}}),e(".importSpec").entwine({onmatch:function n(){this.find("div.details").hide(),
|
||||
this.find("a.detailsLink").click(function(){return e("#"+e(this).attr("href").replace(/.*#/,"")).slideToggle(),!1}),this._super()},onunmatch:function i(){this._super()}})})},function(e,t,n){"use strict"
|
||||
|
||||
|
||||
@ -1640,8 +1645,8 @@ t.toggleClass("active"),t.find(".toggle-content").css("minHeight",n)}})},functio
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r);(0,o["default"])(document).on("click",".confirmedpassword .showOnClick a",function(){var e=(0,o["default"])(".showOnClickContainer",(0,
|
||||
o["default"])(this).parent())
|
||||
return e.toggle("fast",function(){e.find('input[type="hidden"]').val(e.is(":visible")?1:0)}),!1})},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r),a=n(114),s=i(a)
|
||||
window.tmpl=n(184),n(185),n(186),o["default"].widget("blueimpUIX.fileupload",o["default"].blueimpUI.fileupload,{_initTemplates:function l(){this.options.templateContainer=document.createElement(this._files.prop("nodeName")),
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r),a=n(115),s=i(a)
|
||||
window.tmpl=n(185),n(186),n(187),o["default"].widget("blueimpUIX.fileupload",o["default"].blueimpUI.fileupload,{_initTemplates:function l(){this.options.templateContainer=document.createElement(this._files.prop("nodeName")),
|
||||
this.options.uploadTemplate=window.tmpl(this.options.uploadTemplateName),this.options.downloadTemplate=window.tmpl(this.options.downloadTemplateName)},_enableFileInputButton:function u(){o["default"].blueimpUI.fileupload.prototype._enableFileInputButton.call(this),
|
||||
this.element.find(".ss-uploadfield-addfile").show()},_disableFileInputButton:function c(){o["default"].blueimpUI.fileupload.prototype._disableFileInputButton.call(this),this.element.find(".ss-uploadfield-addfile").hide()
|
||||
|
||||
@ -1751,22 +1756,22 @@ t.length&&t.removeClass("selected")
|
||||
var n=e.nextAll("li.selected")
|
||||
n.length&&n.removeClass("selected"),(0,o["default"])(this).focus()})})},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r)
|
||||
n(162),o["default"].fn.extend({ssDatepicker:function a(e){return(0,o["default"])(this).each(function(){if(!((0,o["default"])(this).prop("disabled")||(0,o["default"])(this).prop("readonly")||(0,o["default"])(this).data("datepicker"))){
|
||||
n(163),o["default"].fn.extend({ssDatepicker:function a(e){return(0,o["default"])(this).each(function(){if(!((0,o["default"])(this).prop("disabled")||(0,o["default"])(this).prop("readonly")||(0,o["default"])(this).data("datepicker"))){
|
||||
(0,o["default"])(this).siblings("button").addClass("ui-icon ui-icon-calendar")
|
||||
var t=(0,o["default"])(this).closest(".field.date"),n=o["default"].extend(e||{},(0,o["default"])(this).data(),(0,o["default"])(this).data("jqueryuiconfig"),{})
|
||||
n.showcalendar&&(n.locale&&o["default"].datepicker.regional[n.locale]&&(n=o["default"].extend(n,o["default"].datepicker.regional[n.locale],{})),n.min&&(n.minDate=o["default"].datepicker.parseDate("yy-mm-dd",n.min)),
|
||||
n.max&&(n.maxDate=o["default"].datepicker.parseDate("yy-mm-dd",n.max)),n.dateFormat=n.jquerydateformat,(0,o["default"])(this).datepicker(n))}})}}),(0,o["default"])(document).on("click",".field.date input.text,input.text.date",function(){
|
||||
(0,o["default"])(this).ssDatepicker(),(0,o["default"])(this).data("datepicker")&&(0,o["default"])(this).datepicker("show")})},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r)
|
||||
n(162),o["default"].entwine("ss",function(e){e(".ss-toggle").entwine({onadd:function t(){this._super(),this.accordion({heightStyle:"content",collapsible:!0,active:!this.hasClass("ss-toggle-start-closed")&&0
|
||||
n(163),o["default"].entwine("ss",function(e){e(".ss-toggle").entwine({onadd:function t(){this._super(),this.accordion({heightStyle:"content",collapsible:!0,active:!this.hasClass("ss-toggle-start-closed")&&0
|
||||
})},onremove:function n(){this.data("accordion")&&this.accordion("destroy"),this._super()},getTabSet:function i(){return this.closest(".ss-tabset")},fromTabSet:{ontabsshow:function r(){this.accordion("resize")
|
||||
|
||||
}}})})},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r)
|
||||
o["default"].entwine("ss",function(e){e(".memberdatetimeoptionset").entwine({onmatch:function t(){this.find(".toggle-content").hide(),this._super()}}),e(".memberdatetimeoptionset .toggle").entwine({onclick:function n(t){
|
||||
return e(this).closest(".form__field-description").parent().find(".toggle-content").toggle(),!1}})})},function(e,t,n){(function(e){"use strict"
|
||||
function t(e){return e&&e.__esModule?e:{"default":e}}var i=n(1),r=t(i),o=n(114),a=t(o)
|
||||
n(192),n(193),r["default"].entwine("ss",function(t){var n,i
|
||||
function t(e){return e&&e.__esModule?e:{"default":e}}var i=n(1),r=t(i),o=n(115),a=t(o)
|
||||
n(193),n(194),r["default"].entwine("ss",function(t){var n,i
|
||||
t(window).bind("resize.treedropdownfield",function(){var e=function a(){t(".TreeDropdownField").closePanel()}
|
||||
if(t.browser.msie&&parseInt(t.browser.version,10)<9){var r=t(window).width(),o=t(window).height()
|
||||
r==n&&o==i||(n=r,i=o,e())}else e()})
|
||||
@ -1834,7 +1839,7 @@ onadd:function M(){this._super(),this.bind("change.TreeDropdownField",function()
|
||||
|
||||
},,,function(module,exports,__webpack_require__){"use strict"
|
||||
function _interopRequireDefault(e){return e&&e.__esModule?e:{"default":e}}var _extends=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},_jQuery=__webpack_require__(1),_jQuery2=_interopRequireDefault(_jQuery),_i18n=__webpack_require__(114),_i18n2=_interopRequireDefault(_i18n),_react=__webpack_require__(5),_react2=_interopRequireDefault(_react),_reactDom=__webpack_require__(176),_reactDom2=_interopRequireDefault(_reactDom),_reactRedux=__webpack_require__(107),ss="undefined"!=typeof window.ss?window.ss:{}
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},_jQuery=__webpack_require__(1),_jQuery2=_interopRequireDefault(_jQuery),_i18n=__webpack_require__(115),_i18n2=_interopRequireDefault(_i18n),_react=__webpack_require__(5),_react2=_interopRequireDefault(_react),_reactDom=__webpack_require__(177),_reactDom2=_interopRequireDefault(_reactDom),_reactRedux=__webpack_require__(107),ss="undefined"!=typeof window.ss?window.ss:{}
|
||||
|
||||
|
||||
ss.editorWrappers={},ss.editorWrappers.tinyMCE=function(){var editorID
|
||||
@ -2072,7 +2077,7 @@ return a&&a.not(c).length&&a.replaceWith(c),l&&l.prepend(s),a||(n.repaint(),n.in
|
||||
|
||||
e.noticeAdd({text:i,type:n,stayTime:5e3,inEffect:{left:"0",opacity:"show"}})}})})},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r)
|
||||
n(162),n(196),n(192),o["default"].entwine("ss",function(e){e(".ss-tabset").entwine({IgnoreTabState:!1,onadd:function t(){var e=window.location.hash
|
||||
n(163),n(197),n(193),o["default"].entwine("ss",function(e){e(".ss-tabset").entwine({IgnoreTabState:!1,onadd:function t(){var e=window.location.hash
|
||||
this.redrawTabs(),""!==e&&this.openTabFromURL(e),this._super()},onremove:function n(){this.data("tabs")&&this.tabs("destroy"),this._super()},redrawTabs:function i(){this.rewriteHashlinks(),this.tabs()},
|
||||
openTabFromURL:function r(t){var n
|
||||
e.each(this.find(".ui-tabs-anchor"),function(){if(this.href.indexOf(t)!==-1&&1===e(t).length)return n=e(this),!1}),void 0!==n&&e(document).ready("ajaxComplete",function(){n.click()})},rewriteHashlinks:function o(){
|
||||
@ -2080,8 +2085,8 @@ e(this).find("ul a").each(function(){if(e(this).attr("href")){var t=e(this).attr
|
||||
t&&e(this).attr("href",document.location.href.replace(/#.*/,"")+t[0])}})}}),e(".ui-tabs-active .ui-tabs-anchor").entwine({onmatch:function a(){this.addClass("nav-link active")},onunmatch:function s(){this.removeClass("active")
|
||||
|
||||
}})})},,function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r),a=n(114),s=i(a)
|
||||
n(162),n(192),o["default"].entwine("ss",function(e){e(".grid-field").entwine({reload:function t(n,i){var r=this,o=this.closest("form"),a=this.find(":input:focus").attr("name"),l=o.find(":input").serializeArray()
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(1),o=i(r),a=n(115),s=i(a)
|
||||
n(163),n(193),o["default"].entwine("ss",function(e){e(".grid-field").entwine({reload:function t(n,i){var r=this,o=this.closest("form"),a=this.find(":input:focus").attr("name"),l=o.find(":input").serializeArray()
|
||||
|
||||
|
||||
n||(n={}),n.data||(n.data=[]),n.data=n.data.concat(l),window.location.search&&(n.data=window.location.search.replace(/^\?/,"")+"&"+e.param(n.data)),o.addClass("loading"),e.ajax(e.extend({},{headers:{"X-Pjax":"CurrentField"
|
||||
@ -2148,13 +2153,13 @@ var e={},t=(0,l.combineReducers)(g["default"].getAll()),n=[c["default"]],i=h["de
|
||||
var p=o(l.createStore),m=p(t,e)
|
||||
m.dispatch(y.setConfig(h["default"].getAll())),window.ss=window.ss||{},window.ss.store=m
|
||||
var v=new s["default"](m)
|
||||
v.start(window.location.pathname)}var a=n(199),s=r(a),l=n(108),u=n(221),c=r(u),d=n(109),f=n(220),p=n(145),h=r(p),m=n(222),g=r(m),v=n(223),y=i(v),b=n(225),_=r(b),w=n(227),C=r(w),T=n(228),E=r(T),P=n(229),O=r(P),S=n(231),k=r(S),j=n(232),x=r(j),R=n(248),I=r(R),A=n(10),D=r(A)
|
||||
v.start(window.location.pathname)}var a=n(200),s=r(a),l=n(108),u=n(222),c=r(u),d=n(110),f=n(221),p=n(146),h=r(p),m=n(223),g=r(m),v=n(224),y=i(v),b=n(226),_=r(b),w=n(227),C=r(w),T=n(228),E=r(T),P=n(229),O=r(P),S=n(231),k=r(S),j=n(232),x=r(j),R=n(248),I=r(R),A=n(10),D=r(A)
|
||||
|
||||
|
||||
D["default"].polyfill(),window.onload=o},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),a=n(1),s=i(a),l=n(5),u=i(l),c=n(176),d=i(c),f=n(107),p=n(140),h=n(200),m=i(h),g=n(145),v=i(g),y=n(217),b=i(y),_=n(218),w=i(_),C=n(219),T=i(C),E=n(220),P=function(){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),a=n(1),s=i(a),l=n(5),u=i(l),c=n(177),d=i(c),f=n(107),p=n(141),h=n(201),m=i(h),g=n(146),v=i(g),y=n(218),b=i(y),_=n(219),w=i(_),C=n(220),T=i(C),E=n(221),P=function(){
|
||||
function e(t){r(this,e),this.store=t
|
||||
var n=v["default"].get("absoluteBaseUrl")
|
||||
b["default"].setAbsoluteBase(n)}return o(e,[{key:"start",value:function t(e){this.matchesLegacyRoute(e)?this.initLegacyRouter():this.initReactRouter()}},{key:"matchesLegacyRoute",value:function n(e){var t=v["default"].get("sections"),n=b["default"].resolveURLToBase(e).replace(/\/$/,"")
|
||||
@ -2186,25 +2191,25 @@ function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).app
|
||||
return e}}]),t}(d["default"])
|
||||
t["default"]=f},function(e,t){e.exports=ReactRouterRedux},function(e,t){e.exports=ReduxThunk},function(e,t){e.exports=ReducerRegister},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e){return{type:a["default"].SET_CONFIG,payload:{config:e}}}Object.defineProperty(t,"__esModule",{value:!0}),t.setConfig=r
|
||||
var o=n(224),a=i(o)},function(e,t){"use strict"
|
||||
var o=n(225),a=i(o)},function(e,t){"use strict"
|
||||
Object.defineProperty(t,"__esModule",{value:!0}),t["default"]={SET_CONFIG:"SET_CONFIG"}},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(){var e=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],t=arguments[1]
|
||||
switch(t.type){case u["default"].SET_CONFIG:return(0,s["default"])(o({},e,t.payload.config))
|
||||
default:return e}}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},a=n(226),s=i(a),l=n(224),u=i(l)
|
||||
t["default"]=r},function(e,t){e.exports=DeepFreezeStrict},function(e,t,n){"use strict"
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},a=n(109),s=i(a),l=n(225),u=i(l)
|
||||
t["default"]=r},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(){var e=arguments.length<=0||void 0===arguments[0]?d:arguments[0],t=arguments.length<=1||void 0===arguments[1]?null:arguments[1]
|
||||
|
||||
|
||||
switch(t.type){case c["default"].SET_SCHEMA:return(0,l["default"])(a({},e,r({},t.payload.id,a({},e[t.payload.id],{id:t.payload.id,schema:t.payload.schema,state:t.payload.state}))))
|
||||
switch(t.type){case c["default"].SET_SCHEMA:return(0,l["default"])(a({},e,r({},t.payload.id,a({},e[t.payload.id],t.payload))))
|
||||
case c["default"].SET_SCHEMA_STATE_OVERRIDES:return(0,l["default"])(a({},e,r({},t.payload.id,a({},e[t.payload.id],{stateOverride:t.payload.stateOverride}))))
|
||||
case c["default"].SET_SCHEMA_LOADING:return(0,l["default"])(a({},e,r({},t.payload.id,a({},e[t.payload.id],{metadata:a({},e[t.payload.id]&&e[t.payload.id].metadata,{loading:t.payload.loading})}))))
|
||||
default:return e}}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var a=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}
|
||||
t["default"]=o
|
||||
var s=n(226),l=i(s),u=n(33),c=i(u),d=(0,l["default"])({})},function(e,t,n){"use strict"
|
||||
var s=n(109),l=i(s),u=n(33),c=i(u),d=(0,l["default"])({})},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(){var e=arguments.length<=0||void 0===arguments[0]?d:arguments[0],t=arguments[1],n=null,i=null,o=null
|
||||
|
||||
|
||||
@ -2226,7 +2231,7 @@ case c["default"].DELETE_RECORD_SUCCESS:return i=t.payload.recordType,n=e[i],n=O
|
||||
|
||||
default:return e}}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var a=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},s=n(226),l=i(s),u=n(125),c=i(u),d={}
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},s=n(109),l=i(s),u=n(126),c=i(u),d={}
|
||||
t["default"]=o},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(){var e=arguments.length<=0||void 0===arguments[0]?c:arguments[0],t=arguments[1]
|
||||
switch(t.type){case u["default"].SET_CAMPAIGN_SELECTED_CHANGESETITEM:return(0,s["default"])(o({},e,{changeSetItemId:t.payload.changeSetItemId}))
|
||||
@ -2235,7 +2240,7 @@ case u["default"].PUBLISH_CAMPAIGN_REQUEST:return(0,s["default"])(o({},e,{isPubl
|
||||
case u["default"].PUBLISH_CAMPAIGN_SUCCESS:case u["default"].PUBLISH_CAMPAIGN_FAILURE:return(0,s["default"])(o({},e,{isPublishing:!1}))
|
||||
default:return e}}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},a=n(226),s=i(a),l=n(230),u=i(l),c=(0,s["default"])({campaignId:null,changeSetItemId:null,isPublishing:!1,view:null})
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},a=n(109),s=i(a),l=n(230),u=i(l),c=(0,s["default"])({campaignId:null,changeSetItemId:null,isPublishing:!1,view:null})
|
||||
t["default"]=r},function(e,t){"use strict"
|
||||
Object.defineProperty(t,"__esModule",{value:!0}),t["default"]={SET_CAMPAIGN_ACTIVE_CHANGESET:"SET_CAMPAIGN_ACTIVE_CHANGESET",SET_CAMPAIGN_SELECTED_CHANGESETITEM:"SET_CAMPAIGN_SELECTED_CHANGESETITEM",PUBLISH_CAMPAIGN_REQUEST:"PUBLISH_CAMPAIGN_REQUEST",
|
||||
PUBLISH_CAMPAIGN_SUCCESS:"PUBLISH_CAMPAIGN_SUCCESS",PUBLISH_CAMPAIGN_FAILURE:"PUBLISH_CAMPAIGN_FAILURE"}},function(e,t,n){"use strict"
|
||||
@ -2243,11 +2248,11 @@ function i(e){return e&&e.__esModule?e:{"default":e}}function r(){var e=argument
|
||||
switch(t.type){case u["default"].SET_BREADCRUMBS:return(0,s["default"])(o([],t.payload.breadcrumbs))
|
||||
default:return e}}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var o=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},a=n(226),s=i(a),l=n(143),u=i(l),c=(0,s["default"])([])
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},a=n(109),s=i(a),l=n(144),u=i(l),c=(0,s["default"])([])
|
||||
t["default"]=r},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),a=n(104),s=i(a),l=n(134),u=i(l),c=n(132),d=i(c),f=n(233),p=i(f),h=n(235),m=i(h),g=n(236),v=i(g),y=n(237),b=i(y),_=n(238),w=i(_),C=n(239),T=i(C),E=n(240),P=i(E),O=n(241),S=i(O),k=n(242),j=i(k),x=n(243),R=i(x),I=n(244),A=i(I),D=n(245),F=i(D),M=n(246),N=i(M),U=n(247),L=i(U),H=function(){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),a=n(104),s=i(a),l=n(135),u=i(l),c=n(133),d=i(c),f=n(233),p=i(f),h=n(235),m=i(h),g=n(236),v=i(g),y=n(237),b=i(y),_=n(238),w=i(_),C=n(239),T=i(C),E=n(240),P=i(E),O=n(241),S=i(O),k=n(242),j=i(k),x=n(243),R=i(x),I=n(244),A=i(I),D=n(245),F=i(D),M=n(246),N=i(M),U=n(247),L=i(U),H=function(){
|
||||
function e(){r(this,e)}return o(e,[{key:"start",value:function t(){s["default"].register("TextField",u["default"]),s["default"].register("HiddenField",d["default"]),s["default"].register("CheckboxField",p["default"]),
|
||||
s["default"].register("CheckboxSetField",m["default"]),s["default"].register("OptionsetField",v["default"]),s["default"].register("GridField",b["default"]),s["default"].register("SingleSelectField",w["default"]),
|
||||
s["default"].register("PopoverField",T["default"]),s["default"].register("HeaderField",P["default"]),s["default"].register("LiteralField",S["default"]),s["default"].register("HtmlReadonlyField",j["default"]),
|
||||
@ -2263,7 +2268,7 @@ e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,wri
|
||||
value:!0})
|
||||
var s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},l=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(5),c=i(u),d=n(234),f=i(d),p=n(135),h=i(p),m=n(21),g=i(m),v=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(5),c=i(u),d=n(234),f=i(d),p=n(136),h=i(p),m=n(21),g=i(m),v=function(e){
|
||||
function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),l(t,[{key:"render",value:function n(){var e=(0,h["default"])(f["default"])
|
||||
return c["default"].createElement(e,s({},this.props,{type:"checkbox",hideLabels:!0}))}}]),t}(g["default"])
|
||||
t["default"]=v},function(e,t,n){"use strict"
|
||||
@ -2297,7 +2302,7 @@ return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("funct
|
||||
e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{
|
||||
value:!0}),t.CheckboxSetField=void 0
|
||||
var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(21),d=i(c),f=n(234),p=i(f),h=n(135),m=i(h),g=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(21),d=i(c),f=n(234),p=i(f),h=n(136),m=i(h),g=function(e){
|
||||
function t(e){r(this,t)
|
||||
var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.getItemKey=n.getItemKey.bind(n),n.getOptionProps=n.getOptionProps.bind(n),n.handleChange=n.handleChange.bind(n),n.getValues=n.getValues.bind(n),n}return a(t,e),s(t,[{key:"getItemKey",value:function n(e,t){
|
||||
@ -2321,7 +2326,7 @@ return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("funct
|
||||
e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{
|
||||
value:!0}),t.OptionsetField=void 0
|
||||
var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(21),d=i(c),f=n(234),p=i(f),h=n(135),m=i(h),g=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(21),d=i(c),f=n(234),p=i(f),h=n(136),m=i(h),g=function(e){
|
||||
function t(e){r(this,t)
|
||||
var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.getItemKey=n.getItemKey.bind(n),n.getOptionProps=n.getOptionProps.bind(n),n.handleChange=n.handleChange.bind(n),n}return a(t,e),s(t,[{key:"getItemKey",value:function n(e,t){return this.props.id+"-"+(e.value||"empty"+t)
|
||||
@ -2344,7 +2349,7 @@ e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,wri
|
||||
value:!0}),t.SingleSelectField=void 0
|
||||
var s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},l=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(5),c=i(u),d=n(21),f=i(d),p=n(135),h=i(p),m=n(114),g=i(m),v=n(22),y=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(5),c=i(u),d=n(21),f=i(d),p=n(136),h=i(p),m=n(115),g=i(m),v=n(22),y=function(e){
|
||||
function t(e){r(this,t)
|
||||
var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.handleChange=n.handleChange.bind(n),n}return a(t,e),l(t,[{key:"render",value:function n(){var e=null
|
||||
@ -2420,7 +2425,7 @@ e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,wri
|
||||
value:!0}),t.HtmlReadonlyField=void 0
|
||||
var s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},l=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(5),c=i(u),d=n(21),f=i(d),p=n(135),h=i(p),m=n(22),g=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(5),c=i(u),d=n(21),f=i(d),p=n(136),h=i(p),m=n(22),g=function(e){
|
||||
function t(e){r(this,t)
|
||||
var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.getContent=n.getContent.bind(n),n}return a(t,e),l(t,[{key:"getContent",value:function n(){return{__html:this.props.value}}},{key:"getInputProps",value:function i(){return{bsClass:this.props.bsClass,
|
||||
@ -2435,7 +2440,7 @@ return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("funct
|
||||
e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{
|
||||
value:!0}),t.LookupField=void 0
|
||||
var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(21),d=i(c),f=n(22),p=n(135),h=i(p),m=n(114),g=i(m),v=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(21),d=i(c),f=n(22),p=n(136),h=i(p),m=n(115),g=i(m),v=function(e){
|
||||
function t(e){r(this,t)
|
||||
var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.getValueCSV=n.getValueCSV.bind(n),n}return a(t,e),s(t,[{key:"getValueCSV",value:function n(){var e=this,t=this.props.value
|
||||
@ -2500,7 +2505,7 @@ return u["default"].createElement(f.Tab.Pane,e,this.props.children)}}]),t}(d["de
|
||||
p.propTypes={name:u["default"].PropTypes.string.isRequired,extraClass:u["default"].PropTypes.string,tabClassName:u["default"].PropTypes.string},p.defaultProps={className:"",extraClass:""},t["default"]=p
|
||||
|
||||
},function(e,t){e.exports=FormAction},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(140),o=n(145),a=i(o),s=n(218),l=i(s),u=n(249),c=i(u)
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}var r=n(141),o=n(146),a=i(o),s=n(219),l=i(s),u=n(249),c=i(u)
|
||||
document.addEventListener("DOMContentLoaded",function(){var e=a["default"].getSection("SilverStripe\\Admin\\CampaignAdmin")
|
||||
l["default"].add({path:e.url,component:(0,r.withRouter)(c["default"]),childRoutes:[{path:":type/:id/:view",component:c["default"]},{path:"set/:id/:view",component:c["default"]}]})})},function(e,t,n){"use strict"
|
||||
|
||||
@ -2517,7 +2522,7 @@ campaignId:e.campaign.campaignId,view:e.campaign.view,breadcrumbs:e.breadcrumbs,
|
||||
breadcrumbsActions:(0,m.bindActionCreators)(_,e)}}Object.defineProperty(t,"__esModule",{value:!0})
|
||||
var c=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]
|
||||
for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},d=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),f=n(5),p=r(f),h=n(107),m=n(108),g=n(140),v=n(103),y=r(v),b=n(250),_=i(b),w=n(251),C=r(w),T=n(21),E=r(T),P=n(247),O=r(P),S=n(114),k=r(S),j=n(252),x=r(j),R=n(115),I=r(R),A=n(253),D=r(A),F=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),f=n(5),p=r(f),h=n(107),m=n(108),g=n(141),v=n(103),y=r(v),b=n(250),_=i(b),w=n(251),C=r(w),T=n(21),E=r(T),P=n(247),O=r(P),S=n(115),k=r(S),j=n(252),x=r(j),R=n(116),I=r(R),A=n(253),D=r(A),F=function(e){
|
||||
function t(e){o(this,t)
|
||||
var n=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.publishApi=y["default"].createEndpointFetcher({url:n.props.sectionConfig.publishEndpoint.url,method:n.props.sectionConfig.publishEndpoint.method,defaultData:{SecurityID:n.props.securityId},payloadSchema:{
|
||||
@ -2591,7 +2596,7 @@ var i=Object.getOwnPropertyDescriptor(e,t)
|
||||
if(void 0===i){var r=Object.getPrototypeOf(e)
|
||||
return null===r?void 0:q(r,t,n)}if("value"in i)return i.value
|
||||
var o=i.get
|
||||
if(void 0!==o)return o.call(n)},p=n(5),h=r(p),m=n(108),g=n(107),v=n(250),y=i(v),b=n(124),_=i(b),w=n(254),C=i(w),T=n(21),E=r(T),P=n(255),O=r(P),S=n(256),k=r(S),j=n(258),x=r(j),R=n(252),I=r(R),A=n(247),D=r(A),F=n(259),M=r(F),N=n(251),U=r(N),L=n(260),H=r(L),B=n(114),$=r(B),V=function(e){
|
||||
if(void 0!==o)return o.call(n)},p=n(5),h=r(p),m=n(108),g=n(107),v=n(250),y=i(v),b=n(125),_=i(b),w=n(254),C=i(w),T=n(21),E=r(T),P=n(255),O=r(P),S=n(256),k=r(S),j=n(258),x=r(j),R=n(252),I=r(R),A=n(247),D=r(A),F=n(259),M=r(F),N=n(251),U=r(N),L=n(260),H=r(L),B=n(115),$=r(B),V=function(e){
|
||||
function t(e){o(this,t)
|
||||
var n=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.handlePublish=n.handlePublish.bind(n),n.handleItemSelected=n.handleItemSelected.bind(n),n.setBreadcrumbs=n.setBreadcrumbs.bind(n),n.handleCloseItem=n.handleCloseItem.bind(n),n}return s(t,e),d(t,[{
|
||||
@ -2634,7 +2639,7 @@ function i(e){return e&&e.__esModule?e:{"default":e}}function r(e){return{type:l
|
||||
payload:{campaignId:e,view:t}})}}function a(e,t,n){return function(i){i({type:l["default"].PUBLISH_CAMPAIGN_REQUEST,payload:{campaignId:n}}),e({id:n}).then(function(e){i({type:l["default"].PUBLISH_CAMPAIGN_SUCCESS,
|
||||
payload:{campaignId:n}}),i({type:c["default"].FETCH_RECORD_SUCCESS,payload:{recordType:t,data:e}})})["catch"](function(e){i({type:l["default"].PUBLISH_CAMPAIGN_FAILURE,payload:{error:e}})})}}Object.defineProperty(t,"__esModule",{
|
||||
value:!0}),t.selectChangeSetItem=r,t.showCampaignView=o,t.publishCampaign=a
|
||||
var s=n(230),l=i(s),u=n(125),c=i(u)},function(e,t,n){"use strict"
|
||||
var s=n(230),l=i(s),u=n(126),c=i(u)},function(e,t,n){"use strict"
|
||||
function i(e){return e&&e.__esModule?e:{"default":e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called")
|
||||
|
||||
|
||||
@ -2684,7 +2689,7 @@ return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("funct
|
||||
e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{
|
||||
value:!0})
|
||||
var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(21),d=i(c),f=n(114),p=i(f),h=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(21),d=i(c),f=n(115),p=i(f),h=function(e){
|
||||
function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),s(t,[{key:"render",value:function n(){var e=null,t={},n=this.props.item,i=this.props.campaign
|
||||
|
||||
|
||||
@ -2707,7 +2712,7 @@ return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("funct
|
||||
e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{
|
||||
value:!0})
|
||||
var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n]
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(114),d=i(c),f=n(21),p=i(f),h=function(e){
|
||||
i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(5),u=i(l),c=n(115),d=i(c),f=n(21),p=i(f),h=function(e){
|
||||
function t(e){r(this,t)
|
||||
var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))
|
||||
return n.handleBackClick=n.handleBackClick.bind(n),n}return a(t,e),s(t,[{key:"handleBackClick",value:function n(e){"function"==typeof this.props.onBack&&(e.preventDefault(),this.props.onBack(e))}},{key:"render",
|
||||
|
62
admin/client/dist/js/vendor.js
vendored
62
admin/client/dist/js/vendor.js
vendored
@ -12,8 +12,8 @@ else{i[t]=[n]
|
||||
var r=document.getElementsByTagName("head")[0],o=document.createElement("script")
|
||||
o.type="text/javascript",o.charset="utf-8",o.async=!0,o.src=e.p+""+t+".js/"+({0:"CMSSecurity",1:"LeftAndMain.Ping",2:"MemberImportForm",3:"TinyMCE_SSPlugin",4:"UploadField_select",5:"bundle",6:"leaktools"
|
||||
}[t]||t)+".js",r.appendChild(o)}},e.m=t,e.c=r,e.p="",e(0)}([function(t,e,n){"use strict"
|
||||
n(261),n(557),n(558),n(561),n(563),n(565),n(595),n(597),n(730),n(740),n(755),n(930),n(932),n(980),n(986),n(1240),n(1248),n(1251),n(1254),n(1257),n(1258),n(162),n(192),n(196),n(1259),n(1260),n(1261),n(1262),
|
||||
n(193),n(1263),n(1264),n(1265),n(1266),n(1267),n(1268),n(1269),n(1270)},function(t,e){t.exports=jQuery},,,,function(t,e){t.exports=React},,,,,,function(t,e){function n(){throw new Error("setTimeout has not been defined")
|
||||
n(261),n(557),n(558),n(561),n(563),n(565),n(595),n(597),n(730),n(740),n(755),n(930),n(932),n(980),n(986),n(1240),n(1248),n(1251),n(1254),n(1257),n(1258),n(163),n(193),n(197),n(1259),n(1260),n(1261),n(1262),
|
||||
n(194),n(1263),n(1264),n(1265),n(1266),n(1267),n(1268),n(1269),n(1270)},function(t,e){t.exports=jQuery},,,,function(t,e){t.exports=React},,,,,,function(t,e){function n(){throw new Error("setTimeout has not been defined")
|
||||
|
||||
}function r(){throw new Error("clearTimeout has not been defined")}function i(t){if(d===setTimeout)return setTimeout(t,0)
|
||||
if((d===n||!d)&&setTimeout)return d=setTimeout,setTimeout(t,0)
|
||||
@ -402,7 +402,7 @@ var o=n(48),a=r(o),s=n(49),l=r(s),u={all_lowercase:!0,gmail_lowercase:!0,gmail_r
|
||||
yahoo_lowercase:!0,yahoo_remove_subaddress:!0,icloud_lowercase:!0,icloud_remove_subaddress:!0},c=["icloud.com","me.com"],d=["hotmail.at","hotmail.be","hotmail.ca","hotmail.cl","hotmail.co.il","hotmail.co.nz","hotmail.co.th","hotmail.co.uk","hotmail.com","hotmail.com.ar","hotmail.com.au","hotmail.com.br","hotmail.com.gr","hotmail.com.mx","hotmail.com.pe","hotmail.com.tr","hotmail.com.vn","hotmail.cz","hotmail.de","hotmail.dk","hotmail.es","hotmail.fr","hotmail.hu","hotmail.id","hotmail.ie","hotmail.in","hotmail.it","hotmail.jp","hotmail.kr","hotmail.lv","hotmail.my","hotmail.ph","hotmail.pt","hotmail.sa","hotmail.sg","hotmail.sk","live.be","live.co.uk","live.com","live.com.ar","live.com.mx","live.de","live.es","live.eu","live.fr","live.it","live.nl","msn.com","outlook.at","outlook.be","outlook.cl","outlook.co.il","outlook.co.nz","outlook.co.th","outlook.com","outlook.com.ar","outlook.com.au","outlook.com.br","outlook.com.gr","outlook.com.pe","outlook.com.tr","outlook.com.vn","outlook.cz","outlook.de","outlook.dk","outlook.es","outlook.fr","outlook.hu","outlook.id","outlook.ie","outlook.in","outlook.it","outlook.jp","outlook.kr","outlook.lv","outlook.my","outlook.ph","outlook.pt","outlook.sa","outlook.sg","outlook.sk","passport.com"],f=["rocketmail.com","yahoo.ca","yahoo.co.uk","yahoo.com","yahoo.de","yahoo.fr","yahoo.in","yahoo.it","ymail.com"]
|
||||
|
||||
|
||||
t.exports=e["default"]},,,,,function(t,e){t.exports=ReactRedux},function(t,e){t.exports=Redux},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(module,exports,__webpack_require__){(function(jQuery){
|
||||
t.exports=e["default"]},,,,,function(t,e){t.exports=ReactRedux},function(t,e){t.exports=Redux},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(module,exports,__webpack_require__){(function(jQuery){
|
||||
!function(t,e){function n(e,n){var i,o,a,s=e.nodeName.toLowerCase()
|
||||
return"area"===s?(i=e.parentNode,o=i.name,!(!e.href||!o||"map"!==i.nodeName.toLowerCase())&&(a=t("img[usemap=#"+o+"]")[0],!!a&&r(a))):(/input|select|textarea|button|object/.test(s)?!e.disabled:"a"===s?e.href||n:n)&&r(e)
|
||||
|
||||
@ -3362,7 +3362,7 @@ c.canUseDOM?void 0:s["default"](!1)
|
||||
var v=m.forceRefresh,g=d.supportsHistory(),y=!g||v,_=h["default"](o({},m,{getCurrentLocation:t,finishTransition:n,saveState:f.saveState})),b=0,x=void 0
|
||||
return o({},_,{listenBefore:r,listen:i,registerTransitionHook:a,unregisterTransitionHook:p})}e.__esModule=!0
|
||||
var o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a=n(201),s=r(a),l=n(202),u=n(203),c=n(205),d=n(206),f=n(207),p=n(208),h=r(p)
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a=n(202),s=r(a),l=n(203),u=n(204),c=n(206),d=n(207),f=n(208),p=n(209),h=r(p)
|
||||
e["default"]=i,t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
var r=function(t,e,n,r,i,o,a,s){if(!t){var l
|
||||
if(void 0===e)l=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.")
|
||||
@ -3381,7 +3381,7 @@ return null==e?t:t.substring(e[0].length)}function o(t){var e=i(t),n="",r="",o=e
|
||||
o!==-1&&(r=e.substring(o),e=e.substring(0,o))
|
||||
var a=e.indexOf("?")
|
||||
return a!==-1&&(n=e.substring(a),e=e.substring(0,a)),""===e&&(e="/"),{pathname:e,search:n,hash:r}}e.__esModule=!0,e.extractPath=i,e.parsePath=o
|
||||
var a=n(204),s=r(a)},function(t,e,n){"use strict"
|
||||
var a=n(205),s=r(a)},function(t,e,n){"use strict"
|
||||
var r=function(){}
|
||||
t.exports=r},function(t,e){"use strict"
|
||||
e.__esModule=!0
|
||||
@ -3403,12 +3403,12 @@ if(n.name===d)return
|
||||
if(c.indexOf(n.name)>=0&&0===window.sessionStorage.length)return
|
||||
throw n}}function a(t){var e=void 0
|
||||
try{e=window.sessionStorage.getItem(i(t))}catch(n){if(n.name===d)return null}if(e)try{return JSON.parse(e)}catch(n){}return null}e.__esModule=!0,e.saveState=o,e.readState=a
|
||||
var s=n(204),l=r(s),u="@@History/",c=["QuotaExceededError","QUOTA_EXCEEDED_ERR"],d="SecurityError"},function(t,e,n){"use strict"
|
||||
var s=n(205),l=r(s),u="@@History/",c=["QuotaExceededError","QUOTA_EXCEEDED_ERR"],d="SecurityError"},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}function i(t){function e(t){return l.canUseDOM?void 0:s["default"](!1),n.listen(t)}var n=d["default"](o({getUserConfirmation:u.getUserConfirmation},t,{
|
||||
go:u.go}))
|
||||
return o({},n,{listen:e})}e.__esModule=!0
|
||||
var o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a=n(201),s=r(a),l=n(205),u=n(206),c=n(209),d=r(c)
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a=n(202),s=r(a),l=n(206),u=n(207),c=n(210),d=r(c)
|
||||
e["default"]=i,t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}function i(t){return Math.random().toString(36).substr(2,t)}function o(t,e){return t.pathname===e.pathname&&t.search===e.search&&t.key===e.key&&d["default"](t.state,e.state)
|
||||
|
||||
@ -3434,7 +3434,7 @@ return{listenBefore:t,listen:r,transitionTo:l,push:u,replace:c,go:I,goBack:m,goF
|
||||
registerTransitionHook:b["default"](E,"registerTransitionHook is deprecated; use listenBefore instead"),unregisterTransitionHook:b["default"](S,"unregisterTransitionHook is deprecated; use the callback returned from listenBefore instead"),
|
||||
pushState:b["default"](P,"pushState is deprecated; use push instead"),replaceState:b["default"](O,"replaceState is deprecated; use replace instead")}}e.__esModule=!0
|
||||
var s=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},l=n(204),u=r(l),c=n(210),d=r(c),f=n(203),p=n(213),h=n(202),m=n(214),v=r(m),g=n(215),y=r(g),_=n(216),b=r(_),x=6
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},l=n(205),u=r(l),c=n(211),d=r(c),f=n(204),p=n(214),h=n(203),m=n(215),v=r(m),g=n(216),y=r(g),_=n(217),b=r(_),x=6
|
||||
e["default"]=a,t.exports=e["default"]},function(t,e,n){function r(t){return null===t||void 0===t}function i(t){return!(!t||"object"!=typeof t||"number"!=typeof t.length)&&("function"==typeof t.copy&&"function"==typeof t.slice&&!(t.length>0&&"number"!=typeof t[0]))
|
||||
|
||||
}function o(t,e,n){var o,c
|
||||
@ -3447,7 +3447,7 @@ for(o=0;o<t.length;o++)if(t[o]!==e[o])return!1
|
||||
return!0}try{var d=s(t),f=s(e)}catch(p){return!1}if(d.length!=f.length)return!1
|
||||
for(d.sort(),f.sort(),o=d.length-1;o>=0;o--)if(d[o]!=f[o])return!1
|
||||
for(o=d.length-1;o>=0;o--)if(c=d[o],!u(t[c],e[c],n))return!1
|
||||
return typeof t==typeof e}var a=Array.prototype.slice,s=n(211),l=n(212),u=t.exports=function(t,e,n){return n||(n={}),t===e||(t instanceof Date&&e instanceof Date?t.getTime()===e.getTime():!t||!e||"object"!=typeof t&&"object"!=typeof e?n.strict?t===e:t==e:o(t,e,n))
|
||||
return typeof t==typeof e}var a=Array.prototype.slice,s=n(212),l=n(213),u=t.exports=function(t,e,n){return n||(n={}),t===e||(t instanceof Date&&e instanceof Date?t.getTime()===e.getTime():!t||!e||"object"!=typeof t&&"object"!=typeof e?n.strict?t===e:t==e:o(t,e,n))
|
||||
|
||||
}},function(t,e){function n(t){var e=[]
|
||||
for(var n in t)e.push(n)
|
||||
@ -3467,15 +3467,15 @@ function r(t){return t&&t.__esModule?t:{"default":t}}function i(){var t=argument
|
||||
var i=t.pathname||"/",a=t.search||"",s=t.hash||"",c=t.state||null
|
||||
return{pathname:i,search:a,hash:s,state:c,action:e,key:n}}e.__esModule=!0
|
||||
var o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a=n(204),s=r(a),l=n(202),u=n(203)
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a=n(205),s=r(a),l=n(203),u=n(204)
|
||||
e["default"]=i,t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}function i(t,e,n){var r=t(e,n)
|
||||
t.length<2&&n(r)}e.__esModule=!0
|
||||
var o=n(204),a=r(o)
|
||||
var o=n(205),a=r(o)
|
||||
e["default"]=i,t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}function i(t,e){return function(){return t.apply(this,arguments)}}e.__esModule=!0
|
||||
var o=n(204),a=r(o)
|
||||
e["default"]=i,t.exports=e["default"]},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){(function(t){"use strict"
|
||||
var o=n(205),a=r(o)
|
||||
e["default"]=i,t.exports=e["default"]},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){(function(t){"use strict"
|
||||
function e(t,e,n){t[e]||Object[r](t,e,{writable:!0,configurable:!0,value:n})}if(n(262),n(553),n(554),t._babelPolyfill)throw new Error("only one instance of babel-polyfill is allowed")
|
||||
t._babelPolyfill=!0
|
||||
var r="defineProperty"
|
||||
@ -7502,7 +7502,7 @@ var E=T.queryKey;(void 0===E||E)&&(E="string"==typeof E?E:w)
|
||||
var S=x["default"](c({},T,{getCurrentLocation:t,finishTransition:n,saveState:_.saveState})),P=0,O=void 0,M=y.supportsGoWithoutReloadUsingHash()
|
||||
return c({},S,{listenBefore:r,listen:i,push:u,replace:d,go:f,createHref:p,registerTransitionHook:b,unregisterTransitionHook:k,pushState:C,replaceState:j})}e.__esModule=!0
|
||||
var c=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},d=n(204),f=r(d),p=n(201),h=r(p),m=n(202),v=n(203),g=n(205),y=n(206),_=n(207),b=n(208),x=r(b),w="_k"
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},d=n(205),f=r(d),p=n(202),h=r(p),m=n(203),v=n(204),g=n(206),y=n(207),_=n(208),b=n(209),x=r(b),w="_k"
|
||||
e["default"]=u,t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}function i(t){return c.stringify(t).replace(/%20/g,"+")}function o(t){for(var e in t)if(Object.prototype.hasOwnProperty.call(t,e)&&"object"==typeof t[e]&&!Array.isArray(t[e])&&null!==t[e])return!0
|
||||
|
||||
@ -7525,7 +7525,7 @@ return t.query&&(a.query=t.query),e(a)}function h(t,e,n){"string"==typeof e&&(e=
|
||||
return"function"!=typeof x&&(x=i),"function"!=typeof w&&(w=g),s({},b,{listenBefore:r,listen:o,push:a,replace:l,createPath:u,createHref:c,createLocation:d,pushState:m["default"](h,"pushState is deprecated; use push instead"),
|
||||
replaceState:m["default"](y,"replaceState is deprecated; use replace instead")})}}e.__esModule=!0
|
||||
var s=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},l=n(204),u=r(l),c=n(945),d=n(215),f=r(d),p=n(203),h=n(216),m=r(h),v="$searchBase",g=c.parse
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},l=n(205),u=r(l),c=n(945),d=n(216),f=r(d),p=n(204),h=n(217),m=r(h),v="$searchBase",g=c.parse
|
||||
e["default"]=a,t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
var r=n(946)
|
||||
e.extract=function(t){return t.split("?")[1]||""},e.parse=function(t){return"string"!=typeof t?{}:(t=t.trim().replace(/^(\?|#|&)/,""),t?t.split("&").reduce(function(t,e){var n=e.replace(/\+/g," ").split("="),r=n.shift(),i=n.length>0?n.join("="):void 0
|
||||
@ -7782,7 +7782,7 @@ n=(0,m.createRoutingHistory)(n,c),c.match(o,function(t,r,i){e(t,r&&v.createLocat
|
||||
|
||||
|
||||
var a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},s=n(202),l=n(941),u=r(l),c=n(972),d=r(c),f=n(947),p=r(f),h=n(934),m=n(957)
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},s=n(203),l=n(941),u=r(l),c=n(972),d=r(c),f=n(947),p=r(f),h=n(934),m=n(957)
|
||||
e["default"]=o,t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}function i(t){var e=(0,c["default"])(t),n=function i(){return e},r=(0,a["default"])((0,l["default"])(n))(t)
|
||||
return r.__v2_compatible__=!0,r}e.__esModule=!0,e["default"]=i
|
||||
@ -7805,7 +7805,7 @@ return n(_.createLocation.apply(_,[r(t)].concat(i)))}function v(t,e){"string"==t
|
||||
return o({},_,{listenBefore:i,listen:a,push:s,replace:c,createPath:f,createHref:h,createLocation:m,pushState:p["default"](v,"pushState is deprecated; use push instead"),replaceState:p["default"](g,"replaceState is deprecated; use replace instead")
|
||||
})}}e.__esModule=!0
|
||||
var o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a=n(204),s=r(a),l=n(205),u=n(203),c=n(215),d=r(c),f=n(216),p=r(f)
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},a=n(205),s=r(a),l=n(206),u=n(204),c=n(216),d=r(c),f=n(217),p=r(f)
|
||||
e["default"]=i,t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}function i(t){return t.filter(function(t){return t.state}).reduce(function(t,e){return t[e.key]=e.state,t},{})}function o(){function t(t,e){g[t]=e}function e(t){
|
||||
return g[t]}function n(){var t=m[v],n=t.basename,r=t.pathname,i=t.search,o=(n||"")+r+(i||""),s=void 0,l=void 0
|
||||
@ -7825,7 +7825,7 @@ return"string"==typeof t?{pathname:t,key:e}:"object"==typeof t&&t?a({},t,{key:e}
|
||||
var g=i(m)
|
||||
return u}e.__esModule=!0
|
||||
var a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},s=n(204),l=r(s),u=n(201),c=r(u),d=n(203),f=n(202),p=n(209),h=r(p)
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},s=n(205),l=r(s),u=n(202),c=r(u),d=n(204),f=n(203),p=n(210),h=r(p)
|
||||
e["default"]=o,t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}function i(t){return function(e){var n=(0,a["default"])((0,l["default"])(t))(e)
|
||||
return n.__v2_compatible__=!0,n}}e.__esModule=!0,e["default"]=i
|
||||
@ -7843,7 +7843,7 @@ return function(t){return r.reduceRight(function(e,n){return n(e,t)},a["default"
|
||||
|
||||
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0
|
||||
var i=n(200),o=r(i),a=n(978),s=r(a)
|
||||
var i=n(201),o=r(i),a=n(978),s=r(a)
|
||||
e["default"]=(0,s["default"])(o["default"]),t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0,e["default"]=function(t){var e=void 0
|
||||
return a&&(e=(0,o["default"])(t)()),e}
|
||||
@ -8325,7 +8325,7 @@ s["default"])(t,["componentClass","className"]),i=(0,b.splitBsProps)(r),a=i[0],l
|
||||
return g["default"].createElement(e,(0,o["default"])({},l,{className:(0,m["default"])(n,u)}))},e}(g["default"].Component)
|
||||
k.propTypes=x,k.defaultProps=w,e["default"]=(0,b.bsClass)("carousel-caption",k),t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0
|
||||
var i=n(989),o=r(i),a=n(1073),s=r(a),l=n(1027),u=r(l),c=n(1028),d=r(c),f=n(1064),p=r(f),h=n(1074),m=r(h),v=n(5),g=r(v),y=n(176),_=r(y),b=n(1101),x=r(b),w={direction:g["default"].PropTypes.oneOf(["prev","next"]),
|
||||
var i=n(989),o=r(i),a=n(1073),s=r(a),l=n(1027),u=r(l),c=n(1028),d=r(c),f=n(1064),p=r(f),h=n(1074),m=r(h),v=n(5),g=r(v),y=n(177),_=r(y),b=n(1101),x=r(b),w={direction:g["default"].PropTypes.oneOf(["prev","next"]),
|
||||
onAnimateOutEnd:g["default"].PropTypes.func,active:g["default"].PropTypes.bool,animateIn:g["default"].PropTypes.bool,animateOut:g["default"].PropTypes.bool,index:g["default"].PropTypes.number},k={active:!1,
|
||||
animateIn:!1,animateOut:!1},C=function(t){function e(n,r){(0,u["default"])(this,e)
|
||||
var i=(0,d["default"])(this,t.call(this,n,r))
|
||||
@ -8458,7 +8458,7 @@ t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,wri
|
||||
value:!0}),e.EXITING=e.ENTERED=e.ENTERING=e.EXITED=e.UNMOUNTED=void 0
|
||||
var u=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},c=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n]
|
||||
r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),d=n(5),f=r(d),p=n(176),h=r(p),m=n(1119),v=r(m),g=n(1121),y=r(g),_=n(1074),b=r(_),x=v["default"].end,w=e.UNMOUNTED=0,k=e.EXITED=1,C=e.ENTERING=2,j=e.ENTERED=3,T=e.EXITING=4,E=function(t){
|
||||
r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),d=n(5),f=r(d),p=n(177),h=r(p),m=n(1119),v=r(m),g=n(1121),y=r(g),_=n(1074),b=r(_),x=v["default"].end,w=e.UNMOUNTED=0,k=e.EXITED=1,C=e.ENTERING=2,j=e.ENTERED=3,T=e.EXITING=4,E=function(t){
|
||||
function e(t,n){o(this,e)
|
||||
var r=a(this,Object.getPrototypeOf(e).call(this,t,n)),i=void 0
|
||||
return i=t["in"]?t.transitionAppear?k:j:t.unmountOnExit?w:k,r.state={status:i},r.nextCallback=null,r}return s(e,t),c(e,[{key:"componentDidMount",value:function n(){this.props.transitionAppear&&this.props["in"]&&this.performEnter(this.props)
|
||||
@ -8500,7 +8500,7 @@ var r=n(1120),i=function o(){}
|
||||
r&&(i=function(){return document.addEventListener?function(t,e,n,r){return t.addEventListener(e,n,r||!1)}:document.attachEvent?function(t,e,n){return t.attachEvent("on"+e,n)}:void 0}()),t.exports=i},function(t,e,n){
|
||||
"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0
|
||||
var i=n(1073),o=r(i),a=n(989),s=r(a),l=n(1027),u=r(l),c=n(1028),d=r(c),f=n(1064),p=r(f),h=n(1074),m=r(h),v=n(1123),g=r(v),y=n(1125),_=r(y),b=n(1126),x=r(b),w=n(5),k=r(w),C=n(176),j=r(C),T=n(1096),E=r(T),S=n(1092),P=r(S),O=n(1127),M=r(O),N=n(1128),A=r(N),D=n(1104),I=r(D),R=n(1095),F=r(R),L=n(1131),H=r(L),Q=n(1146),z=r(Q),W=n(1075),B=n(1082),U=r(B),q=n(1147),$=n(1083),V=r($),K=z["default"].defaultProps.bsRole,X=H["default"].defaultProps.bsRole,Y={
|
||||
var i=n(1073),o=r(i),a=n(989),s=r(a),l=n(1027),u=r(l),c=n(1028),d=r(c),f=n(1064),p=r(f),h=n(1074),m=r(h),v=n(1123),g=r(v),y=n(1125),_=r(y),b=n(1126),x=r(b),w=n(5),k=r(w),C=n(177),j=r(C),T=n(1096),E=r(T),S=n(1092),P=r(S),O=n(1127),M=r(O),N=n(1128),A=r(N),D=n(1104),I=r(D),R=n(1095),F=r(R),L=n(1131),H=r(L),Q=n(1146),z=r(Q),W=n(1075),B=n(1082),U=r(B),q=n(1147),$=n(1083),V=r($),K=z["default"].defaultProps.bsRole,X=H["default"].defaultProps.bsRole,Y={
|
||||
dropup:k["default"].PropTypes.bool,id:(0,M["default"])(k["default"].PropTypes.oneOfType([k["default"].PropTypes.string,k["default"].PropTypes.number])),componentClass:P["default"],children:(0,E["default"])((0,
|
||||
q.requiredRoles)(K,X),(0,q.exclusiveRoles)(X)),disabled:k["default"].PropTypes.bool,pullRight:k["default"].PropTypes.bool,open:k["default"].PropTypes.bool,onClose:k["default"].PropTypes.func,onToggle:k["default"].PropTypes.func,
|
||||
onSelect:k["default"].PropTypes.func,role:k["default"].PropTypes.string},G={componentClass:F["default"]},Z=function(t){function e(n,r){(0,u["default"])(this,e)
|
||||
@ -8609,7 +8609,7 @@ for(var r in t)h(t,r)&&e.call(n,t[r],r,t)}function h(t,e){return!!t&&Object.prot
|
||||
e.uncontrolledPropTypes=o,e.getType=a,e.getValue=s,e.getLinkName=u,e.defaultKey=c,e.chain=d,e.transform=f,e.each=p,e.has=h,e.isReactComponent=m
|
||||
var v=n(5),g=r(v),y=n(1080),_=r(y),b=e.version=g["default"].version.split(".").map(parseFloat)},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0
|
||||
var i=n(989),o=r(i),a=n(1073),s=r(a),l=n(1132),u=r(l),c=n(1027),d=r(c),f=n(1028),p=r(f),h=n(1064),m=r(h),v=n(1074),g=r(v),y=n(1126),_=r(y),b=n(5),x=r(b),w=n(176),k=r(w),C=n(1141),j=r(C),T=n(1075),E=n(1082),S=r(E),P=n(1083),O=r(P),M={
|
||||
var i=n(989),o=r(i),a=n(1073),s=r(a),l=n(1132),u=r(l),c=n(1027),d=r(c),f=n(1028),p=r(f),h=n(1064),m=r(h),v=n(1074),g=r(v),y=n(1126),_=r(y),b=n(5),x=r(b),w=n(177),k=r(w),C=n(1141),j=r(C),T=n(1075),E=n(1082),S=r(E),P=n(1083),O=r(P),M={
|
||||
open:x["default"].PropTypes.bool,pullRight:x["default"].PropTypes.bool,onClose:x["default"].PropTypes.func,labelledBy:x["default"].PropTypes.oneOfType([x["default"].PropTypes.string,x["default"].PropTypes.number]),
|
||||
onSelect:x["default"].PropTypes.func},N={bsRole:"menu",pullRight:!1},A=function(t){function e(n){(0,d["default"])(this,e)
|
||||
var r=(0,p["default"])(this,t.call(this,n))
|
||||
@ -8662,7 +8662,7 @@ t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,wri
|
||||
}function u(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}function c(){var t=w+"_"+k++
|
||||
return{id:t,suppressRootClose:function e(n){n.nativeEvent[t]=!0}}}Object.defineProperty(e,"__esModule",{value:!0})
|
||||
var d=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n]
|
||||
r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),f=n(5),p=r(f),h=n(176),m=r(h),v=n(1142),g=r(v),y=n(1144),_=r(y),b=n(1145),x=r(b),w="__click_was_inside",k=0,C=function(t){
|
||||
r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),f=n(5),p=r(f),h=n(177),m=r(h),v=n(1142),g=r(v),y=n(1144),_=r(y),b=n(1145),x=r(b),w="__click_was_inside",k=0,C=function(t){
|
||||
function e(t){o(this,e)
|
||||
var n=a(this,Object.getPrototypeOf(e).call(this,t))
|
||||
n.handleDocumentMouse=n.handleDocumentMouse.bind(n),n.handleDocumentKeyUp=n.handleDocumentKeyUp.bind(n)
|
||||
@ -8693,7 +8693,7 @@ return e.filter(function(t){return null!=t}).reduce(function(t,e){if("function"!
|
||||
return null===t?e:function n(){for(var n=arguments.length,r=Array(n),i=0;i<n;i++)r[i]=arguments[i]
|
||||
t.apply(this,r),e.apply(this,r)}},null)}Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=n,t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=function(t){return(0,s["default"])(o["default"].findDOMNode(t))}
|
||||
var i=n(176),o=r(i),a=n(1124),s=r(a)
|
||||
var i=n(177),o=r(i),a=n(1124),s=r(a)
|
||||
t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0
|
||||
var i=n(989),o=r(i),a=n(1073),s=r(a),l=n(1027),u=r(l),c=n(1028),d=r(c),f=n(1064),p=r(f),h=n(5),m=r(h),v=n(1074),g=r(v),y=n(1094),_=r(y),b=n(1091),x=r(b),w=n(1075),k={noCaret:m["default"].PropTypes.bool,
|
||||
@ -8907,7 +8907,7 @@ role:"heading",className:(0,m["default"])(l,(0,w.prefix)(f,"header")),style:u}))
|
||||
o["default"])({},p,{role:"menuitem",tabIndex:"-1",onClick:(0,C["default"])(a,this.handleClick)})))},e}(g["default"].Component)
|
||||
E.propTypes=j,E.defaultProps=T,e["default"]=(0,w.bsClass)("dropdown",E),t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0
|
||||
var i=n(1073),o=r(i),a=n(1027),s=r(a),l=n(1028),u=r(l),c=n(1064),d=r(c),f=n(989),p=r(f),h=n(1074),m=r(h),v=n(1175),g=r(v),y=n(1124),_=r(y),b=n(1120),x=r(b),w=n(1178),k=r(w),C=n(5),j=r(C),T=n(176),E=r(T),S=n(1179),P=r(S),O=n(1188),M=r(O),N=n(1092),A=r(N),D=n(1150),I=r(D),R=n(1192),F=r(R),L=n(1193),H=r(L),Q=n(1194),z=r(Q),W=n(1195),B=r(W),U=n(1196),q=r(U),$=n(1075),V=n(1082),K=r(V),X=n(1149),Y=r(X),G=n(1081),Z=(0,
|
||||
var i=n(1073),o=r(i),a=n(1027),s=r(a),l=n(1028),u=r(l),c=n(1064),d=r(c),f=n(989),p=r(f),h=n(1074),m=r(h),v=n(1175),g=r(v),y=n(1124),_=r(y),b=n(1120),x=r(b),w=n(1178),k=r(w),C=n(5),j=r(C),T=n(177),E=r(T),S=n(1179),P=r(S),O=n(1188),M=r(O),N=n(1092),A=r(N),D=n(1150),I=r(D),R=n(1192),F=r(R),L=n(1193),H=r(L),Q=n(1194),z=r(Q),W=n(1195),B=r(W),U=n(1196),q=r(U),$=n(1075),V=n(1082),K=r(V),X=n(1149),Y=r(X),G=n(1081),Z=(0,
|
||||
p["default"])({},P["default"].propTypes,H["default"].propTypes,{backdrop:j["default"].PropTypes.oneOf(["static",!0,!1]),keyboard:j["default"].PropTypes.bool,animation:j["default"].PropTypes.bool,dialogComponentClass:A["default"],
|
||||
autoFocus:j["default"].PropTypes.bool,enforceFocus:j["default"].PropTypes.bool,show:j["default"].PropTypes.bool,onHide:j["default"].PropTypes.func,onEnter:j["default"].PropTypes.func,onEntering:j["default"].PropTypes.func,
|
||||
onEntered:j["default"].PropTypes.func,onExit:j["default"].PropTypes.func,onExiting:j["default"].PropTypes.func,onExited:j["default"].PropTypes.func,container:P["default"].propTypes.container}),J=(0,p["default"])({},P["default"].defaultProps,{
|
||||
@ -8988,7 +8988,7 @@ var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){re
|
||||
|
||||
e["default"]=(0,u["default"])(i)},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}Object.defineProperty(e,"__esModule",{value:!0})
|
||||
var i=n(5),o=r(i),a=n(176),s=r(a),l=n(1180),u=r(l),c=n(1145),d=r(c),f=n(1182),p=r(f),h=o["default"].createClass({displayName:"Portal",propTypes:{container:o["default"].PropTypes.oneOfType([u["default"],o["default"].PropTypes.func])
|
||||
var i=n(5),o=r(i),a=n(177),s=r(a),l=n(1180),u=r(l),c=n(1145),d=r(c),f=n(1182),p=r(f),h=o["default"].createClass({displayName:"Portal",propTypes:{container:o["default"].PropTypes.oneOfType([u["default"],o["default"].PropTypes.func])
|
||||
},componentDidMount:function m(){this._renderOverlay()},componentDidUpdate:function v(){this._renderOverlay()},componentWillReceiveProps:function g(t){this._overlayTarget&&t.container!==this.props.container&&(this._portalContainerNode.removeChild(this._overlayTarget),
|
||||
this._portalContainerNode=(0,p["default"])(t.container,(0,d["default"])(this).body),this._portalContainerNode.appendChild(this._overlayTarget))},componentWillUnmount:function y(){this._unrenderOverlay(),
|
||||
this._unmountOverlayTarget()},_mountOverlayTarget:function _(){this._overlayTarget||(this._overlayTarget=document.createElement("div"),this._portalContainerNode=(0,p["default"])(this.props.container,(0,
|
||||
@ -9000,7 +9000,7 @@ if(!this.isMounted())throw new Error("getOverlayDOMNode(): A component must be m
|
||||
return this._overlayInstance?this._overlayInstance.getWrappedDOMNode?this._overlayInstance.getWrappedDOMNode():s["default"].findDOMNode(this._overlayInstance):null}})
|
||||
e["default"]=h,t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}function i(t,e){return t="function"==typeof t?t():t,a["default"].findDOMNode(t)||e}Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=i
|
||||
var o=n(176),a=r(o)
|
||||
var o=n(177),a=r(o)
|
||||
t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){var n=-1
|
||||
return t.some(function(t,r){if(e(t,r))return n=r,!0}),n}function a(t,e){return o(t,function(t){return t.modals.indexOf(e)!==-1})}Object.defineProperty(e,"__esModule",{value:!0})
|
||||
@ -9074,7 +9074,7 @@ var i=n(989),o=r(i),a=n(1073),s=r(a),l=n(1027),u=r(l),c=n(1028),d=r(c),f=n(1064)
|
||||
return g["default"].createElement("h4",(0,o["default"])({},a,{className:(0,m["default"])(e,l)}))},e}(g["default"].Component)
|
||||
e["default"]=(0,y.bsClass)("modal-title",_),t.exports=e["default"]},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0
|
||||
var i=n(989),o=r(i),a=n(1073),s=r(a),l=n(1027),u=r(l),c=n(1028),d=r(c),f=n(1064),p=r(f),h=n(1074),m=r(h),v=n(1126),g=r(v),y=n(5),_=r(y),b=n(176),x=r(b),w=n(1096),k=r(w),C=n(1104),j=r(C),T=n(1075),E=n(1082),S=r(E),P=n(1083),O=r(P),M={
|
||||
var i=n(989),o=r(i),a=n(1073),s=r(a),l=n(1027),u=r(l),c=n(1028),d=r(c),f=n(1064),p=r(f),h=n(1074),m=r(h),v=n(1126),g=r(v),y=n(5),_=r(y),b=n(177),x=r(b),w=n(1096),k=r(w),C=n(1104),j=r(C),T=n(1075),E=n(1082),S=r(E),P=n(1083),O=r(P),M={
|
||||
activeKey:_["default"].PropTypes.any,activeHref:_["default"].PropTypes.string,stacked:_["default"].PropTypes.bool,justified:(0,k["default"])(_["default"].PropTypes.bool,function(t){var e=t.justified,n=t.navbar
|
||||
|
||||
|
||||
@ -9235,7 +9235,7 @@ t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,wri
|
||||
value:!0})
|
||||
var l=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e]
|
||||
for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},u=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n]
|
||||
r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),c=n(1074),d=r(c),f=n(5),p=r(f),h=n(176),m=r(h),v=n(1180),g=r(v),y=n(1208),_=r(y),b=n(1182),x=r(b),w=n(1145),k=r(w),C=function(t){
|
||||
r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),c=n(1074),d=r(c),f=n(5),p=r(f),h=n(177),m=r(h),v=n(1180),g=r(v),y=n(1208),_=r(y),b=n(1182),x=r(b),w=n(1145),k=r(w),C=function(t){
|
||||
function e(t,n){o(this,e)
|
||||
var r=a(this,Object.getPrototypeOf(e).call(this,t,n))
|
||||
return r.state={positionLeft:0,positionTop:0,arrowOffsetLeft:null,arrowOffsetTop:null},r._needsFlush=!1,r._lastTarget=null,r}return s(e,t),u(e,[{key:"componentDidMount",value:function n(){this.updatePosition(this.getTarget())
|
||||
@ -9296,7 +9296,7 @@ return void 0===e?n?"pageXOffset"in n?n.pageXOffset:n.document.documentElement.s
|
||||
|
||||
}},function(t,e,n){"use strict"
|
||||
function r(t){return t&&t.__esModule?t:{"default":t}}function i(t,e){return Array.isArray(e)?e.indexOf(t)>=0:t===e}e.__esModule=!0
|
||||
var o=n(1073),a=r(o),s=n(1027),l=r(s),u=n(1028),c=r(u),d=n(1064),f=r(d),p=n(989),h=r(p),m=n(1125),v=r(m),g=n(5),y=r(g),_=n(176),b=r(_),x=n(1104),w=r(x),k=n(1205),C=r(k),j=n(1082),T=r(j),E=y["default"].PropTypes.oneOf(["click","hover","focus"]),S=(0,
|
||||
var o=n(1073),a=r(o),s=n(1027),l=r(s),u=n(1028),c=r(u),d=n(1064),f=r(d),p=n(989),h=r(p),m=n(1125),v=r(m),g=n(5),y=r(g),_=n(177),b=r(_),x=n(1104),w=r(x),k=n(1205),C=r(k),j=n(1082),T=r(j),E=y["default"].PropTypes.oneOf(["click","hover","focus"]),S=(0,
|
||||
h["default"])({},C["default"].propTypes,{trigger:y["default"].PropTypes.oneOfType([E,y["default"].PropTypes.arrayOf(E)]),delay:y["default"].PropTypes.number,delayShow:y["default"].PropTypes.number,delayHide:y["default"].PropTypes.number,
|
||||
defaultOverlayShown:y["default"].PropTypes.bool,overlay:y["default"].PropTypes.node.isRequired,onBlur:y["default"].PropTypes.func,onClick:y["default"].PropTypes.func,onFocus:y["default"].PropTypes.func,
|
||||
onMouseOut:y["default"].PropTypes.func,onMouseOver:y["default"].PropTypes.func,target:y["default"].PropTypes.oneOf([null]),onHide:y["default"].PropTypes.oneOf([null]),show:y["default"].PropTypes.oneOf([null])
|
||||
|
@ -36,6 +36,7 @@ class FormAlert extends SilverStripeComponent {
|
||||
* @returns {string} can be the following values "success", "warning", "danger", "info"
|
||||
*/
|
||||
getMessageStyle() {
|
||||
// See ValidationResult::TYPE_ constant definitions in PHP.
|
||||
switch (this.props.type) {
|
||||
case 'good':
|
||||
case 'success':
|
||||
|
@ -103,8 +103,9 @@ class FormBuilder extends SilverStripeComponent {
|
||||
const dataWithAction = Object.assign({}, data, {
|
||||
[action]: 1,
|
||||
});
|
||||
const requestedSchema = this.props.responseRequestedSchema.join();
|
||||
const headers = {
|
||||
'X-Formschema-Request': 'state,schema',
|
||||
'X-Formschema-Request': requestedSchema,
|
||||
'X-Requested-With': 'XMLHttpRequest',
|
||||
};
|
||||
|
||||
@ -383,6 +384,9 @@ const basePropTypes = {
|
||||
submitting: PropTypes.bool,
|
||||
baseFormComponent: PropTypes.func.isRequired,
|
||||
baseFieldComponent: PropTypes.func.isRequired,
|
||||
responseRequestedSchema: PropTypes.arrayOf(PropTypes.oneOf([
|
||||
'schema', 'state', 'errors', 'auto',
|
||||
])),
|
||||
};
|
||||
|
||||
FormBuilder.propTypes = Object.assign({}, basePropTypes, {
|
||||
@ -390,5 +394,9 @@ FormBuilder.propTypes = Object.assign({}, basePropTypes, {
|
||||
schema: schemaPropType.isRequired,
|
||||
});
|
||||
|
||||
FormBuilder.defaultProps = {
|
||||
responseRequestedSchema: ['auto'],
|
||||
};
|
||||
|
||||
export { basePropTypes, schemaPropType };
|
||||
export default FormBuilder;
|
||||
|
@ -38,6 +38,25 @@ If you want to load the schema from a server via XHR, use the
|
||||
* `touchOnChange` (bool): See [redux-form](http://redux-form.com/6.0.5/docs/api/ReduxForm.md/)
|
||||
* `persistentSubmitErrors` (bool): See [redux-form](http://redux-form.com/6.0.5/docs/api/ReduxForm.md/)
|
||||
* `validate` (function): See [redux-form](http://redux-form.com/6.0.5/docs/api/ReduxForm.md/)
|
||||
* `responseRequestedSchema` (array): This allows you to customise the response requested from the server
|
||||
on submit. See below on "Handling submissions".
|
||||
|
||||
## Handling submissions
|
||||
|
||||
The `responseRequestedSchema` property will control the value of the 'X-Formschema-Request' header, which
|
||||
in turn communicates to PHP the kind of response react would like. Your form should only specify the
|
||||
bare minimum that it requires, as each header will represent additional overhead on all XHR requests.
|
||||
|
||||
This is an array which may be any combination of the below values:
|
||||
|
||||
* `schema`: The schema is requested on submit
|
||||
* `state`: The state is requested on submit. Note that this may also include form errors.
|
||||
* `errors`: The list of validation errors is returned in case of error.
|
||||
* `auto`: (default) Conditionally return `errors` if there are errors, or `state` if there are none.
|
||||
|
||||
Note that these are only the requested header values; The PHP submission method may choose to ignore
|
||||
these values, and return any combination of the above. Typically the only time this requested value
|
||||
is respected is when handled by the default validation error handler (LeftAndMain::getSchemaResponse)
|
||||
|
||||
## Schema Structure
|
||||
|
||||
|
@ -2,6 +2,7 @@ import React, { PropTypes, Component } from 'react';
|
||||
import { connect } from 'react-redux';
|
||||
import { bindActionCreators } from 'redux';
|
||||
import fetch from 'isomorphic-fetch';
|
||||
import deepFreeze from 'deep-freeze-strict';
|
||||
import {
|
||||
Field as ReduxFormField,
|
||||
reduxForm,
|
||||
@ -20,6 +21,7 @@ class FormBuilderLoader extends Component {
|
||||
|
||||
this.handleSubmit = this.handleSubmit.bind(this);
|
||||
this.clearSchema = this.clearSchema.bind(this);
|
||||
this.reduceSchemaErrors = this.reduceSchemaErrors.bind(this);
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
@ -90,10 +92,13 @@ class FormBuilderLoader extends Component {
|
||||
|
||||
return promise
|
||||
.then(formSchema => {
|
||||
if (formSchema) {
|
||||
this.props.schemaActions.setSchema(this.props.schemaUrl, formSchema);
|
||||
let schema = formSchema;
|
||||
if (schema) {
|
||||
// Strip errors out of schema response in preparation for setSchema and SubmissionError
|
||||
schema = this.reduceSchemaErrors(schema);
|
||||
this.props.schemaActions.setSchema(this.props.schemaUrl, schema);
|
||||
}
|
||||
return formSchema;
|
||||
return schema;
|
||||
})
|
||||
// TODO Suggest storing messages in a separate redux store rather than throw an error
|
||||
// ref: https://github.com/erikras/redux-form/issues/94#issuecomment-143398399
|
||||
@ -110,27 +115,40 @@ class FormBuilderLoader extends Component {
|
||||
});
|
||||
}
|
||||
|
||||
overrideStateData(state) {
|
||||
if (!this.props.stateOverrides || !state) {
|
||||
return state;
|
||||
/**
|
||||
* Given a submitted schema, ensure that any errors property is merged safely into
|
||||
* the state.
|
||||
*
|
||||
* @param {Object} schema - New schema result
|
||||
* @return {Object}
|
||||
*/
|
||||
reduceSchemaErrors(schema) {
|
||||
// Skip if there are no errors
|
||||
if (!schema.errors) {
|
||||
return schema;
|
||||
}
|
||||
const fieldOverrides = this.props.stateOverrides.fields;
|
||||
let fields = state.fields;
|
||||
if (fieldOverrides && fields) {
|
||||
fields = fields.map((field) => {
|
||||
const fieldOverride = fieldOverrides.find((override) => override.name === field.name);
|
||||
if (!fieldOverride) {
|
||||
return field;
|
||||
}
|
||||
// need to be recursive for the unknown-sized "data" properly
|
||||
return merge.recursive(true, field, fieldOverride);
|
||||
});
|
||||
|
||||
// Inherit state from current schema if not being assigned in this request
|
||||
let reduced = Object.assign({}, schema);
|
||||
if (!reduced.state) {
|
||||
reduced = Object.assign({}, reduced, { state: this.props.schema.state });
|
||||
}
|
||||
return Object.assign({},
|
||||
state,
|
||||
this.props.stateOverrides,
|
||||
{ fields }
|
||||
);
|
||||
|
||||
// Modify state.fields and replace state.messages
|
||||
reduced = Object.assign({}, reduced, {
|
||||
state: Object.assign({}, reduced.state, {
|
||||
// Replace message property for each field
|
||||
fields: reduced.state.fields.map((field) => Object.assign({}, field, {
|
||||
message: schema.errors.find((error) => error.field === field.name),
|
||||
})),
|
||||
// Non-field messages
|
||||
messages: schema.errors.filter((error) => !error.field),
|
||||
}),
|
||||
});
|
||||
|
||||
// Can be safely discarded
|
||||
delete reduced.errors;
|
||||
return deepFreeze(reduced);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -173,6 +191,7 @@ class FormBuilderLoader extends Component {
|
||||
* @return {Object} Promise from the AJAX request.
|
||||
*/
|
||||
fetch(schema = true, state = true) {
|
||||
// Note: `errors` is only valid for submissions, not schema requests, so omitted here
|
||||
const headerValues = [];
|
||||
|
||||
if (schema) {
|
||||
|
@ -8,11 +8,7 @@ export default function schemaReducer(state = initialState, action = null) {
|
||||
|
||||
case ACTION_TYPES.SET_SCHEMA: {
|
||||
return deepFreeze(Object.assign({}, state, {
|
||||
[action.payload.id]: Object.assign({}, state[action.payload.id], {
|
||||
id: action.payload.id,
|
||||
schema: action.payload.schema,
|
||||
state: action.payload.state,
|
||||
}),
|
||||
[action.payload.id]: Object.assign({}, state[action.payload.id], action.payload),
|
||||
}));
|
||||
}
|
||||
|
||||
|
@ -10,7 +10,9 @@ use SilverStripe\Forms\HiddenField;
|
||||
use SilverStripe\Forms\FormAction;
|
||||
use SilverStripe\Forms\FieldList;
|
||||
use SilverStripe\Forms\Form;
|
||||
use SilverStripe\Forms\RequiredFields;
|
||||
use SilverStripe\ORM\SS_List;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\ORM\Versioning\ChangeSet;
|
||||
use SilverStripe\ORM\Versioning\ChangeSetItem;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
@ -437,19 +439,22 @@ class CampaignAdmin extends LeftAndMain implements PermissionProvider {
|
||||
->setIcon('save'),
|
||||
FormAction::create('cancel', _t('LeftAndMain.CANCEL', 'Cancel'))
|
||||
->setUseButtonTag(true)
|
||||
)
|
||||
),
|
||||
new RequiredFields('Name')
|
||||
);
|
||||
|
||||
// Load into form
|
||||
if($id && $record) {
|
||||
$form->loadDataFrom($record);
|
||||
}
|
||||
$form->getValidator()->addRequiredField('Name');
|
||||
// Configure form to respond to validation errors with form schema
|
||||
// if requested via react.
|
||||
$form->setValidationResponseCallback(function() use ($form, $record) {
|
||||
$schemaId = Controller::join_links($this->Link('schema/DetailEditForm'), $record->exists() ? $record->ID : '');
|
||||
return $this->getSchemaResponse($form, $schemaId);
|
||||
$form->setValidationResponseCallback(function(ValidationResult $errors) use ($form, $record) {
|
||||
$schemaId = Controller::join_links(
|
||||
$this->Link('schema/DetailEditForm'),
|
||||
$record->isInDB() ? $record->ID : ''
|
||||
);
|
||||
return $this->getSchemaResponse($schemaId, $form, $errors);
|
||||
});
|
||||
|
||||
return $form;
|
||||
|
@ -35,6 +35,7 @@ use SilverStripe\i18n\i18n;
|
||||
use SilverStripe\ORM\FieldType\DBHTMLText;
|
||||
use SilverStripe\ORM\Hierarchy\Hierarchy;
|
||||
use SilverStripe\ORM\SS_List;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\ORM\Versioning\Versioned;
|
||||
use SilverStripe\ORM\DataModel;
|
||||
use SilverStripe\ORM\ValidationException;
|
||||
@ -55,18 +56,20 @@ use InvalidArgumentException;
|
||||
|
||||
use SilverStripe\SiteConfig\SiteConfig;
|
||||
|
||||
|
||||
/**
|
||||
* LeftAndMain is the parent class of all the two-pane views in the CMS.
|
||||
* If you are wanting to add more areas to the CMS, you can do it by subclassing LeftAndMain.
|
||||
*
|
||||
* This is essentially an abstract class which should be subclassed.
|
||||
* See {@link CMSMain} for a good example.
|
||||
*
|
||||
* @property FormSchema $schema
|
||||
*/
|
||||
class LeftAndMain extends Controller implements PermissionProvider {
|
||||
|
||||
/**
|
||||
* Form schema header identifier
|
||||
*/
|
||||
const SCHEMA_HEADER = 'X-Formschema-Request';
|
||||
|
||||
/**
|
||||
* Enable front-end debugging (increases verbosity) in dev mode.
|
||||
* Will be ignored in live environments.
|
||||
@ -156,9 +159,16 @@ class LeftAndMain extends Controller implements PermissionProvider {
|
||||
];
|
||||
|
||||
private static $dependencies = [
|
||||
'schema' => '%$FormSchema'
|
||||
'FormSchema' => '%$FormSchema'
|
||||
];
|
||||
|
||||
/**
|
||||
* Current form schema helper
|
||||
*
|
||||
* @var FormSchema
|
||||
*/
|
||||
protected $schema = null;
|
||||
|
||||
/**
|
||||
* Assign themes to use for cms
|
||||
*
|
||||
@ -296,6 +306,26 @@ class LeftAndMain extends Controller implements PermissionProvider {
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get form schema helper
|
||||
*
|
||||
* @return FormSchema
|
||||
*/
|
||||
public function getFormSchema() {
|
||||
return $this->schema;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set form schema helper for this controller
|
||||
*
|
||||
* @param FormSchema $schema
|
||||
* @return $this
|
||||
*/
|
||||
public function setFormSchema(FormSchema $schema) {
|
||||
$this->schema = $schema;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a JSON schema representing the current edit form.
|
||||
*
|
||||
@ -305,7 +335,6 @@ class LeftAndMain extends Controller implements PermissionProvider {
|
||||
* @return HTTPResponse
|
||||
*/
|
||||
public function schema($request) {
|
||||
$response = $this->getResponse();
|
||||
$formName = $request->param('FormName');
|
||||
$itemID = $request->param('ItemID');
|
||||
|
||||
@ -322,72 +351,43 @@ class LeftAndMain extends Controller implements PermissionProvider {
|
||||
}
|
||||
|
||||
$form = $this->{"get{$formName}"}($itemID);
|
||||
|
||||
$response->addHeader('Content-Type', 'application/json');
|
||||
$response->setBody(Convert::raw2json($this->getSchemaForForm($form)));
|
||||
|
||||
return $response;
|
||||
$schemaID = $request->getURL();
|
||||
return $this->getSchemaResponse($schemaID, $form);
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the current request has a X-Formschema-Request header set.
|
||||
* Used by conditional logic that responds to validation results
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
protected function getSchemaRequested() {
|
||||
$parts = $this->getRequest()->getHeader(static::SCHEMA_HEADER);
|
||||
return !empty($parts);
|
||||
}
|
||||
|
||||
/**
|
||||
* Given a form, generate a response containing the requested form
|
||||
* schema if X-Formschema-Request header is set.
|
||||
* Generate schema for the given form based on the X-Formschema-Request header value
|
||||
*
|
||||
* @param Form $form
|
||||
* @param String $id Optional, will default to the current request URL
|
||||
* @param string $schemaID ID for this schema. Required.
|
||||
* @param Form $form Required for 'state' or 'schema' response
|
||||
* @param ValidationResult $errors Required for 'error' response
|
||||
* @param array $extraData Any extra data to be merged with the schema response
|
||||
* @return HTTPResponse
|
||||
*/
|
||||
protected function getSchemaResponse($form, $id = null) {
|
||||
$request = $this->getRequest();
|
||||
if($request->getHeader('X-Formschema-Request')) {
|
||||
$data = $this->getSchemaForForm($form, $id);
|
||||
$response = new HTTPResponse(Convert::raw2json($data));
|
||||
$response->addHeader('Content-Type', 'application/json');
|
||||
protected function getSchemaResponse($schemaID, $form = null, ValidationResult $errors = null, $extraData = []) {
|
||||
$parts = $this->getRequest()->getHeader(static::SCHEMA_HEADER);
|
||||
$data = $this
|
||||
->getFormSchema()
|
||||
->getMultipartSchema($parts, $schemaID, $form, $errors);
|
||||
|
||||
// Clear non-schema form validation / data / message
|
||||
// since it does not need to be redirected
|
||||
$form->clearMessage();
|
||||
return $response;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
if ($extraData) {
|
||||
$data = array_merge($data, $extraData);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a representation of the provided {@link Form} as structured data,
|
||||
* based on the request data.
|
||||
*
|
||||
* @param Form $form
|
||||
* @param String $id Optional, will default to the current request URL
|
||||
* @return array
|
||||
*/
|
||||
protected function getSchemaForForm(Form $form, $id = null) {
|
||||
$request = $this->getRequest();
|
||||
$id = $id ? $id : $request->getURL();
|
||||
$return = null;
|
||||
|
||||
// Valid values for the "X-Formschema-Request" header are "schema" and "state".
|
||||
// If either of these values are set they will be stored in the $schemaParst array
|
||||
// and used to construct the response body.
|
||||
if ($schemaHeader = $request->getHeader('X-Formschema-Request')) {
|
||||
$schemaParts = array_filter(explode(',', $schemaHeader), function($value) {
|
||||
$validHeaderValues = ['schema', 'state'];
|
||||
return in_array(trim($value), $validHeaderValues);
|
||||
});
|
||||
} else {
|
||||
$schemaParts = ['schema'];
|
||||
}
|
||||
|
||||
$return = ['id' => $id];
|
||||
|
||||
if (in_array('schema', $schemaParts)) {
|
||||
$return['schema'] = $this->schema->getSchema($form);
|
||||
}
|
||||
|
||||
if (in_array('state', $schemaParts)) {
|
||||
$return['state'] = $this->schema->getState($form);
|
||||
}
|
||||
|
||||
return $return;
|
||||
$response = new HTTPResponse(Convert::raw2json($data));
|
||||
$response->addHeader('Content-Type', 'application/json');
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1304,14 +1304,12 @@ class LeftAndMain extends Controller implements PermissionProvider {
|
||||
$this->setCurrentPageID($record->ID);
|
||||
|
||||
$message = _t('LeftAndMain.SAVEDUP', 'Saved.');
|
||||
if($request->getHeader('X-Formschema-Request')) {
|
||||
if($this->getSchemaRequested()) {
|
||||
$schemaId = Controller::join_links($this->Link('schema/DetailEditForm'), $id);
|
||||
// Ensure that newly created records have all their data loaded back into the form.
|
||||
$form->loadDataFrom($record);
|
||||
$form->setMessage($message, 'good');
|
||||
$data = $this->getSchemaForForm($form, $schemaId);
|
||||
$response = new HTTPResponse(Convert::raw2json($data));
|
||||
$response->addHeader('Content-Type', 'application/json');
|
||||
$response = $this->getSchemaResponse($schemaId, $form);
|
||||
} else {
|
||||
$response = $this->getResponseNegotiator()->respond($request);
|
||||
}
|
||||
@ -1580,10 +1578,9 @@ class LeftAndMain extends Controller implements PermissionProvider {
|
||||
$form->loadDataFrom($record);
|
||||
$form->setTemplate($this->getTemplatesWithSuffix('_EditForm'));
|
||||
$form->setAttribute('data-pjax-fragment', 'CurrentForm');
|
||||
$form->setValidationResponseCallback(function() use ($negotiator, $form) {
|
||||
$form->setValidationResponseCallback(function(ValidationResult $errors) use ($negotiator, $form) {
|
||||
$request = $this->getRequest();
|
||||
if($request->isAjax() && $negotiator) {
|
||||
$form->setupFormErrors();
|
||||
$result = $form->forTemplate();
|
||||
|
||||
return $negotiator->respond($request, array(
|
||||
|
@ -65,7 +65,8 @@ the `setValue` method.
|
||||
|
||||
:::php
|
||||
public function validate($validator) {
|
||||
if($this->value == 10) {
|
||||
if($this->Value() == 10) {
|
||||
$validator->validationError($this->Name(), 'This value cannot be 10');
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -73,7 +74,7 @@ the `setValue` method.
|
||||
}
|
||||
|
||||
The `validate` method should return `true` if the value passes any validation and `false` if SilverStripe should trigger
|
||||
a validation error on the page.
|
||||
a validation error on the page. In addition a useful error message must be set on the given validator.
|
||||
|
||||
<div class="notice" markdown="1">
|
||||
You can also override the entire `Form` validation by subclassing `Form` and defining a `validate` method on the form.
|
||||
@ -141,7 +142,7 @@ reusable and would not be possible within the `CMS` or other automated `UI` but
|
||||
}
|
||||
|
||||
public function doSubmitForm($data, $form) {
|
||||
// At this point, RequiredFields->validate() will have been called already,
|
||||
// At this point, RequiredFields->isValid() will have been called already,
|
||||
// so we can assume that the values exist. Say we want to make sure that email hasn't already been used.
|
||||
|
||||
$check = Member::get()->filter('Email', $data['Email'])->first();
|
||||
@ -214,7 +215,36 @@ classes added to each input. For Parsley we can structure the form like.
|
||||
|
||||
An alternative (or additional) approach to validation is to place it directly on the database model. SilverStripe
|
||||
provides a [api:DataObject::validate()] method to validate data at the model level. See
|
||||
[Data Model Validation](../model/validation).
|
||||
[Data Model Validation](../model/validation).
|
||||
|
||||
## Form action validation
|
||||
|
||||
At times it's not possible for all validation or recoverable errors to be pre-determined in advance of form
|
||||
submission, such as those generated by the form [api:Validator] object. Sometimes errors may occur within form
|
||||
action methods, and it is necessary to display errors on the form after initial validation has been performed.
|
||||
|
||||
In this case you may throw a [api:ValidationException] object within your handler, optionally passing it an
|
||||
error message, or a [api:ValidationResult] object containing the list of errors you wish to display.
|
||||
|
||||
E.g.
|
||||
|
||||
|
||||
:::php
|
||||
class MyController extends Controller
|
||||
{
|
||||
public function doSave($data, $form) {
|
||||
$success = $this->sendEmail($data);
|
||||
|
||||
// Example error handling
|
||||
if (!$success) {
|
||||
throw new ValidationException('Sorry, we could not email to that address');
|
||||
}
|
||||
|
||||
// If success
|
||||
return $this->redirect($this->Link('success'));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
### Validation in the CMS
|
||||
|
||||
|
@ -1095,6 +1095,50 @@ Some methods on `Requirements` have had their method signatures changed:
|
||||
A new config `Requirements_Backend.combine_in_dev` has been added in order to allow combined files to be
|
||||
forced on during development. If this is off, combined files is only enabled in live environments.
|
||||
|
||||
Form validation has been refactored significantly. A new `FormMessage` trait has been created to
|
||||
handle field-level and form-level messages. This has the following properties:
|
||||
|
||||
* `setMessage` to assign a message, type, and cast
|
||||
* `getMessage` retrieves the message string
|
||||
* `getMessageType` retrieves the message type (E.g. error, good, info)
|
||||
* `getMessageCast` retrieves the cast type
|
||||
* `getMessageCastingHelper` retrieves the DBField cast to use for the appropriate message cast
|
||||
* `getSchemaMessage` encodes this message for form schema use in ReactJS.
|
||||
|
||||
`Form` methods have been changed:
|
||||
|
||||
* `validate` is replaced with `validationResult` instead, which returns a `ValidationResult` instance.
|
||||
This is no longer automatically persisted in the state by default, unless a redirection occurs.
|
||||
You can also save any response in the state by manually invoking `saveFormState` inside a custom
|
||||
validation response handler.
|
||||
* `setupFormErrors` renamed to `restoreFormState`
|
||||
* `resetValidation` renamed to `clearFormState`
|
||||
* `loadMessagesFrom` method created to load a ValidationResult into a form.
|
||||
* `setMessage`. third parameter is now $cast type
|
||||
* `messageForForm` removed. Use `setMessage` or `sessionMessage` instead.
|
||||
* `getSessionValidationResult` / `setSessionValidationResult` used to get / set session errors
|
||||
* `getSessionData` / `setSessionData` used to get / set field values cached in the session
|
||||
* `getAjaxErrorResponse` and `getRedirectReferer` created to simplify `getValidationErrorResponse`
|
||||
* `addErrorMessage` removed. Users can either use `sessionMessage` or `sessionError` to add a
|
||||
form level message, throw a ValidationException during submission, or add a custom validator.
|
||||
|
||||
`Validator` methods have changed:
|
||||
|
||||
* `validate` method now returns a `ValidationResult` instance.
|
||||
* `requireField` method removed. Use `RequiredFields` subclass instead.
|
||||
|
||||
`ValidationResult` now has these methods:
|
||||
|
||||
* `serialize` / `unserialize` for saving within session state
|
||||
* `messageList` renamed to `getMessages`
|
||||
* `error` method replaced with `addMessage` / `addError` / `addFieldMessage` / `addFieldError`
|
||||
* `valid` renamed to `isValid`
|
||||
|
||||
`ValidationException` has these changes:
|
||||
|
||||
* `$message` second constructor parameter is removed. Constructor only accepts `$result`,
|
||||
which may be a string, and optional `$code`
|
||||
|
||||
#### <a name="overview-template-removed"></a>Template and Form Removed API
|
||||
|
||||
* Removed `TabularStyle`
|
||||
@ -1103,12 +1147,24 @@ forced on during development. If this is off, combined files is only enabled in
|
||||
* `getTabPathRewrites`
|
||||
* `setTabPathRewrites`
|
||||
* `rewriteTabPath`
|
||||
* Removed `Form` methods:
|
||||
* Removed `Form` methods (see above for replacements):
|
||||
* `transformTo`
|
||||
* `callfieldmethod`
|
||||
* `single_field_required`
|
||||
* `current_action`
|
||||
* `set_current_action`
|
||||
* `setupFormErrors`
|
||||
* `resetValidation`
|
||||
* `messageForForm`
|
||||
* `addErrorMessage`
|
||||
* Removed `Validator::requireField()` method.
|
||||
* Removed `ValidationResult` (see above for replacements):
|
||||
* `messageList`
|
||||
* `codeList`
|
||||
* `message`
|
||||
* `starredList`
|
||||
* `error`
|
||||
* `valid`
|
||||
* Removed `ReportAdminForm.ss` template
|
||||
* `FormField::dontEscape()` has been removed. Escaping is now managed on a class by class basis.
|
||||
* Removed `PermissionCheckboxSetField::getAssignedPermissionCodes()` (never implemented)
|
||||
|
@ -84,9 +84,9 @@ Each release is labeled in the format `$MAJOR`.`$MINOR`.`$PATCH`. For example, 3
|
||||
|
||||
* `$MAJOR` version is incremented if any backwards incompatible changes are introduced to the public API.
|
||||
* `$MINOR` version is incremented if new, backwards compatible **functionality** is introduced to the public API or
|
||||
improvements are introduced within the private code.
|
||||
improvements are introduced within the private code.
|
||||
* `$PATCH` version is incremented if only backwards compatible **bug fixes** are introduced. A bug fix is defined as
|
||||
an internal change that fixes incorrect behavior.
|
||||
an internal change that fixes incorrect behavior.
|
||||
|
||||
**Public API** refers to any aspect of the system that has been designed to be used by SilverStripe modules & site developers. In SilverStripe 3, because we haven't been clear, in principle we have to treat every public or protected method as *potentially* part of the public API, but sometimes it comes to a judgement call about how likely it is that a given method will have been used in a particular way. If we were strict about never changing publicly exposed behaviour, it would be difficult to fix any bug whatsoever, which isn't in the interests of our user community.
|
||||
|
||||
|
@ -12,7 +12,6 @@ use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\ORM\ValidationException;
|
||||
use SilverStripe\ORM\FieldType\DBComposite;
|
||||
use SilverStripe\Security\Permission;
|
||||
use SilverStripe\Core\Convert;
|
||||
|
||||
/**
|
||||
* Represents a file reference stored in a database
|
||||
@ -455,7 +454,7 @@ class DBFile extends DBComposite implements AssetContainer, Thumbnail
|
||||
{
|
||||
$result = new ValidationResult();
|
||||
$this->validate($result, $filename);
|
||||
if (!$result->valid()) {
|
||||
if (!$result->isValid()) {
|
||||
throw new ValidationException($result);
|
||||
}
|
||||
}
|
||||
@ -477,19 +476,8 @@ class DBFile extends DBComposite implements AssetContainer, Thumbnail
|
||||
return true;
|
||||
}
|
||||
|
||||
// Check allowed extensions
|
||||
$extensions = $this->getAllowedExtensions();
|
||||
if (empty($extensions)) {
|
||||
$extensions = File::config()->allowed_extensions;
|
||||
}
|
||||
sort($extensions);
|
||||
$message = _t(
|
||||
'File.INVALIDEXTENSION',
|
||||
'Extension is not allowed (valid: {extensions})',
|
||||
'Argument 1: Comma-separated list of valid extensions',
|
||||
array('extensions' => wordwrap(implode(', ', $extensions)))
|
||||
);
|
||||
$result->error($message);
|
||||
$message = _t('File.INVALIDEXTENSIONSHORT', 'Extension is not allowed');
|
||||
$result->addError($message);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -261,10 +261,10 @@ class FunctionalTest extends SapphireTest
|
||||
*
|
||||
* @param string $selector A basic CSS selector, e.g. 'li.jobs h3'
|
||||
* @param array|string $expectedMatches The content of at least one of the matched tags
|
||||
* @param string $message
|
||||
* @throws PHPUnit_Framework_AssertionFailedError
|
||||
* @return boolean
|
||||
*/
|
||||
public function assertPartialMatchBySelector($selector, $expectedMatches)
|
||||
public function assertPartialMatchBySelector($selector, $expectedMatches, $message = null)
|
||||
{
|
||||
if (is_string($expectedMatches)) {
|
||||
$expectedMatches = array($expectedMatches);
|
||||
@ -275,21 +275,18 @@ class FunctionalTest extends SapphireTest
|
||||
$actuals = array();
|
||||
if ($items) {
|
||||
foreach ($items as $item) {
|
||||
$actuals[trim(preg_replace("/[ \n\r\t]+/", " ", $item. ''))] = true;
|
||||
$actuals[trim(preg_replace('/\s+/', ' ', (string)$item))] = true;
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($expectedMatches as $match) {
|
||||
$this->assertTrue(
|
||||
isset($actuals[$match]),
|
||||
"Failed asserting the CSS selector '$selector' has a partial match to the expected elements:\n'"
|
||||
. implode("'\n'", $expectedMatches) . "'\n\n"
|
||||
. "Instead the following elements were found:\n'" . implode("'\n'", array_keys($actuals)) . "'"
|
||||
);
|
||||
return false;
|
||||
}
|
||||
$message = $message ?:
|
||||
"Failed asserting the CSS selector '$selector' has a partial match to the expected elements:\n'"
|
||||
. implode("'\n'", $expectedMatches) . "'\n\n"
|
||||
. "Instead the following elements were found:\n'" . implode("'\n'", array_keys($actuals)) . "'";
|
||||
|
||||
return true;
|
||||
foreach ($expectedMatches as $match) {
|
||||
$this->assertTrue(isset($actuals[$match]), $message);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -301,10 +298,10 @@ class FunctionalTest extends SapphireTest
|
||||
*
|
||||
* @param string $selector A basic CSS selector, e.g. 'li.jobs h3'
|
||||
* @param array|string $expectedMatches The content of *all* matching tags as an array
|
||||
* @param string $message
|
||||
* @throws PHPUnit_Framework_AssertionFailedError
|
||||
* @return boolean
|
||||
*/
|
||||
public function assertExactMatchBySelector($selector, $expectedMatches)
|
||||
public function assertExactMatchBySelector($selector, $expectedMatches, $message = null)
|
||||
{
|
||||
if (is_string($expectedMatches)) {
|
||||
$expectedMatches = array($expectedMatches);
|
||||
@ -315,18 +312,16 @@ class FunctionalTest extends SapphireTest
|
||||
$actuals = array();
|
||||
if ($items) {
|
||||
foreach ($items as $item) {
|
||||
$actuals[] = trim(preg_replace("/[ \n\r\t]+/", " ", $item. ''));
|
||||
$actuals[] = trim(preg_replace('/\s+/', ' ', (string)$item));
|
||||
}
|
||||
}
|
||||
|
||||
$this->assertTrue(
|
||||
$expectedMatches == $actuals,
|
||||
"Failed asserting the CSS selector '$selector' has an exact match to the expected elements:\n'"
|
||||
$message = $message ?:
|
||||
"Failed asserting the CSS selector '$selector' has an exact match to the expected elements:\n'"
|
||||
. implode("'\n'", $expectedMatches) . "'\n\n"
|
||||
. "Instead the following elements were found:\n'" . implode("'\n'", $actuals) . "'"
|
||||
);
|
||||
. "Instead the following elements were found:\n'" . implode("'\n'", $actuals) . "'";
|
||||
|
||||
return true;
|
||||
$this->assertTrue($expectedMatches == $actuals, $message);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -338,10 +333,10 @@ class FunctionalTest extends SapphireTest
|
||||
*
|
||||
* @param string $selector A basic CSS selector, e.g. 'li.jobs h3'
|
||||
* @param array|string $expectedMatches The content of at least one of the matched tags
|
||||
* @param string $message
|
||||
* @throws PHPUnit_Framework_AssertionFailedError
|
||||
* @return boolean
|
||||
*/
|
||||
public function assertPartialHTMLMatchBySelector($selector, $expectedMatches)
|
||||
public function assertPartialHTMLMatchBySelector($selector, $expectedMatches, $message = null)
|
||||
{
|
||||
if (is_string($expectedMatches)) {
|
||||
$expectedMatches = array($expectedMatches);
|
||||
@ -357,16 +352,14 @@ class FunctionalTest extends SapphireTest
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($expectedMatches as $match) {
|
||||
$this->assertTrue(
|
||||
isset($actuals[$match]),
|
||||
$message = $message ?:
|
||||
"Failed asserting the CSS selector '$selector' has a partial match to the expected elements:\n'"
|
||||
. implode("'\n'", $expectedMatches) . "'\n\n"
|
||||
. "Instead the following elements were found:\n'" . implode("'\n'", array_keys($actuals)) . "'"
|
||||
);
|
||||
}
|
||||
. "Instead the following elements were found:\n'" . implode("'\n'", array_keys($actuals)) . "'";
|
||||
|
||||
return true;
|
||||
foreach ($expectedMatches as $match) {
|
||||
$this->assertTrue(isset($actuals[$match]), $message);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -378,9 +371,10 @@ class FunctionalTest extends SapphireTest
|
||||
*
|
||||
* @param string $selector A basic CSS selector, e.g. 'li.jobs h3'
|
||||
* @param array|string $expectedMatches The content of *all* matched tags as an array
|
||||
* @param string $message
|
||||
* @throws PHPUnit_Framework_AssertionFailedError
|
||||
*/
|
||||
public function assertExactHTMLMatchBySelector($selector, $expectedMatches)
|
||||
public function assertExactHTMLMatchBySelector($selector, $expectedMatches, $message = null)
|
||||
{
|
||||
$items = $this->cssParser()->getBySelector($selector);
|
||||
|
||||
@ -392,12 +386,12 @@ class FunctionalTest extends SapphireTest
|
||||
}
|
||||
}
|
||||
|
||||
$this->assertTrue(
|
||||
$expectedMatches == $actuals,
|
||||
$message = $message ?:
|
||||
"Failed asserting the CSS selector '$selector' has an exact match to the expected elements:\n'"
|
||||
. implode("'\n'", $expectedMatches) . "'\n\n"
|
||||
. "Instead the following elements were found:\n'" . implode("'\n'", $actuals) . "'"
|
||||
);
|
||||
. "Instead the following elements were found:\n'" . implode("'\n'", $actuals) . "'";
|
||||
|
||||
$this->assertTrue($expectedMatches == $actuals, $message);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -519,7 +519,7 @@ class ConfirmedPasswordField extends FormField
|
||||
|
||||
// With a valid user and password, check the password is correct
|
||||
$checkResult = $member->checkPassword($this->currentPasswordValue);
|
||||
if (!$checkResult->valid()) {
|
||||
if (!$checkResult->isValid()) {
|
||||
$validator->validationError(
|
||||
$name,
|
||||
_t(
|
||||
|
@ -3,6 +3,7 @@
|
||||
namespace SilverStripe\Forms;
|
||||
|
||||
use InvalidArgumentException;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
|
||||
/**
|
||||
* Lets you include a nested group of fields inside a template.
|
||||
@ -147,34 +148,48 @@ class FieldGroup extends CompositeField
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function Message()
|
||||
public function getMessage()
|
||||
{
|
||||
$fs = array();
|
||||
$this->collateDataFields($fs);
|
||||
$dataFields = array();
|
||||
$this->collateDataFields($dataFields);
|
||||
|
||||
foreach ($fs as $subfield) {
|
||||
if ($m = $subfield->Message()) {
|
||||
$message[] = rtrim($m, ".");
|
||||
/** @var FormField $subfield */
|
||||
$messages = [];
|
||||
foreach ($dataFields as $subfield) {
|
||||
$message = $subfield->obj('Message')->forTemplate();
|
||||
if ($message) {
|
||||
$messages[] = rtrim($message, ".");
|
||||
}
|
||||
}
|
||||
|
||||
return (isset($message)) ? implode(", ", $message) . "." : "";
|
||||
if (!$messages) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return implode(", ", $messages) . ".";
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function MessageType()
|
||||
public function getMessageType()
|
||||
{
|
||||
$fs = array();
|
||||
$this->collateDataFields($fs);
|
||||
$dataFields = array();
|
||||
$this->collateDataFields($dataFields);
|
||||
|
||||
foreach ($fs as $subfield) {
|
||||
if ($m = $subfield->MessageType()) {
|
||||
$MessageType[] = $m;
|
||||
/** @var FormField $subfield */
|
||||
foreach ($dataFields as $subfield) {
|
||||
$type = $subfield->getMessageType();
|
||||
if ($type) {
|
||||
return $type;
|
||||
}
|
||||
}
|
||||
|
||||
return (isset($MessageType)) ? implode(". ", $MessageType) : "";
|
||||
return null;
|
||||
}
|
||||
|
||||
public function getMessageCast()
|
||||
{
|
||||
return ValidationResult::CAST_HTML;
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,6 @@
|
||||
|
||||
namespace SilverStripe\Forms;
|
||||
|
||||
use InvalidArgumentException;
|
||||
use SilverStripe\Control\HTTPRequest;
|
||||
use SilverStripe\Control\HTTPResponse_Exception;
|
||||
use SilverStripe\Core\Convert;
|
||||
@ -15,10 +14,11 @@ use SilverStripe\Control\HTTP;
|
||||
use SilverStripe\Control\RequestHandler;
|
||||
use SilverStripe\Dev\Deprecation;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\ORM\FieldType\DBField;
|
||||
use SilverStripe\ORM\DataObjectInterface;
|
||||
use SilverStripe\ORM\FieldType\DBHTMLText;
|
||||
use SilverStripe\ORM\SS_List;
|
||||
use SilverStripe\ORM\ValidationException;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\Security\SecurityToken;
|
||||
use SilverStripe\Security\NullSecurityToken;
|
||||
use SilverStripe\View\SSViewer;
|
||||
@ -66,8 +66,16 @@ use SilverStripe\View\SSViewer;
|
||||
*/
|
||||
class Form extends RequestHandler
|
||||
{
|
||||
use FormMessage;
|
||||
|
||||
/**
|
||||
* Form submission data is URL encoded
|
||||
*/
|
||||
const ENC_TYPE_URLENCODED = 'application/x-www-form-urlencoded';
|
||||
|
||||
/**
|
||||
* Form submission data is multipart form
|
||||
*/
|
||||
const ENC_TYPE_MULTIPART = 'multipart/form-data';
|
||||
|
||||
/**
|
||||
@ -164,16 +172,6 @@ class Form extends RequestHandler
|
||||
*/
|
||||
protected $buttonClickedFunc;
|
||||
|
||||
/**
|
||||
* @var string|null
|
||||
*/
|
||||
protected $message;
|
||||
|
||||
/**
|
||||
* @var string|null
|
||||
*/
|
||||
protected $messageType;
|
||||
|
||||
/**
|
||||
* Should we redirect the user back down to the
|
||||
* the form on validation errors rather then just the page
|
||||
@ -228,8 +226,6 @@ class Form extends RequestHandler
|
||||
private static $casting = array(
|
||||
'AttributesHTML' => 'HTMLFragment',
|
||||
'FormAttributes' => 'HTMLFragment',
|
||||
'MessageType' => 'Text',
|
||||
'Message' => 'HTMLFragment',
|
||||
'FormName' => 'Text',
|
||||
'Legend' => 'HTMLFragment',
|
||||
);
|
||||
@ -285,7 +281,7 @@ class Form extends RequestHandler
|
||||
$this->validator->setForm($this);
|
||||
|
||||
// Form error controls
|
||||
$this->setupFormErrors();
|
||||
$this->restoreFormState();
|
||||
|
||||
// Check if CSRF protection is enabled, either on the parent controller or from the default setting. Note that
|
||||
// method_exists() is used as some controllers (e.g. GroupTest) do not always extend from Object.
|
||||
@ -312,40 +308,151 @@ class Form extends RequestHandler
|
||||
);
|
||||
|
||||
/**
|
||||
* Set up current form errors in session to
|
||||
* the current form if appropriate.
|
||||
*
|
||||
* Load form state from session state
|
||||
* @return $this
|
||||
*/
|
||||
public function setupFormErrors()
|
||||
public function restoreFormState()
|
||||
{
|
||||
$errorInfo = Session::get("FormInfo.{$this->FormName()}");
|
||||
// Restore messages
|
||||
$result = $this->getSessionValidationResult();
|
||||
if (isset($result)) {
|
||||
$this->loadMessagesFrom($result);
|
||||
}
|
||||
|
||||
if (isset($errorInfo['errors']) && is_array($errorInfo['errors'])) {
|
||||
foreach ($errorInfo['errors'] as $error) {
|
||||
$field = $this->fields->dataFieldByName($error['fieldName']);
|
||||
// load data in from previous submission upon error
|
||||
$data = $this->getSessionData();
|
||||
if (isset($data)) {
|
||||
$this->loadDataFrom($data);
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
if (!$field) {
|
||||
$errorInfo['message'] = $error['message'];
|
||||
$errorInfo['type'] = $error['messageType'];
|
||||
/**
|
||||
* Flush persistant form state details
|
||||
*/
|
||||
public function clearFormState()
|
||||
{
|
||||
Session::clear("FormInfo.{$this->FormName()}.result");
|
||||
Session::clear("FormInfo.{$this->FormName()}.data");
|
||||
}
|
||||
|
||||
/**
|
||||
* Return any form data stored in the session
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getSessionData()
|
||||
{
|
||||
return Session::get("FormInfo.{$this->FormName()}.data");
|
||||
}
|
||||
|
||||
/**
|
||||
* Store the given form data in the session
|
||||
*
|
||||
* @param array $data
|
||||
*/
|
||||
public function setSessionData($data)
|
||||
{
|
||||
Session::set("FormInfo.{$this->FormName()}.data", $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return any ValidationResult instance stored for this object
|
||||
*
|
||||
* @return ValidationResult The ValidationResult object stored in the session
|
||||
*/
|
||||
public function getSessionValidationResult()
|
||||
{
|
||||
$resultData = Session::get("FormInfo.{$this->FormName()}.result");
|
||||
if (isset($resultData)) {
|
||||
return unserialize($resultData);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the ValidationResult in the session to be used with the next view of this form.
|
||||
* @param ValidationResult $result The result to save
|
||||
* @param bool $combineWithExisting If true, then this will be added to the existing result.
|
||||
*/
|
||||
public function setSessionValidationResult(ValidationResult $result, $combineWithExisting = false)
|
||||
{
|
||||
// Combine with existing result
|
||||
if ($combineWithExisting) {
|
||||
$existingResult = $this->getSessionValidationResult();
|
||||
if ($existingResult) {
|
||||
if ($result) {
|
||||
$existingResult->combineAnd($result);
|
||||
} else {
|
||||
$field->setError($error['message'], $error['messageType']);
|
||||
$result = $existingResult;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// load data in from previous submission upon error
|
||||
if (isset($errorInfo['data'])) {
|
||||
$this->loadDataFrom($errorInfo['data']);
|
||||
// Serialise
|
||||
$resultData = $result ? serialize($result) : null;
|
||||
Session::set("FormInfo.{$this->FormName()}.result", $resultData);
|
||||
}
|
||||
|
||||
public function clearMessage()
|
||||
{
|
||||
$this->setMessage(null);
|
||||
$this->clearFormState();
|
||||
}
|
||||
|
||||
/**
|
||||
* Populate this form with messages from the given ValidationResult.
|
||||
* Note: This will not clear any pre-existing messages
|
||||
*
|
||||
* @param ValidationResult $result
|
||||
* @return $this
|
||||
*/
|
||||
public function loadMessagesFrom($result)
|
||||
{
|
||||
// Set message on either a field or the parent form
|
||||
foreach ($result->getMessages() as $message) {
|
||||
$fieldName = $message['fieldName'];
|
||||
if ($fieldName) {
|
||||
$owner = $this->fields->dataFieldByName($fieldName) ?: $this;
|
||||
} else {
|
||||
$owner = $this;
|
||||
}
|
||||
$owner->setMessage($message['message'], $message['messageType'], $message['messageCast']);
|
||||
}
|
||||
|
||||
if (isset($errorInfo['message']) && isset($errorInfo['type'])) {
|
||||
$this->setMessage($errorInfo['message'], $errorInfo['type']);
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set message on a given field name. This message will not persist via redirect.
|
||||
*
|
||||
* @param string $fieldName
|
||||
* @param string $message
|
||||
* @param string $messageType
|
||||
* @param string $messageCast
|
||||
* @return $this
|
||||
*/
|
||||
public function setFieldMessage(
|
||||
$fieldName,
|
||||
$message,
|
||||
$messageType = ValidationResult::TYPE_ERROR,
|
||||
$messageCast = ValidationResult::CAST_TEXT
|
||||
) {
|
||||
$field = $this->fields->dataFieldByName($fieldName);
|
||||
if ($field) {
|
||||
$field->setMessage($message, $messageType, $messageCast);
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function castingHelper($field)
|
||||
{
|
||||
// Override casting for field message
|
||||
if (strcasecmp($field, 'Message') === 0 && ($helper = $this->getMessageCastingHelper())) {
|
||||
return $helper;
|
||||
}
|
||||
return parent::castingHelper($field);
|
||||
}
|
||||
|
||||
/**
|
||||
* set up the default classes for the form. This is done on construct so that the default classes can be removed
|
||||
* after instantiation
|
||||
@ -367,6 +474,7 @@ class Form extends RequestHandler
|
||||
* if the form is valid.
|
||||
*
|
||||
* @param HTTPRequest $request
|
||||
* @return HTTPResponse
|
||||
* @throws HTTPResponse_Exception
|
||||
*/
|
||||
public function httpSubmission($request)
|
||||
@ -393,6 +501,7 @@ class Form extends RequestHandler
|
||||
$this->loadDataFrom($vars, true, $allowedFields);
|
||||
|
||||
// Protection against CSRF attacks
|
||||
// @todo Move this to SecurityTokenField::validate()
|
||||
$token = $this->getSecurityToken();
|
||||
if (! $token->checkRequest($request)) {
|
||||
$securityID = $token->getName();
|
||||
@ -404,14 +513,16 @@ class Form extends RequestHandler
|
||||
));
|
||||
} else {
|
||||
// Clear invalid token on refresh
|
||||
$this->clearFormState();
|
||||
$data = $this->getData();
|
||||
unset($data[$securityID]);
|
||||
Session::set("FormInfo.{$this->FormName()}.data", $data);
|
||||
Session::set("FormInfo.{$this->FormName()}.errors", array());
|
||||
$this->sessionMessage(
|
||||
_t("Form.CSRF_EXPIRED_MESSAGE", "Your session has expired. Please re-submit the form."),
|
||||
"warning"
|
||||
);
|
||||
$this->setSessionData($data);
|
||||
$this->sessionError(_t(
|
||||
"Form.CSRF_EXPIRED_MESSAGE",
|
||||
"Your session has expired. Please re-submit the form."
|
||||
));
|
||||
|
||||
// Return the user
|
||||
return $this->controller->redirectBack();
|
||||
}
|
||||
}
|
||||
@ -466,38 +577,34 @@ class Form extends RequestHandler
|
||||
sprintf('Action "%s" not allowed on form (Name: "%s")', $funcName, $this->name)
|
||||
);
|
||||
}
|
||||
// TODO : Once we switch to a stricter policy regarding allowed_actions (meaning actions must be set
|
||||
// explicitly in allowed_actions in order to run)
|
||||
// Uncomment the following for checking security against running actions on form fields
|
||||
/* else {
|
||||
// Try to find a field that has the action, and allows it
|
||||
$fieldsHaveMethod = false;
|
||||
foreach ($this->Fields() as $field){
|
||||
if ($field->hasMethod($funcName) && $field->checkAccessAction($funcName)) {
|
||||
$fieldsHaveMethod = true;
|
||||
}
|
||||
}
|
||||
if (!$fieldsHaveMethod) {
|
||||
return $this->httpError(
|
||||
403,
|
||||
sprintf('Action "%s" not allowed on any fields of form (Name: "%s")', $funcName, $this->Name())
|
||||
);
|
||||
}
|
||||
}*/
|
||||
|
||||
// Validate the form
|
||||
if (!$this->validate()) {
|
||||
return $this->getValidationErrorResponse();
|
||||
}
|
||||
// Action handlers may throw ValidationExceptions.
|
||||
try {
|
||||
// Or we can use the Valiator attached to the form
|
||||
$result = $this->validationResult();
|
||||
if (!$result->isValid()) {
|
||||
return $this->getValidationErrorResponse($result);
|
||||
}
|
||||
|
||||
// First, try a handler method on the controller (has been checked for allowed_actions above already)
|
||||
if ($this->controller->hasMethod($funcName)) {
|
||||
return $this->controller->$funcName($vars, $this, $request);
|
||||
// Otherwise, try a handler method on the form object.
|
||||
} elseif ($this->hasMethod($funcName)) {
|
||||
return $this->$funcName($vars, $this, $request);
|
||||
} elseif ($field = $this->checkFieldsForAction($this->Fields(), $funcName)) {
|
||||
return $field->$funcName($vars, $this, $request);
|
||||
// First, try a handler method on the controller (has been checked for allowed_actions above already)
|
||||
if ($this->controller->hasMethod($funcName)) {
|
||||
return $this->controller->$funcName($vars, $this, $request);
|
||||
}
|
||||
|
||||
// Otherwise, try a handler method on the form object.
|
||||
if ($this->hasMethod($funcName)) {
|
||||
return $this->$funcName($vars, $this, $request);
|
||||
}
|
||||
|
||||
// Check for inline actions
|
||||
if ($field = $this->checkFieldsForAction($this->Fields(), $funcName)) {
|
||||
return $field->$funcName($vars, $this, $request);
|
||||
}
|
||||
} catch (ValidationException $e) {
|
||||
// The ValdiationResult contains all the relevant metadata
|
||||
$result = $e->getResult();
|
||||
$this->loadMessagesFrom($result);
|
||||
return $this->getValidationErrorResponse($result);
|
||||
}
|
||||
|
||||
return $this->httpError(404);
|
||||
@ -520,7 +627,7 @@ class Form extends RequestHandler
|
||||
}
|
||||
}
|
||||
|
||||
// Always allow actions on fields
|
||||
// Always allow actions on fields
|
||||
$field = $this->checkFieldsForAction($this->Fields(), $action);
|
||||
if ($field && $field->checkAccessAction($action)) {
|
||||
return true;
|
||||
@ -562,45 +669,77 @@ class Form extends RequestHandler
|
||||
* Behaviour can be influenced by setting {@link $redirectToFormOnValidationError},
|
||||
* and can be overruled by setting {@link $validationResponseCallback}.
|
||||
*
|
||||
* @return HTTPResponse|string
|
||||
* @param ValidationResult $result
|
||||
* @return HTTPResponse
|
||||
*/
|
||||
protected function getValidationErrorResponse()
|
||||
protected function getValidationErrorResponse(ValidationResult $result)
|
||||
{
|
||||
// Check for custom handling mechanism
|
||||
$callback = $this->getValidationResponseCallback();
|
||||
if ($callback && $callbackResponse = $callback()) {
|
||||
if ($callback && $callbackResponse = call_user_func($callback, $result)) {
|
||||
return $callbackResponse;
|
||||
}
|
||||
|
||||
$request = $this->getRequest();
|
||||
if ($request->isAjax()) {
|
||||
// Special case for legacy Validator.js implementation
|
||||
// (assumes eval'ed javascript collected through FormResponse)
|
||||
$acceptType = $request->getHeader('Accept');
|
||||
if (strpos($acceptType, 'application/json') !== false) {
|
||||
// Send validation errors back as JSON with a flag at the start
|
||||
$response = new HTTPResponse(Convert::array2json($this->validator->getErrors()));
|
||||
$response->addHeader('Content-Type', 'application/json');
|
||||
} else {
|
||||
$this->setupFormErrors();
|
||||
// Send the newly rendered form tag as HTML
|
||||
$response = new HTTPResponse($this->forTemplate());
|
||||
$response->addHeader('Content-Type', 'text/html');
|
||||
}
|
||||
|
||||
return $response;
|
||||
} else {
|
||||
if ($this->getRedirectToFormOnValidationError()) {
|
||||
if ($pageURL = $request->getHeader('Referer')) {
|
||||
if (Director::is_site_url($pageURL)) {
|
||||
// Remove existing pragmas
|
||||
$pageURL = preg_replace('/(#.*)/', '', $pageURL);
|
||||
$pageURL = Director::absoluteURL($pageURL, true);
|
||||
return $this->controller->redirect($pageURL . '#' . $this->FormName());
|
||||
}
|
||||
}
|
||||
}
|
||||
return $this->controller->redirectBack();
|
||||
// Check if handling via ajax
|
||||
if ($this->getRequest()->isAjax()) {
|
||||
return $this->getAjaxErrorResponse($result);
|
||||
}
|
||||
|
||||
// Prior to redirection, persist this result in session to re-display on redirect
|
||||
$this->setSessionValidationResult($result);
|
||||
$this->setSessionData($this->getData());
|
||||
|
||||
// Determine redirection method
|
||||
if ($this->getRedirectToFormOnValidationError() && ($pageURL = $this->getRedirectReferer())) {
|
||||
return $this->controller->redirect($pageURL . '#' . $this->FormName());
|
||||
}
|
||||
return $this->controller->redirectBack();
|
||||
}
|
||||
|
||||
/**
|
||||
* Build HTTP error response for ajax requests
|
||||
*
|
||||
* @internal called from {@see Form::getValidationErrorResponse}
|
||||
* @param ValidationResult $result
|
||||
* @return HTTPResponse
|
||||
*/
|
||||
protected function getAjaxErrorResponse(ValidationResult $result)
|
||||
{
|
||||
// Ajax form submissions accept json encoded errors by default
|
||||
$acceptType = $this->getRequest()->getHeader('Accept');
|
||||
if (strpos($acceptType, 'application/json') !== false) {
|
||||
// Send validation errors back as JSON with a flag at the start
|
||||
$response = new HTTPResponse(Convert::array2json($result->getMessages()));
|
||||
$response->addHeader('Content-Type', 'application/json');
|
||||
return $response;
|
||||
}
|
||||
|
||||
// Send the newly rendered form tag as HTML
|
||||
$this->loadMessagesFrom($result);
|
||||
$response = new HTTPResponse($this->forTemplate());
|
||||
$response->addHeader('Content-Type', 'text/html');
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get referrer to redirect back to and safely validates it
|
||||
*
|
||||
* @internal called from {@see Form::getValidationErrorResponse}
|
||||
* @return string|null
|
||||
*/
|
||||
protected function getRedirectReferer()
|
||||
{
|
||||
$pageURL = $this->getRequest()->getHeader('Referer');
|
||||
if (!$pageURL) {
|
||||
return null;
|
||||
}
|
||||
if (!Director::is_site_url($pageURL)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
// Remove existing pragmas
|
||||
$pageURL = preg_replace('/(#.*)/', '', $pageURL);
|
||||
return Director::absoluteURL($pageURL);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -681,23 +820,6 @@ class Form extends RequestHandler
|
||||
return $this->redirectToFormOnValidationError;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a plain text error message to a field on this form. It will be saved into the session
|
||||
* and used the next time this form is displayed.
|
||||
* @param string $fieldName
|
||||
* @param string $message
|
||||
* @param string $messageType
|
||||
* @param bool $escapeHtml
|
||||
*/
|
||||
public function addErrorMessage($fieldName, $message, $messageType, $escapeHtml = true)
|
||||
{
|
||||
Session::add_to_array("FormInfo.{$this->FormName()}.errors", array(
|
||||
'fieldName' => $fieldName,
|
||||
'message' => $escapeHtml ? Convert::raw2xml($message) : $message,
|
||||
'messageType' => $messageType,
|
||||
));
|
||||
}
|
||||
|
||||
/**
|
||||
* @param FormTransformation $trans
|
||||
*/
|
||||
@ -1013,9 +1135,9 @@ class Form extends RequestHandler
|
||||
/**
|
||||
* Set the target of this form to any value - useful for opening the form contents in a new window or refreshing
|
||||
* another frame
|
||||
*
|
||||
*
|
||||
* @param string|FormTemplateHelper
|
||||
*/
|
||||
*/
|
||||
public function setTemplateHelper($helper)
|
||||
{
|
||||
$this->templateHelper = $helper;
|
||||
@ -1342,101 +1464,36 @@ class Form extends RequestHandler
|
||||
return new Form_FieldMap($this);
|
||||
}
|
||||
|
||||
/**
|
||||
* The next functions store and modify the forms
|
||||
* message attributes. messages are stored in session under
|
||||
* $_SESSION[formname][message];
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function Message()
|
||||
{
|
||||
$this->getMessageFromSession();
|
||||
|
||||
return $this->message;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function MessageType()
|
||||
{
|
||||
$this->getMessageFromSession();
|
||||
|
||||
return $this->messageType;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
protected function getMessageFromSession()
|
||||
{
|
||||
if ($this->message || $this->messageType) {
|
||||
return $this->message;
|
||||
} else {
|
||||
$this->message = Session::get("FormInfo.{$this->FormName()}.formError.message");
|
||||
$this->messageType = Session::get("FormInfo.{$this->FormName()}.formError.type");
|
||||
|
||||
return $this->message;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set a status message for the form.
|
||||
*
|
||||
* @param string $message the text of the message
|
||||
* @param string $type Should be set to good, bad, or warning.
|
||||
* @param boolean $escapeHtml Automatically sanitize the message. Set to FALSE if the message contains HTML.
|
||||
* In that case, you might want to use {@link Convert::raw2xml()} to escape any
|
||||
* user supplied data in the message.
|
||||
* @return $this
|
||||
*/
|
||||
public function setMessage($message, $type, $escapeHtml = true)
|
||||
{
|
||||
$this->message = ($escapeHtml) ? Convert::raw2xml($message) : $message;
|
||||
$this->messageType = $type;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set a message to the session, for display next time this form is shown.
|
||||
*
|
||||
* @param string $message the text of the message
|
||||
* @param string $type Should be set to good, bad, or warning.
|
||||
* @param boolean $escapeHtml Automatically sanitize the message. Set to FALSE if the message contains HTML.
|
||||
* In that case, you might want to use {@link Convert::raw2xml()} to escape any
|
||||
* user supplied data in the message.
|
||||
* @param string|bool $cast Cast type; One of the CAST_ constant definitions.
|
||||
* Bool values will be treated as plain text flag.
|
||||
*/
|
||||
public function sessionMessage($message, $type, $escapeHtml = true)
|
||||
public function sessionMessage($message, $type = ValidationResult::TYPE_ERROR, $cast = ValidationResult::CAST_TEXT)
|
||||
{
|
||||
Session::set(
|
||||
"FormInfo.{$this->FormName()}.formError.message",
|
||||
$escapeHtml ? Convert::raw2xml($message) : $message
|
||||
);
|
||||
Session::set("FormInfo.{$this->FormName()}.formError.type", $type);
|
||||
$this->setMessage($message, $type, $cast);
|
||||
$result = $this->getSessionValidationResult() ?: ValidationResult::create();
|
||||
$result->addMessage($message, $type, null, $cast);
|
||||
$this->setSessionValidationResult($result);
|
||||
}
|
||||
|
||||
public static function messageForForm($formName, $message, $type, $escapeHtml = true)
|
||||
/**
|
||||
* Set an error to the session, for display next time this form is shown.
|
||||
*
|
||||
* @param string $message the text of the message
|
||||
* @param string $type Should be set to good, bad, or warning.
|
||||
* @param string|bool $cast Cast type; One of the CAST_ constant definitions.
|
||||
* Bool values will be treated as plain text flag.
|
||||
*/
|
||||
public function sessionError($message, $type = ValidationResult::TYPE_ERROR, $cast = ValidationResult::CAST_TEXT)
|
||||
{
|
||||
Session::set(
|
||||
"FormInfo.{$formName}.formError.message",
|
||||
$escapeHtml ? Convert::raw2xml($message) : $message
|
||||
);
|
||||
Session::set("FormInfo.{$formName}.formError.type", $type);
|
||||
}
|
||||
|
||||
public function clearMessage()
|
||||
{
|
||||
$this->message = null;
|
||||
Session::clear("FormInfo.{$this->FormName()}.errors");
|
||||
Session::clear("FormInfo.{$this->FormName()}.formError");
|
||||
Session::clear("FormInfo.{$this->FormName()}.data");
|
||||
}
|
||||
|
||||
public function resetValidation()
|
||||
{
|
||||
Session::clear("FormInfo.{$this->FormName()}.errors");
|
||||
Session::clear("FormInfo.{$this->FormName()}.data");
|
||||
$this->setMessage($message, $type, $cast);
|
||||
$result = $this->getSessionValidationResult() ?: ValidationResult::create();
|
||||
$result->addError($message, $type, null, $cast);
|
||||
$this->setSessionValidationResult($result);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1464,52 +1521,37 @@ class Form extends RequestHandler
|
||||
/**
|
||||
* Processing that occurs before a form is executed.
|
||||
*
|
||||
* This includes form validation, if it fails, we throw a ValidationException
|
||||
*
|
||||
* This includes form validation, if it fails, we redirect back
|
||||
* to the form with appropriate error messages.
|
||||
* Always return true if the current form action is exempt from validation
|
||||
*
|
||||
* Triggered through {@link httpSubmission()}.
|
||||
*
|
||||
*
|
||||
* Note that CSRF protection takes place in {@link httpSubmission()},
|
||||
* if it fails the form data will never reach this method.
|
||||
*
|
||||
* @return boolean
|
||||
* @return ValidationResult
|
||||
*/
|
||||
public function validate()
|
||||
public function validationResult()
|
||||
{
|
||||
// Opportunity to invalidate via validator
|
||||
$action = $this->buttonClicked();
|
||||
if ($action && $this->actionIsValidationExempt($action)) {
|
||||
return true;
|
||||
return ValidationResult::create();
|
||||
}
|
||||
|
||||
// Invoke validator
|
||||
if ($this->validator) {
|
||||
$errors = $this->validator->validate();
|
||||
|
||||
if ($errors) {
|
||||
// Load errors into session and post back
|
||||
$data = $this->getData();
|
||||
|
||||
// Encode validation messages as XML before saving into session state
|
||||
// As per Form::addErrorMessage()
|
||||
$errors = array_map(function ($error) {
|
||||
// Encode message as XML by default
|
||||
if ($error['message'] instanceof DBField) {
|
||||
$error['message'] = $error['message']->forTemplate();
|
||||
;
|
||||
} else {
|
||||
$error['message'] = Convert::raw2xml($error['message']);
|
||||
}
|
||||
return $error;
|
||||
}, $errors);
|
||||
|
||||
Session::set("FormInfo.{$this->FormName()}.errors", $errors);
|
||||
Session::set("FormInfo.{$this->FormName()}.data", $data);
|
||||
|
||||
return false;
|
||||
}
|
||||
$result = $this->validator->validate();
|
||||
$this->loadMessagesFrom($result);
|
||||
return $result;
|
||||
}
|
||||
|
||||
return true;
|
||||
// Successful result
|
||||
return ValidationResult::create();
|
||||
}
|
||||
|
||||
const MERGE_DEFAULT = 0;
|
||||
@ -1559,7 +1601,7 @@ class Form extends RequestHandler
|
||||
*
|
||||
* @param array $fieldList An optional list of fields to process. This can be useful when you have a
|
||||
* form that has some fields that save to one object, and some that save to another.
|
||||
* @return Form
|
||||
* @return $this
|
||||
*/
|
||||
public function loadDataFrom($data, $mergeStrategy = 0, $fieldList = null)
|
||||
{
|
||||
@ -1582,65 +1624,67 @@ class Form extends RequestHandler
|
||||
|
||||
// dont include fields without data
|
||||
$dataFields = $this->Fields()->dataFields();
|
||||
if ($dataFields) {
|
||||
foreach ($dataFields as $field) {
|
||||
$name = $field->getName();
|
||||
|
||||
// Skip fields that have been excluded
|
||||
if ($fieldList && !in_array($name, $fieldList)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// First check looks for (fieldname)_unchanged, an indicator that we shouldn't overwrite the field value
|
||||
if (is_array($data) && isset($data[$name . '_unchanged'])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Does this property exist on $data?
|
||||
$exists = false;
|
||||
// The value from $data for this field
|
||||
$val = null;
|
||||
|
||||
if (is_object($data)) {
|
||||
$exists = (
|
||||
isset($data->$name) ||
|
||||
$data->hasMethod($name) ||
|
||||
($data->hasMethod('hasField') && $data->hasField($name))
|
||||
);
|
||||
|
||||
if ($exists) {
|
||||
$val = $data->__get($name);
|
||||
}
|
||||
} elseif (is_array($data)) {
|
||||
if (array_key_exists($name, $data)) {
|
||||
$exists = true;
|
||||
$val = $data[$name];
|
||||
} // If field is in array-notation we need to access nested data
|
||||
elseif (strpos($name, '[')) {
|
||||
// First encode data using PHP's method of converting nested arrays to form data
|
||||
$flatData = urldecode(http_build_query($data));
|
||||
// Then pull the value out from that flattened string
|
||||
preg_match('/' . addcslashes($name, '[]') . '=([^&]*)/', $flatData, $matches);
|
||||
|
||||
if (isset($matches[1])) {
|
||||
$exists = true;
|
||||
$val = $matches[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// save to the field if either a value is given, or loading of blank/undefined values is forced
|
||||
if ($exists) {
|
||||
if ($val != false || ($mergeStrategy & self::MERGE_IGNORE_FALSEISH) != self::MERGE_IGNORE_FALSEISH) {
|
||||
// pass original data as well so composite fields can act on the additional information
|
||||
$field->setValue($val, $data);
|
||||
}
|
||||
} elseif (($mergeStrategy & self::MERGE_CLEAR_MISSING) == self::MERGE_CLEAR_MISSING) {
|
||||
$field->setValue($val, $data);
|
||||
}
|
||||
}
|
||||
if (!$dataFields) {
|
||||
return $this;
|
||||
}
|
||||
|
||||
/** @var FormField $field */
|
||||
foreach ($dataFields as $field) {
|
||||
$name = $field->getName();
|
||||
|
||||
// Skip fields that have been excluded
|
||||
if ($fieldList && !in_array($name, $fieldList)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// First check looks for (fieldname)_unchanged, an indicator that we shouldn't overwrite the field value
|
||||
if (is_array($data) && isset($data[$name . '_unchanged'])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Does this property exist on $data?
|
||||
$exists = false;
|
||||
// The value from $data for this field
|
||||
$val = null;
|
||||
|
||||
if (is_object($data)) {
|
||||
$exists = (
|
||||
isset($data->$name) ||
|
||||
$data->hasMethod($name) ||
|
||||
($data->hasMethod('hasField') && $data->hasField($name))
|
||||
);
|
||||
|
||||
if ($exists) {
|
||||
$val = $data->__get($name);
|
||||
}
|
||||
} elseif (is_array($data)) {
|
||||
if (array_key_exists($name, $data)) {
|
||||
$exists = true;
|
||||
$val = $data[$name];
|
||||
} // If field is in array-notation we need to access nested data
|
||||
elseif (strpos($name, '[')) {
|
||||
// First encode data using PHP's method of converting nested arrays to form data
|
||||
$flatData = urldecode(http_build_query($data));
|
||||
// Then pull the value out from that flattened string
|
||||
preg_match('/' . addcslashes($name, '[]') . '=([^&]*)/', $flatData, $matches);
|
||||
|
||||
if (isset($matches[1])) {
|
||||
$exists = true;
|
||||
$val = $matches[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// save to the field if either a value is given, or loading of blank/undefined values is forced
|
||||
if ($exists) {
|
||||
if ($val != false || ($mergeStrategy & self::MERGE_IGNORE_FALSEISH) != self::MERGE_IGNORE_FALSEISH) {
|
||||
// pass original data as well so composite fields can act on the additional information
|
||||
$field->setValue($val, $data);
|
||||
}
|
||||
} elseif (($mergeStrategy & self::MERGE_CLEAR_MISSING) == self::MERGE_CLEAR_MISSING) {
|
||||
$field->setValue($val, $data);
|
||||
}
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -1658,19 +1702,17 @@ class Form extends RequestHandler
|
||||
$lastField = null;
|
||||
if ($dataFields) {
|
||||
foreach ($dataFields as $field) {
|
||||
// Skip fields that have been excluded
|
||||
// Skip fields that have been excluded
|
||||
if ($fieldList && is_array($fieldList) && !in_array($field->getName(), $fieldList)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
$saveMethod = "save{$field->getName()}";
|
||||
|
||||
if ($field->getName() == "ClassName") {
|
||||
$lastField = $field;
|
||||
} elseif ($dataObject->hasMethod($saveMethod)) {
|
||||
$dataObject->$saveMethod( $field->dataValue());
|
||||
} elseif ($field->getName() != "ID") {
|
||||
$dataObject->$saveMethod($field->dataValue());
|
||||
} elseif ($field->getName() !== "ID") {
|
||||
$field->saveInto($dataObject);
|
||||
}
|
||||
}
|
||||
@ -1927,7 +1969,7 @@ class Form extends RequestHandler
|
||||
* be added by delimiting a string with spaces.
|
||||
*
|
||||
* @param string $class A string containing a classname or several class
|
||||
* names delimited by a single space.
|
||||
* names delimited by a single space.
|
||||
* @return $this
|
||||
*/
|
||||
public function addExtraClass($class)
|
||||
@ -1969,7 +2011,7 @@ class Form extends RequestHandler
|
||||
|
||||
if ($this->validator) {
|
||||
/** @skipUpgrade */
|
||||
$result .= '<h3>' . _t('Form.VALIDATOR', 'Validator') . '</h3>' . $this->validator->debug();
|
||||
$result .= '<h3>'._t('Form.VALIDATOR', 'Validator').'</h3>' . $this->validator->debug();
|
||||
}
|
||||
|
||||
return $result;
|
||||
|
@ -40,6 +40,7 @@ use SilverStripe\View\SSViewer;
|
||||
*/
|
||||
class FormField extends RequestHandler
|
||||
{
|
||||
use FormMessage;
|
||||
|
||||
/** @see $schemaDataType */
|
||||
const SCHEMA_DATA_TYPE_STRING = 'String';
|
||||
@ -103,16 +104,6 @@ class FormField extends RequestHandler
|
||||
*/
|
||||
protected $value;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $message;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $messageType;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
@ -274,8 +265,6 @@ class FormField extends RequestHandler
|
||||
'HolderID' => 'Text',
|
||||
'Title' => 'Text',
|
||||
'RightTitle' => 'Text',
|
||||
'MessageType' => 'Text',
|
||||
'Message' => 'HTMLFragment',
|
||||
'Description' => 'HTMLFragment',
|
||||
);
|
||||
|
||||
@ -456,32 +445,6 @@ class FormField extends RequestHandler
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the field message, used by form validation.
|
||||
*
|
||||
* Use {@link setError()} to set this property.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function Message()
|
||||
{
|
||||
return $this->message;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the field message type.
|
||||
*
|
||||
* Arbitrary value which is mostly used for CSS classes in the rendered HTML, e.g "required".
|
||||
*
|
||||
* Use {@link setError()} to set this property.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function MessageType()
|
||||
{
|
||||
return $this->messageType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the field value.
|
||||
*
|
||||
@ -613,8 +576,8 @@ class FormField extends RequestHandler
|
||||
// e.g. red borders on input tags.
|
||||
//
|
||||
// CSS class needs to be different from the one rendered through {@link FieldHolder()}.
|
||||
if ($this->Message()) {
|
||||
$classes[] .= 'holder-' . $this->MessageType();
|
||||
if ($this->getMessage()) {
|
||||
$classes[] .= 'holder-' . $this->getMessageType();
|
||||
}
|
||||
|
||||
return implode(' ', $classes);
|
||||
@ -871,22 +834,13 @@ class FormField extends RequestHandler
|
||||
return $form->getSecurityToken()->isEnabled();
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the error message to be displayed on the form field.
|
||||
*
|
||||
* Allows HTML content, so remember to use Convert::raw2xml().
|
||||
*
|
||||
* @param string $message
|
||||
* @param string $messageType
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setError($message, $messageType)
|
||||
public function castingHelper($field)
|
||||
{
|
||||
$this->message = $message;
|
||||
$this->messageType = $messageType;
|
||||
|
||||
return $this;
|
||||
// Override casting for field message
|
||||
if (strcasecmp($field, 'Message') === 0 && ($helper = $this->getMessageCastingHelper())) {
|
||||
return $helper;
|
||||
}
|
||||
return parent::castingHelper($field);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1211,12 +1165,12 @@ class FormField extends RequestHandler
|
||||
*/
|
||||
public function performReadonlyTransformation()
|
||||
{
|
||||
$readonlyClassName = $this->class . '_Readonly';
|
||||
$readonlyClassName = static::class . '_Readonly';
|
||||
|
||||
if (ClassInfo::exists($readonlyClassName)) {
|
||||
$clone = $this->castedCopy($readonlyClassName);
|
||||
} else {
|
||||
$clone = $this->castedCopy('SilverStripe\\Forms\\ReadonlyField');
|
||||
$clone = $this->castedCopy(ReadonlyField::class);
|
||||
}
|
||||
|
||||
$clone->setReadonly(true);
|
||||
@ -1606,17 +1560,10 @@ class FormField extends RequestHandler
|
||||
'name' => $this->getName(),
|
||||
'id' => $this->ID(),
|
||||
'value' => $this->Value(),
|
||||
'message' => null,
|
||||
'message' => $this->getSchemaMessage(),
|
||||
'data' => [],
|
||||
];
|
||||
|
||||
if ($message = $this->Message()) {
|
||||
$state['message'] = [
|
||||
'value' => ['html' => $message],
|
||||
'type' => $this->MessageType(),
|
||||
];
|
||||
}
|
||||
|
||||
return $state;
|
||||
}
|
||||
|
||||
|
132
src/Forms/FormMessage.php
Normal file
132
src/Forms/FormMessage.php
Normal file
@ -0,0 +1,132 @@
|
||||
<?php
|
||||
|
||||
namespace SilverStripe\Forms;
|
||||
|
||||
use InvalidArgumentException;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\View\ViewableData;
|
||||
|
||||
/**
|
||||
* Form component which contains a castable message
|
||||
*
|
||||
* @mixin ViewableData
|
||||
*/
|
||||
trait FormMessage
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $message = '';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $messageType = '';
|
||||
|
||||
/**
|
||||
* Casting for message
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $messageCast = null;
|
||||
|
||||
|
||||
/**
|
||||
* Returns the field message, used by form validation.
|
||||
*
|
||||
* Use {@link setError()} to set this property.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMessage()
|
||||
{
|
||||
return $this->message;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the field message type.
|
||||
*
|
||||
* Arbitrary value which is mostly used for CSS classes in the rendered HTML, e.g "required".
|
||||
*
|
||||
* Use {@link setError()} to set this property.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMessageType()
|
||||
{
|
||||
return $this->messageType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Casting type for this message. Will be 'text' or 'html'
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMessageCast()
|
||||
{
|
||||
return $this->messageCast;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the error message to be displayed on the form field.
|
||||
*
|
||||
* Allows HTML content, so remember to use Convert::raw2xml().
|
||||
*
|
||||
* @param string $message Message string
|
||||
* @param string $messageType Message type
|
||||
* @param string $messageCast
|
||||
* @return $this
|
||||
*/
|
||||
public function setMessage(
|
||||
$message,
|
||||
$messageType = ValidationResult::TYPE_ERROR,
|
||||
$messageCast = ValidationResult::CAST_TEXT
|
||||
) {
|
||||
if (!in_array($messageCast, [ValidationResult::CAST_TEXT, ValidationResult::CAST_HTML])) {
|
||||
throw new InvalidArgumentException("Invalid message cast type");
|
||||
}
|
||||
$this->message = $message;
|
||||
$this->messageType = $messageType;
|
||||
$this->messageCast = $messageCast;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get casting helper for message cast, or null if not known
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function getMessageCastingHelper()
|
||||
{
|
||||
switch ($this->getMessageCast()) {
|
||||
case ValidationResult::CAST_TEXT:
|
||||
return 'Text';
|
||||
case ValidationResult::CAST_HTML:
|
||||
return 'HTMLFragment';
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get form schema encoded message
|
||||
*
|
||||
* @return array|null Message in array format, or null if no message
|
||||
*/
|
||||
public function getSchemaMessage()
|
||||
{
|
||||
$message = $this->getMessage();
|
||||
if (!$message) {
|
||||
return null;
|
||||
}
|
||||
// Form schema messages treat simple strings as plain text, so nest for html messages
|
||||
if ($this->getMessageCast() === ValidationResult::CAST_HTML) {
|
||||
$message = ['html' => $message];
|
||||
}
|
||||
return [
|
||||
'value' => $message,
|
||||
'type' => $this->getMessageType(),
|
||||
];
|
||||
}
|
||||
}
|
@ -169,8 +169,7 @@ class GridFieldDeleteAction implements GridField_ColumnProvider, GridField_Actio
|
||||
if ($actionName == 'deleterecord') {
|
||||
if (!$item->canDelete()) {
|
||||
throw new ValidationException(
|
||||
_t('GridFieldAction_Delete.DeletePermissionsFailure', "No delete permissions"),
|
||||
0
|
||||
_t('GridFieldAction_Delete.DeletePermissionsFailure', "No delete permissions")
|
||||
);
|
||||
}
|
||||
|
||||
@ -178,8 +177,7 @@ class GridFieldDeleteAction implements GridField_ColumnProvider, GridField_Actio
|
||||
} else {
|
||||
if (!$item->canEdit()) {
|
||||
throw new ValidationException(
|
||||
_t('GridFieldAction_Delete.EditPermissionsFailure', "No permission to unlink record"),
|
||||
0
|
||||
_t('GridFieldAction_Delete.EditPermissionsFailure', "No permission to unlink record")
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -4,11 +4,9 @@ namespace SilverStripe\Forms\GridField;
|
||||
|
||||
use SilverStripe\Admin\LeftAndMain;
|
||||
use SilverStripe\Control\Controller;
|
||||
use SilverStripe\Control\PjaxResponseNegotiator;
|
||||
use SilverStripe\Control\RequestHandler;
|
||||
use SilverStripe\Control\HTTPRequest;
|
||||
use SilverStripe\Control\HTTPResponse;
|
||||
use SilverStripe\Control\HTTPResponse_Exception;
|
||||
use SilverStripe\Forms\FieldList;
|
||||
use SilverStripe\Forms\Form;
|
||||
use SilverStripe\Forms\FormAction;
|
||||
@ -20,6 +18,7 @@ use SilverStripe\ORM\HasManyList;
|
||||
use SilverStripe\ORM\ManyManyList;
|
||||
use SilverStripe\ORM\SS_List;
|
||||
use SilverStripe\ORM\ValidationException;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\View\ArrayData;
|
||||
use SilverStripe\View\SSViewer;
|
||||
|
||||
@ -117,7 +116,7 @@ class GridFieldDetailForm_ItemRequest extends RequestHandler
|
||||
$form->makeReadonly();
|
||||
|
||||
$data = new ArrayData(array(
|
||||
'Backlink' => $controller->Link(),
|
||||
'Backlink' => $controller->Link(),
|
||||
'ItemEditForm' => $form
|
||||
));
|
||||
$return = $data->renderWith($this->getTemplates());
|
||||
@ -399,11 +398,7 @@ class GridFieldDetailForm_ItemRequest extends RequestHandler
|
||||
}
|
||||
|
||||
// Save from form data
|
||||
try {
|
||||
$this->saveFormIntoRecord($data, $form);
|
||||
} catch (ValidationException $e) {
|
||||
return $this->generateValidationResponse($form, $e);
|
||||
}
|
||||
$this->saveFormIntoRecord($data, $form);
|
||||
|
||||
$link = '<a href="' . $this->Link('edit') . '">"'
|
||||
. htmlspecialchars($this->record->Title, ENT_QUOTES)
|
||||
@ -417,7 +412,7 @@ class GridFieldDetailForm_ItemRequest extends RequestHandler
|
||||
)
|
||||
);
|
||||
|
||||
$form->sessionMessage($message, 'good', false);
|
||||
$form->sessionMessage($message, 'good', ValidationResult::CAST_HTML);
|
||||
|
||||
// Redirect after save
|
||||
return $this->redirectAfterSave($isNewRecord);
|
||||
@ -478,62 +473,29 @@ class GridFieldDetailForm_ItemRequest extends RequestHandler
|
||||
}
|
||||
|
||||
// Save form and any extra saved data into this dataobject
|
||||
$form->saveInto($this->record);
|
||||
$this->record->write();
|
||||
$form->saveInto($this->record);
|
||||
$this->record->write();
|
||||
$extraData = $this->getExtraSavedData($this->record, $list);
|
||||
$list->add($this->record, $extraData);
|
||||
$list->add($this->record, $extraData);
|
||||
|
||||
return $this->record;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate a response object for a form validation error
|
||||
*
|
||||
* @param Form $form The source form
|
||||
* @param ValidationException $e The validation error message
|
||||
* @return HTTPResponse
|
||||
* @throws HTTPResponse_Exception
|
||||
*/
|
||||
protected function generateValidationResponse($form, $e)
|
||||
{
|
||||
$controller = $this->getToplevelController();
|
||||
|
||||
$form->sessionMessage($e->getResult()->message(), 'bad', false);
|
||||
$responseNegotiator = new PjaxResponseNegotiator(array(
|
||||
'CurrentForm' => function () use (&$form) {
|
||||
return $form->forTemplate();
|
||||
},
|
||||
'default' => function () use (&$controller) {
|
||||
return $controller->redirectBack();
|
||||
}
|
||||
));
|
||||
if ($controller->getRequest()->isAjax()) {
|
||||
$controller->getRequest()->addHeader('X-Pjax', 'CurrentForm');
|
||||
}
|
||||
return $responseNegotiator->respond($controller->getRequest());
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $data
|
||||
* @param Form $form
|
||||
* @return HTTPResponse
|
||||
* @throws ValidationException
|
||||
*/
|
||||
public function doDelete($data, $form)
|
||||
{
|
||||
$title = $this->record->Title;
|
||||
try {
|
||||
if (!$this->record->canDelete()) {
|
||||
throw new ValidationException(
|
||||
_t('GridFieldDetailForm.DeletePermissionsFailure', "No delete permissions"),
|
||||
0
|
||||
);
|
||||
}
|
||||
|
||||
$this->record->delete();
|
||||
} catch (ValidationException $e) {
|
||||
$form->sessionMessage($e->getResult()->message(), 'bad', false);
|
||||
return $this->getToplevelController()->redirectBack();
|
||||
if (!$this->record->canDelete()) {
|
||||
throw new ValidationException(
|
||||
_t('GridFieldDetailForm.DeletePermissionsFailure', "No delete permissions")
|
||||
);
|
||||
}
|
||||
$this->record->delete();
|
||||
|
||||
$message = sprintf(
|
||||
_t('GridFieldDetailForm.Deleted', 'Deleted %s %s'),
|
||||
@ -544,9 +506,9 @@ class GridFieldDetailForm_ItemRequest extends RequestHandler
|
||||
$toplevelController = $this->getToplevelController();
|
||||
if ($toplevelController && $toplevelController instanceof LeftAndMain) {
|
||||
$backForm = $toplevelController->getEditForm();
|
||||
$backForm->sessionMessage($message, 'good', false);
|
||||
$backForm->sessionMessage($message, 'good', ValidationResult::CAST_HTML);
|
||||
} else {
|
||||
$form->sessionMessage($message, 'good', false);
|
||||
$form->sessionMessage($message, 'good', ValidationResult::CAST_HTML);
|
||||
}
|
||||
|
||||
//when an item is deleted, redirect to the parent controller
|
||||
|
@ -15,8 +15,12 @@ use SilverStripe\ORM\ArrayLib;
|
||||
class RequiredFields extends Validator
|
||||
{
|
||||
|
||||
/**
|
||||
* List of required fields
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $required;
|
||||
protected $useLabels = true;
|
||||
|
||||
/**
|
||||
* Pass each field to be validated as a seperate argument to the constructor
|
||||
@ -84,56 +88,58 @@ class RequiredFields extends Validator
|
||||
$valid = ($field->validate($this) && $valid);
|
||||
}
|
||||
|
||||
if ($this->required) {
|
||||
foreach ($this->required as $fieldName) {
|
||||
if (!$fieldName) {
|
||||
continue;
|
||||
}
|
||||
if (!$this->required) {
|
||||
return $valid;
|
||||
}
|
||||
|
||||
if ($fieldName instanceof FormField) {
|
||||
$formField = $fieldName;
|
||||
$fieldName = $fieldName->getName();
|
||||
foreach ($this->required as $fieldName) {
|
||||
if (!$fieldName) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($fieldName instanceof FormField) {
|
||||
$formField = $fieldName;
|
||||
$fieldName = $fieldName->getName();
|
||||
} else {
|
||||
$formField = $fields->dataFieldByName($fieldName);
|
||||
}
|
||||
|
||||
// submitted data for file upload fields come back as an array
|
||||
$value = isset($data[$fieldName]) ? $data[$fieldName] : null;
|
||||
|
||||
if (is_array($value)) {
|
||||
if ($formField instanceof FileField && isset($value['error']) && $value['error']) {
|
||||
$error = true;
|
||||
} else {
|
||||
$formField = $fields->dataFieldByName($fieldName);
|
||||
$error = (count($value)) ? false : true;
|
||||
}
|
||||
} else {
|
||||
// assume a string or integer
|
||||
$error = (strlen($value)) ? false : true;
|
||||
}
|
||||
|
||||
// submitted data for file upload fields come back as an array
|
||||
$value = isset($data[$fieldName]) ? $data[$fieldName] : null;
|
||||
|
||||
if (is_array($value)) {
|
||||
if ($formField instanceof FileField && isset($value['error']) && $value['error']) {
|
||||
$error = true;
|
||||
} else {
|
||||
$error = (count($value)) ? false : true;
|
||||
}
|
||||
} else {
|
||||
// assume a string or integer
|
||||
$error = (strlen($value)) ? false : true;
|
||||
}
|
||||
|
||||
if ($formField && $error) {
|
||||
$errorMessage = _t(
|
||||
'Form.FIELDISREQUIRED',
|
||||
'{name} is required',
|
||||
array(
|
||||
'name' => strip_tags(
|
||||
'"' . ($formField->Title() ? $formField->Title() : $fieldName) . '"'
|
||||
)
|
||||
if ($formField && $error) {
|
||||
$errorMessage = _t(
|
||||
'Form.FIELDISREQUIRED',
|
||||
'{name} is required',
|
||||
array(
|
||||
'name' => strip_tags(
|
||||
'"' . ($formField->Title() ? $formField->Title() : $fieldName) . '"'
|
||||
)
|
||||
);
|
||||
)
|
||||
);
|
||||
|
||||
if ($msg = $formField->getCustomValidationMessage()) {
|
||||
$errorMessage = $msg;
|
||||
}
|
||||
|
||||
$this->validationError(
|
||||
$fieldName,
|
||||
$errorMessage,
|
||||
"required"
|
||||
);
|
||||
|
||||
$valid = false;
|
||||
if ($msg = $formField->getCustomValidationMessage()) {
|
||||
$errorMessage = $msg;
|
||||
}
|
||||
|
||||
$this->validationError(
|
||||
$fieldName,
|
||||
$errorMessage,
|
||||
"required"
|
||||
);
|
||||
|
||||
$valid = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2,10 +2,12 @@
|
||||
|
||||
namespace SilverStripe\Forms\Schema;
|
||||
|
||||
use SilverStripe\Control\Session;
|
||||
use InvalidArgumentException;
|
||||
use SilverStripe\Control\HTTPRequest;
|
||||
use SilverStripe\Forms\CompositeField;
|
||||
use SilverStripe\Forms\Form;
|
||||
use SilverStripe\Forms\FormField;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
|
||||
/**
|
||||
* Represents a {@link Form} as structured data which allows a frontend library to render it.
|
||||
@ -14,6 +16,69 @@ use SilverStripe\Forms\FormField;
|
||||
*/
|
||||
class FormSchema
|
||||
{
|
||||
/**
|
||||
* Request the schema part
|
||||
*/
|
||||
const PART_SCHEMA = 'schema';
|
||||
|
||||
/**
|
||||
* Request the state part
|
||||
*/
|
||||
const PART_STATE = 'state';
|
||||
|
||||
/**
|
||||
* Request the errors from a {@see ValidationResult}
|
||||
*/
|
||||
const PART_ERRORS = 'errors';
|
||||
|
||||
/**
|
||||
* Request errors if invalid, or state if valid
|
||||
*/
|
||||
const PART_AUTO = 'auto';
|
||||
|
||||
/**
|
||||
* Returns a representation of the provided {@link Form} as structured data,
|
||||
* based on the request data.
|
||||
*
|
||||
* @param array|string $schemaParts Array or list of requested parts.
|
||||
* @param string $schemaID ID for this schema. Required.
|
||||
* @param Form $form Required for 'state' or 'schema' response
|
||||
* @param ValidationResult $result Required for 'error' response
|
||||
* @return array
|
||||
*/
|
||||
public function getMultipartSchema($schemaParts, $schemaID, Form $form = null, ValidationResult $result = null)
|
||||
{
|
||||
if (!is_array($schemaParts)) {
|
||||
$schemaParts = preg_split('#\s*,\s*#', $schemaParts) ?: [];
|
||||
}
|
||||
$wantSchema = in_array('schema', $schemaParts);
|
||||
$wantState = in_array('state', $schemaParts);
|
||||
$wantErrors = in_array('errors', $schemaParts);
|
||||
$auto = in_array('auto', $schemaParts);
|
||||
|
||||
// Require ID
|
||||
if (empty($schemaID)) {
|
||||
throw new InvalidArgumentException("schemaID is required");
|
||||
}
|
||||
$return = ['id' => $schemaID];
|
||||
|
||||
// Default to schema if not set
|
||||
if ($form && ($wantSchema || empty($schemaParts))) {
|
||||
$return['schema'] = $this->getSchema($form);
|
||||
}
|
||||
|
||||
// Return 'state' if requested, or if there are errors and 'auto'
|
||||
if ($form && ($wantState || ($auto && !$result))) {
|
||||
$return['state'] = $this->getState($form);
|
||||
}
|
||||
|
||||
// Return errors if 'errors' or 'auto'
|
||||
if ($result && ($wantErrors || $auto)) {
|
||||
$return['errors'] = $this->getErrors($result);
|
||||
}
|
||||
|
||||
return $return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the schema for this form as a nested array.
|
||||
@ -55,18 +120,9 @@ class FormSchema
|
||||
*/
|
||||
public function getState(Form $form)
|
||||
{
|
||||
// Ensure that session errors are populated within form field messages
|
||||
$form->setupFormErrors();
|
||||
|
||||
// @todo - Replace with ValidationResult handling
|
||||
// Currently tri-state; null (unsubmitted), true (submitted-valid), false (submitted-invalid)
|
||||
$errors = Session::get("FormInfo.{$form->FormName()}.errors");
|
||||
$valid = isset($errors) ? empty($errors) : null;
|
||||
|
||||
$state = [
|
||||
'id' => $form->FormName(),
|
||||
'fields' => [],
|
||||
'valid' => $valid,
|
||||
'messages' => [],
|
||||
];
|
||||
|
||||
@ -76,17 +132,46 @@ class FormSchema
|
||||
$this->getFieldStates($form->Actions())
|
||||
);
|
||||
|
||||
if ($message = $form->Message()) {
|
||||
$state['messages'][] = [
|
||||
// TODO Make form / field messages not always stored as html
|
||||
'value' => ['html' => $message],
|
||||
'type' => $form->MessageType(),
|
||||
];
|
||||
if ($message = $form->getSchemaMessage()) {
|
||||
$state['messages'][] = $message;
|
||||
}
|
||||
|
||||
return $state;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param ValidationResult $result
|
||||
* @return array List of errors
|
||||
*/
|
||||
public function getErrors(ValidationResult $result)
|
||||
{
|
||||
$messages = [];
|
||||
foreach ($result->getMessages() as $message) {
|
||||
$messages[] = $this->getSchemaForMessage($message);
|
||||
}
|
||||
return $messages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return form schema for encoded validation message
|
||||
*
|
||||
* @param array $message Internal ValidationResult format for this message
|
||||
* @return array Form schema format for this message
|
||||
*/
|
||||
protected function getSchemaForMessage($message)
|
||||
{
|
||||
// Form schema messages treat simple strings as plain text, so nest for html messages
|
||||
$value = $message['message'];
|
||||
if ($message['messageCast'] === ValidationResult::CAST_HTML) {
|
||||
$value = ['html' => $message];
|
||||
}
|
||||
return [
|
||||
'value' => $value,
|
||||
'type' => $message['messageType'],
|
||||
'field' => empty($message['fieldName']) ? null : $message['fieldName'],
|
||||
];
|
||||
}
|
||||
|
||||
protected function getFieldStates($fields)
|
||||
{
|
||||
$states = [];
|
||||
|
@ -3,6 +3,7 @@
|
||||
namespace SilverStripe\Forms;
|
||||
|
||||
use SilverStripe\Core\Object;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
|
||||
/**
|
||||
* This validation class handles all form and custom form validation through the use of Required
|
||||
@ -12,40 +13,42 @@ use SilverStripe\Core\Object;
|
||||
abstract class Validator extends Object
|
||||
{
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
$this->resetResult();
|
||||
}
|
||||
|
||||
/**
|
||||
* @var Form $form
|
||||
*/
|
||||
protected $form;
|
||||
|
||||
/**
|
||||
* @var array $errors
|
||||
* @var ValidationResult $result
|
||||
*/
|
||||
protected $errors;
|
||||
protected $result;
|
||||
|
||||
/**
|
||||
* @param Form $form
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setForm($form)
|
||||
{
|
||||
$this->form = $form;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns any errors there may be.
|
||||
*
|
||||
* @return null|array
|
||||
* @return ValidationResult
|
||||
*/
|
||||
public function validate()
|
||||
{
|
||||
$this->errors = null;
|
||||
|
||||
$this->resetResult();
|
||||
$this->php($this->form->getData());
|
||||
|
||||
return $this->errors;
|
||||
return $this->result;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -55,17 +58,22 @@ abstract class Validator extends Object
|
||||
*
|
||||
* See {@link getErrors()} for details.
|
||||
*
|
||||
* @param string $fieldName
|
||||
* @param string $errorMessage
|
||||
* @param string $errorMessageType
|
||||
* @param string $fieldName Field name for this error
|
||||
* @param string $message The message string
|
||||
* @param string $messageType The type of message: e.g. "bad", "warning", "good", or "required". Passed as a CSS
|
||||
* class to the form, so other values can be used if desired.
|
||||
* @param string|bool $cast Cast type; One of the CAST_ constant definitions.
|
||||
* Bool values will be treated as plain text flag.
|
||||
* @return $this
|
||||
*/
|
||||
public function validationError($fieldName, $errorMessage, $errorMessageType = '')
|
||||
{
|
||||
$this->errors[] = array(
|
||||
'fieldName' => $fieldName,
|
||||
'message' => $errorMessage,
|
||||
'messageType' => $errorMessageType,
|
||||
);
|
||||
public function validationError(
|
||||
$fieldName,
|
||||
$message,
|
||||
$messageType = ValidationResult::TYPE_ERROR,
|
||||
$cast = ValidationResult::CAST_TEXT
|
||||
) {
|
||||
$this->result->addFieldError($fieldName, $message, $messageType, null, $cast);
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -77,6 +85,7 @@ abstract class Validator extends Object
|
||||
* 'fieldName' => '[form field name]',
|
||||
* 'message' => '[validation error message]',
|
||||
* 'messageType' => '[bad|message|validation|required]',
|
||||
* 'messageCast' => '[text|html]'
|
||||
* )
|
||||
* </code>
|
||||
*
|
||||
@ -84,32 +93,20 @@ abstract class Validator extends Object
|
||||
*/
|
||||
public function getErrors()
|
||||
{
|
||||
return $this->errors;
|
||||
if ($this->result) {
|
||||
return $this->result->getMessages();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $fieldName
|
||||
* @param array $data
|
||||
* Get last validation result
|
||||
*
|
||||
* @return ValidationResult
|
||||
*/
|
||||
public function requireField($fieldName, $data)
|
||||
public function getResult()
|
||||
{
|
||||
if (is_array($data[$fieldName]) && count($data[$fieldName])) {
|
||||
foreach ($data[$fieldName] as $componentKey => $componentValue) {
|
||||
if (!strlen($componentValue)) {
|
||||
$this->validationError(
|
||||
$fieldName,
|
||||
sprintf('%s %s is required', $fieldName, $componentKey),
|
||||
'required'
|
||||
);
|
||||
}
|
||||
}
|
||||
} elseif (!strlen($data[$fieldName])) {
|
||||
$this->validationError(
|
||||
$fieldName,
|
||||
sprintf('%s is required', $fieldName),
|
||||
'required'
|
||||
);
|
||||
}
|
||||
return $this->result;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -131,4 +128,15 @@ abstract class Validator extends Object
|
||||
* @return mixed
|
||||
*/
|
||||
abstract public function php($data);
|
||||
|
||||
/**
|
||||
* Clear current result
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
protected function resetResult()
|
||||
{
|
||||
$this->result = ValidationResult::create();
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
@ -459,7 +459,7 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity
|
||||
}
|
||||
if ($sourceObject->manyMany()) {
|
||||
foreach ($sourceObject->manyMany() as $name => $type) {
|
||||
//many_many include belongs_many_many
|
||||
//many_many include belongs_many_many
|
||||
$this->duplicateRelations($sourceObject, $destinationObject, $name);
|
||||
}
|
||||
}
|
||||
@ -1139,11 +1139,11 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity
|
||||
|
||||
if ($defaults) {
|
||||
foreach ($defaults as $fieldName => $fieldValue) {
|
||||
// SRM 2007-03-06: Stricter check
|
||||
// SRM 2007-03-06: Stricter check
|
||||
if (!isset($this->$fieldName) || $this->$fieldName === null) {
|
||||
$this->$fieldName = $fieldValue;
|
||||
}
|
||||
// Set many-many defaults with an array of ids
|
||||
// Set many-many defaults with an array of ids
|
||||
if (is_array($fieldValue) && $this->getSchema()->manyManyComponent(static::class, $fieldName)) {
|
||||
/** @var ManyManyList $manyManyJoin */
|
||||
$manyManyJoin = $this->$fieldName();
|
||||
@ -1170,19 +1170,14 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity
|
||||
if ($this->ObsoleteClassName) {
|
||||
return new ValidationException(
|
||||
"Object is of class '{$this->ObsoleteClassName}' which doesn't exist - ".
|
||||
"you need to change the ClassName before you can write it",
|
||||
E_USER_WARNING
|
||||
"you need to change the ClassName before you can write it"
|
||||
);
|
||||
}
|
||||
|
||||
if ($this->config()->get('validation_enabled')) {
|
||||
$result = $this->validate();
|
||||
if (!$result->valid()) {
|
||||
return new ValidationException(
|
||||
$result,
|
||||
$result->message(),
|
||||
E_USER_WARNING
|
||||
);
|
||||
if (!$result->isValid()) {
|
||||
return new ValidationException($result);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
@ -2356,7 +2351,7 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity
|
||||
'before' => array_key_exists($name, $this->original) ? $this->original[$name] : null,
|
||||
'after' => array_key_exists($name, $this->record) ? $this->record[$name] : null,
|
||||
'level' => $level
|
||||
);
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@ -3382,7 +3377,7 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity
|
||||
}
|
||||
$types = array(
|
||||
'db' => (array)Config::inst()->get($ancestorClass, 'db', Config::UNINHERITED)
|
||||
);
|
||||
);
|
||||
if ($includerelations) {
|
||||
$types['has_one'] = (array)Config::inst()->get($ancestorClass, 'has_one', Config::UNINHERITED);
|
||||
$types['has_many'] = (array)Config::inst()->get($ancestorClass, 'has_many', Config::UNINHERITED);
|
||||
|
@ -112,13 +112,14 @@ class Hierarchy extends DataExtension
|
||||
while ($node) {
|
||||
if ($node->ParentID==$this->owner->ID) {
|
||||
// Hierarchy is looping.
|
||||
$validationResult->error(
|
||||
$validationResult->addError(
|
||||
_t(
|
||||
'Hierarchy.InfiniteLoopNotAllowed',
|
||||
'Infinite loop found within the "{type}" hierarchy. Please change the parent to resolve this',
|
||||
'First argument is the class that makes up the hierarchy.',
|
||||
array('type' => $this->owner->class)
|
||||
),
|
||||
'bad',
|
||||
'INFINITE_LOOP'
|
||||
);
|
||||
break;
|
||||
|
@ -3,6 +3,8 @@
|
||||
namespace SilverStripe\ORM;
|
||||
|
||||
use Exception;
|
||||
use InvalidArgumentException;
|
||||
use SilverStripe\Core\Injector\Injectable;
|
||||
|
||||
/**
|
||||
* Exception thrown by {@link DataObject}::write if validation fails. By throwing an
|
||||
@ -11,6 +13,7 @@ use Exception;
|
||||
*/
|
||||
class ValidationException extends Exception
|
||||
{
|
||||
use Injectable;
|
||||
|
||||
/**
|
||||
* The contained ValidationResult related to this error
|
||||
@ -23,32 +26,40 @@ class ValidationException extends Exception
|
||||
* Construct a new ValidationException with an optional ValidationResult object
|
||||
*
|
||||
* @param ValidationResult|string $result The ValidationResult containing the
|
||||
* failed result. Can be substituted with an error message instead if no
|
||||
* ValidationResult exists.
|
||||
* @param string|integer $message The error message. If $result was given the
|
||||
* message string rather than a ValidationResult object then this will have
|
||||
* the error code number.
|
||||
* @param integer $code The error code number, if not given in the second parameter
|
||||
* failed result, or error message to build error from
|
||||
* @param integer $code The error code number
|
||||
*/
|
||||
public function __construct($result = null, $message = null, $code = 0)
|
||||
public function __construct($result = null, $code = 0)
|
||||
{
|
||||
|
||||
// Check arguments
|
||||
if (!($result instanceof ValidationResult)) {
|
||||
// Shift parameters if no ValidationResult is given
|
||||
$code = $message;
|
||||
$message = $result;
|
||||
|
||||
// Infer ValidationResult from parameters
|
||||
$result = new ValidationResult(false, $message);
|
||||
} elseif (empty($message)) {
|
||||
// Infer message if not given
|
||||
$message = $result->message();
|
||||
// Catch legacy behaviour where second argument was not code
|
||||
if ($code && !is_numeric($code)) {
|
||||
throw new InvalidArgumentException("Code must be numeric");
|
||||
}
|
||||
|
||||
// Construct
|
||||
$this->result = $result;
|
||||
parent::__construct($message, $code);
|
||||
// Set default message and result
|
||||
$exceptionMessage = _t("ValidationException.DEFAULT_ERROR", "Validation error");
|
||||
if (!$result) {
|
||||
$result = $exceptionMessage;
|
||||
}
|
||||
|
||||
// Check result type
|
||||
if ($result instanceof ValidationResult) {
|
||||
$this->result = $result;
|
||||
// Pick first message
|
||||
foreach ($result->getMessages() as $message) {
|
||||
$exceptionMessage = $message['message'];
|
||||
break;
|
||||
}
|
||||
} elseif (is_string($result)) {
|
||||
$this->result = ValidationResult::create()->addError($result);
|
||||
$exceptionMessage = $result;
|
||||
} else {
|
||||
throw new InvalidArgumentException(
|
||||
"ValidationExceptions must be passed a ValdiationResult, a string, or nothing at all"
|
||||
);
|
||||
}
|
||||
|
||||
parent::__construct($exceptionMessage, $code);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2,60 +2,179 @@
|
||||
|
||||
namespace SilverStripe\ORM;
|
||||
|
||||
use SilverStripe\Core\Object;
|
||||
use InvalidArgumentException;
|
||||
use Serializable;
|
||||
use SilverStripe\Core\Convert;
|
||||
use SilverStripe\Core\Injector\Injectable;
|
||||
use SilverStripe\Dev\Deprecation;
|
||||
|
||||
/**
|
||||
* A class that combined as a boolean result with an optional list of error messages.
|
||||
* This is used for returning validation results from validators
|
||||
*
|
||||
* Each message can have a code or field which will uniquely identify that message. However,
|
||||
* messages can be stored without a field or message as an "overall" message.
|
||||
*/
|
||||
class ValidationResult extends Object
|
||||
class ValidationResult implements Serializable
|
||||
{
|
||||
/**
|
||||
* @var bool - is the result valid or not
|
||||
*/
|
||||
protected $isValid;
|
||||
|
||||
use Injectable;
|
||||
|
||||
/**
|
||||
* @var array of errors
|
||||
* Standard "error" type
|
||||
*/
|
||||
protected $errorList = array();
|
||||
const TYPE_ERROR = 'error';
|
||||
|
||||
/**
|
||||
* Standard "good" message type
|
||||
*/
|
||||
const TYPE_GOOD = 'good';
|
||||
|
||||
/**
|
||||
* Non-error message type.
|
||||
*/
|
||||
const TYPE_INFO = 'info';
|
||||
|
||||
/**
|
||||
* Warning message type
|
||||
*/
|
||||
const TYPE_WARNING = 'warning';
|
||||
|
||||
/**
|
||||
* Message type is html
|
||||
*/
|
||||
const CAST_HTML = 'html';
|
||||
|
||||
/**
|
||||
* Message type is plain text
|
||||
*/
|
||||
const CAST_TEXT = 'text';
|
||||
|
||||
/**
|
||||
* Is the result valid or not.
|
||||
* Note that there can be non-error messages in the list.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $isValid = true;
|
||||
|
||||
/**
|
||||
* List of messages
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $messages = array();
|
||||
|
||||
/**
|
||||
* Create a new ValidationResult.
|
||||
* By default, it is a successful result. Call $this->error() to record errors.
|
||||
* @param bool $valid
|
||||
* @param string|null $message
|
||||
*/
|
||||
public function __construct($valid = true, $message = null)
|
||||
public function __construct()
|
||||
{
|
||||
$this->isValid = $valid;
|
||||
if ($message) {
|
||||
$this->errorList[] = $message;
|
||||
if (func_num_args() > 0) {
|
||||
Deprecation::notice('3.2', '$valid parameter is deprecated please addError to mark the result as invalid', false);
|
||||
$this->isValid = func_get_arg(0);
|
||||
}
|
||||
if (func_num_args() > 1) {
|
||||
Deprecation::notice('3.2', '$message parameter is deprecated please use addMessage or addError instead', false);
|
||||
$this->addError(func_get_arg(1));
|
||||
}
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Record an error against this validation result,
|
||||
* @param string $message The validation error message
|
||||
* @param string $code An optional error code string, that can be accessed with {@link $this->codeList()}.
|
||||
*
|
||||
* @param string $message The message string.
|
||||
* @param string $messageType Passed as a CSS class to the form, so other values can be used if desired.
|
||||
* Standard types are defined by the TYPE_ constant definitions.
|
||||
* @param string $code A codename for this error. Only one message per codename will be added.
|
||||
* This can be usedful for ensuring no duplicate messages
|
||||
* @param string|bool $cast Cast type; One of the CAST_ constant definitions.
|
||||
* Bool values will be treated as plain text flag.
|
||||
* @return $this
|
||||
*/
|
||||
public function error($message, $code = null)
|
||||
public function addError($message, $messageType = self::TYPE_ERROR, $code = null, $cast = self::CAST_TEXT)
|
||||
{
|
||||
return $this->addFieldError(null, $message, $messageType, $code, $cast);
|
||||
}
|
||||
|
||||
/**
|
||||
* Record an error against this validation result,
|
||||
*
|
||||
* @param string $fieldName The field to link the message to. If omitted; a form-wide message is assumed.
|
||||
* @param string $message The message string.
|
||||
* @param string $messageType The type of message: e.g. "bad", "warning", "good", or "required". Passed as a CSS
|
||||
* class to the form, so other values can be used if desired.
|
||||
* @param string $code A codename for this error. Only one message per codename will be added.
|
||||
* This can be usedful for ensuring no duplicate messages
|
||||
* @param string|bool $cast Cast type; One of the CAST_ constant definitions.
|
||||
* Bool values will be treated as plain text flag.
|
||||
* @return $this
|
||||
*/
|
||||
public function addFieldError(
|
||||
$fieldName,
|
||||
$message,
|
||||
$messageType = self::TYPE_ERROR,
|
||||
$code = null,
|
||||
$cast = self::CAST_TEXT
|
||||
) {
|
||||
$this->isValid = false;
|
||||
return $this->addFieldMessage($fieldName, $message, $messageType, $code, $cast);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a message to this ValidationResult without necessarily marking it as an error
|
||||
*
|
||||
* @param string $message The message string.
|
||||
* @param string $messageType The type of message: e.g. "bad", "warning", "good", or "required". Passed as a CSS
|
||||
* class to the form, so other values can be used if desired.
|
||||
* @param string $code A codename for this error. Only one message per codename will be added.
|
||||
* This can be usedful for ensuring no duplicate messages
|
||||
* @param string|bool $cast Cast type; One of the CAST_ constant definitions.
|
||||
* Bool values will be treated as plain text flag.
|
||||
* @return $this
|
||||
*/
|
||||
public function addMessage($message, $messageType = self::TYPE_ERROR, $code = null, $cast = self::CAST_TEXT)
|
||||
{
|
||||
return $this->addFieldMessage(null, $message, $messageType, $code, $cast);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a message to this ValidationResult without necessarily marking it as an error
|
||||
*
|
||||
* @param string $fieldName The field to link the message to. If omitted; a form-wide message is assumed.
|
||||
* @param string $message The message string.
|
||||
* @param string $messageType The type of message: e.g. "bad", "warning", "good", or "required". Passed as a CSS
|
||||
* class to the form, so other values can be used if desired.
|
||||
* @param string $code A codename for this error. Only one message per codename will be added.
|
||||
* This can be usedful for ensuring no duplicate messages
|
||||
* @param string|bool $cast Cast type; One of the CAST_ constant definitions.
|
||||
* Bool values will be treated as plain text flag.
|
||||
* @return $this
|
||||
*/
|
||||
public function addFieldMessage(
|
||||
$fieldName,
|
||||
$message,
|
||||
$messageType = self::TYPE_ERROR,
|
||||
$code = null,
|
||||
$cast = self::CAST_TEXT
|
||||
) {
|
||||
if ($code && is_numeric($code)) {
|
||||
throw new InvalidArgumentException("Don't use a numeric code '$code'. Use a string.");
|
||||
}
|
||||
if (is_bool($cast)) {
|
||||
$cast = $cast ? self::CAST_TEXT : self::CAST_HTML;
|
||||
}
|
||||
$metadata = array(
|
||||
'message' => $message,
|
||||
'fieldName' => $fieldName,
|
||||
'messageType' => $messageType,
|
||||
'messageCast' => $cast,
|
||||
);
|
||||
|
||||
if ($code) {
|
||||
if (!is_numeric($code)) {
|
||||
$this->errorList[$code] = $message;
|
||||
} else {
|
||||
user_error("ValidationResult::error() - Don't use a numeric code '$code'. Use a string."
|
||||
. "I'm going to ignore it.", E_USER_WARNING);
|
||||
$this->errorList[$code] = $message;
|
||||
}
|
||||
$this->messages[$code] = $metadata;
|
||||
} else {
|
||||
$this->errorList[] = $message;
|
||||
$this->messages[] = $metadata;
|
||||
}
|
||||
|
||||
return $this;
|
||||
@ -65,51 +184,19 @@ class ValidationResult extends Object
|
||||
* Returns true if the result is valid.
|
||||
* @return boolean
|
||||
*/
|
||||
public function valid()
|
||||
public function isValid()
|
||||
{
|
||||
return $this->isValid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get an array of errors
|
||||
* @return array
|
||||
* Return the full error meta-data, suitable for combining with another ValidationResult.
|
||||
*
|
||||
* @return array Array of messages, where each item is an array of data for that message.
|
||||
*/
|
||||
public function messageList()
|
||||
public function getMessages()
|
||||
{
|
||||
return $this->errorList;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get an array of error codes
|
||||
* @return array
|
||||
*/
|
||||
public function codeList()
|
||||
{
|
||||
$codeList = array();
|
||||
foreach ($this->errorList as $k => $v) {
|
||||
if (!is_numeric($k)) {
|
||||
$codeList[] = $k;
|
||||
}
|
||||
}
|
||||
return $codeList;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the error message as a string.
|
||||
* @return string
|
||||
*/
|
||||
public function message()
|
||||
{
|
||||
return implode("; ", $this->errorList);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a starred list of all messages
|
||||
* @return string
|
||||
*/
|
||||
public function starredList()
|
||||
{
|
||||
return " * " . implode("\n * ", $this->errorList);
|
||||
return $this->messages;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -122,9 +209,28 @@ class ValidationResult extends Object
|
||||
*/
|
||||
public function combineAnd(ValidationResult $other)
|
||||
{
|
||||
$this->isValid = $this->isValid && $other->valid();
|
||||
$this->errorList = array_merge($this->errorList, $other->messageList());
|
||||
|
||||
$this->isValid = $this->isValid && $other->isValid();
|
||||
$this->messages = array_merge($this->messages, $other->getMessages());
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* String representation of object
|
||||
*
|
||||
* @return string the string representation of the object or null
|
||||
*/
|
||||
public function serialize()
|
||||
{
|
||||
return json_encode([$this->messages, $this->isValid]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs the object
|
||||
*
|
||||
* @param string $serialized
|
||||
*/
|
||||
public function unserialize($serialized)
|
||||
{
|
||||
list($this->messages, $this->isValid) = json_decode($serialized, true);
|
||||
}
|
||||
}
|
||||
|
@ -8,7 +8,7 @@ use SilverStripe\Forms\Form;
|
||||
use SilverStripe\Forms\FormAction;
|
||||
use SilverStripe\Forms\GridField\GridFieldDetailForm_ItemRequest;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\ORM\ValidationException;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
|
||||
/**
|
||||
* Provides versioned dataobject support to {@see GridFieldDetailForm_ItemRequest}
|
||||
@ -25,7 +25,7 @@ class VersionedGridFieldItemRequest extends GridFieldDetailForm_ItemRequest
|
||||
// Check if record is versionable
|
||||
/** @var Versioned|DataObject $record */
|
||||
$record = $this->getRecord();
|
||||
if (!$record || !$record->has_extension('SilverStripe\ORM\Versioning\Versioned')) {
|
||||
if (!$record || !$record->has_extension(Versioned::class)) {
|
||||
return $actions;
|
||||
}
|
||||
|
||||
@ -100,12 +100,7 @@ class VersionedGridFieldItemRequest extends GridFieldDetailForm_ItemRequest
|
||||
|
||||
// Record name before it's deleted
|
||||
$title = $record->Title;
|
||||
|
||||
try {
|
||||
$record->doArchive();
|
||||
} catch (ValidationException $e) {
|
||||
return $this->generateValidationResponse($form, $e);
|
||||
}
|
||||
|
||||
$message = sprintf(
|
||||
_t('VersionedGridFieldItemRequest.Archived', 'Archived %s %s'),
|
||||
@ -139,15 +134,9 @@ class VersionedGridFieldItemRequest extends GridFieldDetailForm_ItemRequest
|
||||
return $this->httpError(403);
|
||||
}
|
||||
|
||||
// Save from form data
|
||||
try {
|
||||
// Initial save and reload
|
||||
$record = $this->saveFormIntoRecord($data, $form);
|
||||
$record->publishRecursive();
|
||||
} catch (ValidationException $e) {
|
||||
return $this->generateValidationResponse($form, $e);
|
||||
}
|
||||
|
||||
$editURL = $this->Link('edit');
|
||||
$xmlTitle = Convert::raw2xml($record->Title);
|
||||
$link = "<a href=\"{$editURL}\">{$xmlTitle}</a>";
|
||||
@ -181,12 +170,7 @@ class VersionedGridFieldItemRequest extends GridFieldDetailForm_ItemRequest
|
||||
|
||||
// Record name before it's deleted
|
||||
$title = $record->Title;
|
||||
|
||||
try {
|
||||
$record->doUnpublish();
|
||||
} catch (ValidationException $e) {
|
||||
return $this->generateValidationResponse($form, $e);
|
||||
}
|
||||
|
||||
$message = sprintf(
|
||||
_t('VersionedGridFieldItemRequest.Unpublished', 'Unpublished %s %s'),
|
||||
@ -205,11 +189,12 @@ class VersionedGridFieldItemRequest extends GridFieldDetailForm_ItemRequest
|
||||
*/
|
||||
protected function setFormMessage($form, $message)
|
||||
{
|
||||
$form->sessionMessage($message, 'good', false);
|
||||
$form->sessionMessage($message, 'good', ValidationResult::CAST_HTML);
|
||||
$controller = $this->getToplevelController();
|
||||
if ($controller->hasMethod('getEditForm')) {
|
||||
/** @var Form $backForm */
|
||||
$backForm = $controller->getEditForm();
|
||||
$backForm->sessionMessage($message, 'good', false);
|
||||
$backForm->sessionMessage($message, 'good', ValidationResult::CAST_HTML);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -124,12 +124,13 @@ class CMSMemberLoginForm extends LoginForm
|
||||
/**
|
||||
* Redirect the user to the change password form.
|
||||
*
|
||||
* @skipUpgrade
|
||||
* @return HTTPResponse
|
||||
*/
|
||||
protected function redirectToChangePassword()
|
||||
{
|
||||
// Since this form is loaded via an iframe, this redirect must be performed via javascript
|
||||
$changePasswordForm = new ChangePasswordForm($this->controller, 'SilverStripe\\Security\\ChangePasswordForm');
|
||||
$changePasswordForm = new ChangePasswordForm($this->controller, 'ChangePasswordForm');
|
||||
$changePasswordForm->sessionMessage(
|
||||
_t('Member.PASSWORDEXPIRED', 'Your password has expired. Please choose a new one.'),
|
||||
'good'
|
||||
|
@ -14,6 +14,7 @@ use SilverStripe\Forms\PasswordField;
|
||||
use SilverStripe\Forms\FormAction;
|
||||
use SilverStripe\Forms\HiddenField;
|
||||
use SilverStripe\Forms\Form;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
|
||||
/**
|
||||
* Standard Change Password Form
|
||||
@ -64,7 +65,6 @@ class ChangePasswordForm extends Form
|
||||
parent::__construct($controller, $name, $fields, $actions);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Change the password
|
||||
*
|
||||
@ -75,7 +75,7 @@ class ChangePasswordForm extends Form
|
||||
{
|
||||
if ($member = Member::currentUser()) {
|
||||
// The user was logged in, check the current password
|
||||
if (empty($data['OldPassword']) || !$member->checkPassword($data['OldPassword'])->valid()) {
|
||||
if (empty($data['OldPassword']) || !$member->checkPassword($data['OldPassword'])->isValid()) {
|
||||
$this->clearMessage();
|
||||
$this->sessionMessage(
|
||||
_t('Member.ERRORPASSWORDNOTMATCH', "Your current password does not match, please try again"),
|
||||
@ -108,60 +108,52 @@ class ChangePasswordForm extends Form
|
||||
|
||||
// redirect back to the form, instead of using redirectBack() which could send the user elsewhere.
|
||||
return $this->controller->redirect($this->controller->Link('changepassword'));
|
||||
} elseif ($data['NewPassword1'] == $data['NewPassword2']) {
|
||||
$isValid = $member->changePassword($data['NewPassword1']);
|
||||
if ($isValid->valid()) {
|
||||
// Clear locked out status
|
||||
$member->LockedOutUntil = null;
|
||||
$member->FailedLoginCount = null;
|
||||
$member->write();
|
||||
}
|
||||
|
||||
if ($member->canLogIn()->valid()) {
|
||||
$member->logIn();
|
||||
}
|
||||
|
||||
// TODO Add confirmation message to login redirect
|
||||
Session::clear('AutoLoginHash');
|
||||
|
||||
if (!empty($_REQUEST['BackURL'])
|
||||
// absolute redirection URLs may cause spoofing
|
||||
&& Director::is_site_url($_REQUEST['BackURL'])
|
||||
) {
|
||||
$url = Director::absoluteURL($_REQUEST['BackURL']);
|
||||
return $this->controller->redirect($url);
|
||||
} else {
|
||||
// Redirect to default location - the login form saying "You are logged in as..."
|
||||
$redirectURL = HTTP::setGetVar(
|
||||
'BackURL',
|
||||
Director::absoluteBaseURL(),
|
||||
$this->controller->Link('login')
|
||||
);
|
||||
return $this->controller->redirect($redirectURL);
|
||||
}
|
||||
} else {
|
||||
$this->clearMessage();
|
||||
$this->sessionMessage(
|
||||
_t(
|
||||
'Member.INVALIDNEWPASSWORD',
|
||||
"We couldn't accept that password: {password}",
|
||||
array('password' => nl2br("\n".Convert::raw2xml($isValid->starredList())))
|
||||
),
|
||||
"bad",
|
||||
false
|
||||
);
|
||||
|
||||
// redirect back to the form, instead of using redirectBack() which could send the user elsewhere.
|
||||
return $this->controller->redirect($this->controller->Link('changepassword'));
|
||||
}
|
||||
} else {
|
||||
// Fail if passwords do not match
|
||||
if ($data['NewPassword1'] !== $data['NewPassword2']) {
|
||||
$this->clearMessage();
|
||||
$this->sessionMessage(
|
||||
_t('Member.ERRORNEWPASSWORD', "You have entered your new password differently, try again"),
|
||||
"bad"
|
||||
);
|
||||
|
||||
// redirect back to the form, instead of using redirectBack() which could send the user elsewhere.
|
||||
return $this->controller->redirect($this->controller->Link('changepassword'));
|
||||
}
|
||||
|
||||
// Check if the new password is accepted
|
||||
$validationResult = $member->changePassword($data['NewPassword1']);
|
||||
if (!$validationResult->isValid()) {
|
||||
$this->setSessionValidationResult($validationResult);
|
||||
return $this->controller->redirect($this->controller->Link('changepassword'));
|
||||
}
|
||||
|
||||
// Clear locked out status
|
||||
$member->LockedOutUntil = null;
|
||||
$member->FailedLoginCount = null;
|
||||
$member->write();
|
||||
|
||||
if ($member->canLogIn()->isValid()) {
|
||||
$member->logIn();
|
||||
}
|
||||
|
||||
// TODO Add confirmation message to login redirect
|
||||
Session::clear('AutoLoginHash');
|
||||
|
||||
if (!empty($_REQUEST['BackURL'])
|
||||
// absolute redirection URLs may cause spoofing
|
||||
&& Director::is_site_url($_REQUEST['BackURL'])
|
||||
) {
|
||||
$url = Director::absoluteURL($_REQUEST['BackURL']);
|
||||
return $this->controller->redirect($url);
|
||||
} else {
|
||||
// Redirect to default location - the login form saying "You are logged in as..."
|
||||
$redirectURL = HTTP::setGetVar(
|
||||
'BackURL',
|
||||
Director::absoluteBaseURL(),
|
||||
$this->controller->Link('login')
|
||||
);
|
||||
return $this->controller->redirect($redirectURL);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -428,7 +428,7 @@ class Group extends DataObject
|
||||
->column('Code');
|
||||
$privilegedCodes = Config::inst()->get('SilverStripe\\Security\\Permission', 'privileged_permissions');
|
||||
if (array_intersect($inheritedCodes, $privilegedCodes)) {
|
||||
$result->error(sprintf(
|
||||
$result->addError(sprintf(
|
||||
_t(
|
||||
'Group.HierarchyPermsError',
|
||||
'Can\'t assign parent group "%s" with privileged permissions (requires ADMIN access)'
|
||||
|
@ -275,7 +275,7 @@ class Member extends DataObject implements TemplateGlobalProvider
|
||||
if (!Security::has_default_admin()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
// Find or create ADMIN group
|
||||
Group::singleton()->requireDefaultRecords();
|
||||
$adminGroup = Permission::get_groups_by_permission('ADMIN')->first();
|
||||
@ -310,7 +310,7 @@ class Member extends DataObject implements TemplateGlobalProvider
|
||||
/**
|
||||
* Check if the passed password matches the stored one (if the member is not locked out).
|
||||
*
|
||||
* @param string $password
|
||||
* @param string $password
|
||||
* @return ValidationResult
|
||||
*/
|
||||
public function checkPassword($password)
|
||||
@ -318,7 +318,7 @@ class Member extends DataObject implements TemplateGlobalProvider
|
||||
$result = $this->canLogIn();
|
||||
|
||||
// Short-circuit the result upon failure, no further checks needed.
|
||||
if (!$result->valid()) {
|
||||
if (!$result->isValid()) {
|
||||
return $result;
|
||||
}
|
||||
|
||||
@ -329,13 +329,13 @@ class Member extends DataObject implements TemplateGlobalProvider
|
||||
|
||||
// Check a password is set on this member
|
||||
if (empty($this->Password) && $this->exists()) {
|
||||
$result->error(_t('Member.NoPassword', 'There is no password on this member.'));
|
||||
$result->addError(_t('Member.NoPassword', 'There is no password on this member.'));
|
||||
return $result;
|
||||
}
|
||||
|
||||
$e = PasswordEncryptor::create_for_algorithm($this->PasswordEncryption);
|
||||
if (!$e->check($this->Password, $password, $this->Salt, $this)) {
|
||||
$result->error(_t(
|
||||
$result->addError(_t(
|
||||
'Member.ERRORWRONGCRED',
|
||||
'The provided details don\'t seem to be correct. Please try again.'
|
||||
));
|
||||
@ -368,7 +368,7 @@ class Member extends DataObject implements TemplateGlobalProvider
|
||||
$result = ValidationResult::create();
|
||||
|
||||
if ($this->isLockedOut()) {
|
||||
$result->error(
|
||||
$result->addError(
|
||||
_t(
|
||||
'Member.ERRORLOCKEDOUT2',
|
||||
'Your account has been temporarily disabled because of too many failed attempts at ' .
|
||||
@ -499,7 +499,7 @@ class Member extends DataObject implements TemplateGlobalProvider
|
||||
// Clear the incorrect log-in count
|
||||
$this->registerSuccessfulLogin();
|
||||
|
||||
$this->LockedOutUntil = null;
|
||||
$this->LockedOutUntil = null;
|
||||
|
||||
$this->regenerateTempID();
|
||||
|
||||
@ -938,7 +938,7 @@ class Member extends DataObject implements TemplateGlobalProvider
|
||||
$existingRecord = DataObject::get_one('SilverStripe\\Security\\Member', $filter);
|
||||
|
||||
if ($existingRecord) {
|
||||
throw new ValidationException(ValidationResult::create(false, _t(
|
||||
throw new ValidationException(_t(
|
||||
'Member.ValidationIdentifierFailed',
|
||||
'Can\'t overwrite existing member #{id} with identical identifier ({name} = {value}))',
|
||||
'Values in brackets show "fieldname = value", usually denoting an existing email address',
|
||||
@ -947,7 +947,7 @@ class Member extends DataObject implements TemplateGlobalProvider
|
||||
'name' => $identifierField,
|
||||
'value' => $this->$identifierField
|
||||
)
|
||||
)));
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
@ -1055,9 +1055,9 @@ class Member extends DataObject implements TemplateGlobalProvider
|
||||
}
|
||||
|
||||
// If there are no admin groups in this set then it's ok
|
||||
$adminGroups = Permission::get_groups_by_permission('ADMIN');
|
||||
$adminGroupIDs = ($adminGroups) ? $adminGroups->column('ID') : array();
|
||||
return count(array_intersect($ids, $adminGroupIDs)) == 0;
|
||||
$adminGroups = Permission::get_groups_by_permission('ADMIN');
|
||||
$adminGroupIDs = ($adminGroups) ? $adminGroups->column('ID') : array();
|
||||
return count(array_intersect($ids, $adminGroupIDs)) == 0;
|
||||
}
|
||||
|
||||
|
||||
@ -1231,7 +1231,7 @@ class Member extends DataObject implements TemplateGlobalProvider
|
||||
];
|
||||
}
|
||||
|
||||
$columnsWithTablename = array();
|
||||
$columnsWithTablename = array();
|
||||
foreach ($format['columns'] as $column) {
|
||||
$columnsWithTablename[] = static::getSchema()->sqlColumnForField(__CLASS__, $column);
|
||||
}
|
||||
@ -1757,7 +1757,7 @@ class Member extends DataObject implements TemplateGlobalProvider
|
||||
$this->Password = $password;
|
||||
$valid = $this->validate();
|
||||
|
||||
if ($valid->valid()) {
|
||||
if ($valid->isValid()) {
|
||||
$this->AutoLoginHash = null;
|
||||
$this->write();
|
||||
}
|
||||
|
@ -81,9 +81,9 @@ class MemberAuthenticator extends Authenticator
|
||||
// Validate against member if possible
|
||||
if ($member && !$asDefaultAdmin) {
|
||||
$result = $member->checkPassword($data['Password']);
|
||||
$success = $result->valid();
|
||||
$success = $result->isValid();
|
||||
} else {
|
||||
$result = new ValidationResult(false, _t('Member.ERRORWRONGCRED'));
|
||||
$result = ValidationResult::create()->addError(_t('Member.ERRORWRONGCRED'));
|
||||
}
|
||||
|
||||
// Emit failure to member and form (if available)
|
||||
@ -92,7 +92,7 @@ class MemberAuthenticator extends Authenticator
|
||||
$member->registerFailedLogin();
|
||||
}
|
||||
if ($form) {
|
||||
$form->sessionMessage($result->message(), 'bad');
|
||||
$form->setSessionValidationResult($result, true);
|
||||
}
|
||||
} else {
|
||||
if ($member) {
|
||||
|
@ -8,6 +8,7 @@ use SilverStripe\Control\Director;
|
||||
use SilverStripe\Control\Session;
|
||||
use SilverStripe\Control\Controller;
|
||||
use SilverStripe\Control\Email\Email;
|
||||
use SilverStripe\Dev\Debug;
|
||||
use SilverStripe\Forms\HiddenField;
|
||||
use SilverStripe\Forms\FieldList;
|
||||
use SilverStripe\Forms\FormAction;
|
||||
@ -16,6 +17,7 @@ use SilverStripe\Forms\PasswordField;
|
||||
use SilverStripe\Forms\CheckboxField;
|
||||
use SilverStripe\Forms\LiteralField;
|
||||
use SilverStripe\Forms\RequiredFields;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\View\Requirements;
|
||||
|
||||
/**
|
||||
@ -160,19 +162,18 @@ JS;
|
||||
Requirements::customScript($js, 'MemberLoginFormFieldFocus');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get message from session
|
||||
*/
|
||||
protected function getMessageFromSession()
|
||||
public function restoreFormState()
|
||||
{
|
||||
parent::restoreFormState();
|
||||
|
||||
$forceMessage = Session::get('MemberLoginForm.force_message');
|
||||
if (($member = Member::currentUser()) && !$forceMessage) {
|
||||
$this->message = _t(
|
||||
$message = _t(
|
||||
'Member.LOGGEDINAS',
|
||||
"You're logged in as {name}.",
|
||||
array('name' => $member->{$this->loggedInAsField})
|
||||
);
|
||||
$this->setMessage($message, ValidationResult::TYPE_INFO);
|
||||
}
|
||||
|
||||
// Reset forced message
|
||||
@ -180,7 +181,7 @@ JS;
|
||||
Session::set('MemberLoginForm.force_message', false);
|
||||
}
|
||||
|
||||
return parent::getMessageFromSession();
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
@ -283,11 +284,8 @@ JS;
|
||||
$member->logIn();
|
||||
}
|
||||
|
||||
Session::set(
|
||||
'Security.Message.message',
|
||||
_t('Member.WELCOMEBACK', "Welcome Back, {firstname}", array('firstname' => $firstname))
|
||||
);
|
||||
Session::set("Security.Message.type", "good");
|
||||
$message = _t('Member.WELCOMEBACK', "Welcome Back, {firstname}", array('firstname' => $firstname));
|
||||
Security::setLoginMessage($message, ValidationResult::TYPE_GOOD);
|
||||
}
|
||||
return Controller::curr()->redirectBack();
|
||||
}
|
||||
|
@ -80,7 +80,7 @@ class PasswordValidator extends Object
|
||||
|
||||
if ($this->minLength) {
|
||||
if (strlen($password) < $this->minLength) {
|
||||
$valid->error(
|
||||
$valid->addError(
|
||||
sprintf(
|
||||
_t(
|
||||
'PasswordValidator.TOOSHORT',
|
||||
@ -88,6 +88,7 @@ class PasswordValidator extends Object
|
||||
),
|
||||
$this->minLength
|
||||
),
|
||||
'bad',
|
||||
'TOO_SHORT'
|
||||
);
|
||||
}
|
||||
@ -109,7 +110,7 @@ class PasswordValidator extends Object
|
||||
}
|
||||
|
||||
if ($score < $this->minScore) {
|
||||
$valid->error(
|
||||
$valid->addError(
|
||||
sprintf(
|
||||
_t(
|
||||
'PasswordValidator.LOWCHARSTRENGTH',
|
||||
@ -117,6 +118,7 @@ class PasswordValidator extends Object
|
||||
),
|
||||
implode(', ', $missedTests)
|
||||
),
|
||||
'bad',
|
||||
'LOW_CHARACTER_STRENGTH'
|
||||
);
|
||||
}
|
||||
@ -130,11 +132,12 @@ class PasswordValidator extends Object
|
||||
/** @var MemberPassword $previousPassword */
|
||||
foreach ($previousPasswords as $previousPassword) {
|
||||
if ($previousPassword->checkPassword($password)) {
|
||||
$valid->error(
|
||||
$valid->addError(
|
||||
_t(
|
||||
'PasswordValidator.PREVPASSWORD',
|
||||
'You\'ve already used that password in the past, please choose a new password'
|
||||
),
|
||||
'bad',
|
||||
'PREVIOUS_PASSWORD'
|
||||
);
|
||||
break;
|
||||
|
@ -33,7 +33,7 @@ class PermissionRoleCode extends DataObject
|
||||
&& in_array($this->Code, $privilegedCodes)
|
||||
&& !Permission::check('ADMIN')
|
||||
) {
|
||||
$result->error(sprintf(
|
||||
$result->addError(sprintf(
|
||||
_t(
|
||||
'PermissionRoleCode.PermsError',
|
||||
'Can\'t assign code "%s" with privileged permissions (requires ADMIN access)'
|
||||
|
@ -21,6 +21,7 @@ use SilverStripe\ORM\ArrayList;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\ORM\DB;
|
||||
use SilverStripe\ORM\FieldType\DBField;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\View\ArrayData;
|
||||
use SilverStripe\View\SSViewer;
|
||||
use SilverStripe\View\TemplateGlobalProvider;
|
||||
@ -324,7 +325,7 @@ class Security extends Controller implements TemplateGlobalProvider
|
||||
// Somewhat hackish way to render a login form with an error message.
|
||||
$me = new Security();
|
||||
$form = $me->LoginForm();
|
||||
$form->sessionMessage($message, 'warning');
|
||||
$form->sessionMessage($message, ValidationResult::TYPE_WARNING);
|
||||
Session::set('MemberLoginForm.force_message', 1);
|
||||
$loginResponse = $me->login();
|
||||
if ($loginResponse instanceof HTTPResponse) {
|
||||
@ -340,8 +341,7 @@ class Security extends Controller implements TemplateGlobalProvider
|
||||
$message = $messageSet['default'];
|
||||
}
|
||||
|
||||
Session::set("Security.Message.message", $message);
|
||||
Session::set("Security.Message.type", 'warning');
|
||||
static::setLoginMessage($message, ValidationResult::TYPE_WARNING);
|
||||
|
||||
Session::set("BackURL", $_SERVER['REQUEST_URI']);
|
||||
|
||||
@ -349,10 +349,10 @@ class Security extends Controller implements TemplateGlobalProvider
|
||||
// Audit logging hook
|
||||
$controller->extend('permissionDenied', $member);
|
||||
|
||||
return $controller->redirect(
|
||||
Config::inst()->get('SilverStripe\\Security\\Security', 'login_url')
|
||||
. "?BackURL=" . urlencode($_SERVER['REQUEST_URI'])
|
||||
);
|
||||
return $controller->redirect(Controller::join_links(
|
||||
static::config()->get('login_url'),
|
||||
"?BackURL=" . urlencode($_SERVER['REQUEST_URI'])
|
||||
));
|
||||
}
|
||||
|
||||
protected function init()
|
||||
@ -559,11 +559,36 @@ class Security extends Controller implements TemplateGlobalProvider
|
||||
}
|
||||
|
||||
$messageType = Session::get('Security.Message.type');
|
||||
if ($messageType === 'bad') {
|
||||
return "<p class=\"message $messageType\">$message</p>";
|
||||
} else {
|
||||
return "<p>$message</p>";
|
||||
$messageCast = Session::get('Security.Message.cast');
|
||||
if ($messageCast !== ValidationResult::CAST_HTML) {
|
||||
$message = Convert::raw2xml($message);
|
||||
}
|
||||
return sprintf('<p class="message %s">%s</p>', Convert::raw2att($messageType), $message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the next message to display for the security login page. Defaults to warning
|
||||
*
|
||||
* @param string $message Message
|
||||
* @param string $messageType Message type. One of ValidationResult::TYPE_*
|
||||
* @param string $messageCast Message cast. One of ValidationResult::CAST_*
|
||||
*/
|
||||
public static function setLoginMessage(
|
||||
$message,
|
||||
$messageType = ValidationResult::TYPE_WARNING,
|
||||
$messageCast = ValidationResult::CAST_TEXT
|
||||
) {
|
||||
Session::set("Security.Message.message", $message);
|
||||
Session::set("Security.Message.type", $messageType);
|
||||
Session::set("Security.Message.cast", $messageCast);
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear login message
|
||||
*/
|
||||
public static function clearLoginMessage()
|
||||
{
|
||||
Session::clear("Security.Message");
|
||||
}
|
||||
|
||||
|
||||
@ -603,7 +628,7 @@ class Security extends Controller implements TemplateGlobalProvider
|
||||
$message = $this->getLoginMessage($messageType);
|
||||
|
||||
// We've displayed the message in the form output, so reset it for the next run.
|
||||
Session::clear('Security.Message');
|
||||
static::clearLoginMessage();
|
||||
|
||||
// only display tabs when more than one authenticator is provided
|
||||
// to save bandwidth and reduce the amount of custom styling needed
|
||||
|
@ -6,7 +6,7 @@ Feature: Log in
|
||||
|
||||
Scenario: Bad login
|
||||
Given I log in with "bad@example.com" and "badpassword"
|
||||
Then I will see a "bad" log-in message
|
||||
Then I will see a "error" log-in message
|
||||
|
||||
Scenario: Valid login
|
||||
Given I am logged in with "ADMIN" permissions
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
namespace SilverStripe\Assets\Tests;
|
||||
|
||||
use SilverStripe\Assets\Image;
|
||||
use SilverStripe\Assets\Storage\AssetStore;
|
||||
use SilverStripe\Assets\Tests\FileTest\MyCustomFile;
|
||||
use SilverStripe\ORM\ValidationException;
|
||||
@ -178,22 +179,21 @@ class FileTest extends SapphireTest {
|
||||
|
||||
// Invalid ext
|
||||
$file->Name = 'asdf.php';
|
||||
$v = $file->validate();
|
||||
$this->assertFalse($v->valid());
|
||||
$this->assertContains('Extension is not allowed', $v->message());
|
||||
$result = $file->validate();
|
||||
$this->assertFalse($result->isValid());
|
||||
$messages = $result->getMessages();
|
||||
$this->assertEquals(1, count($messages));
|
||||
$this->assertEquals('Extension is not allowed', $messages[0]['message']);
|
||||
|
||||
// Valid ext
|
||||
$file->Name = 'asdf.txt';
|
||||
$v = $file->validate();
|
||||
$this->assertTrue($v->valid());
|
||||
$result = $file->validate();
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
// Capital extension is valid as well
|
||||
$file->Name = 'asdf.TXT';
|
||||
$v = $file->validate();
|
||||
$this->assertTrue($v->valid());
|
||||
|
||||
Config::inst()->remove(File::class, 'allowed_extensions');
|
||||
Config::inst()->update(File::class, 'allowed_extensions', $orig);
|
||||
$result = $file->validate();
|
||||
$this->assertTrue($result->isValid());
|
||||
}
|
||||
|
||||
public function testAppCategory() {
|
||||
@ -372,7 +372,7 @@ class FileTest extends SapphireTest {
|
||||
|
||||
public function testNameAndTitleGeneration() {
|
||||
// When name is assigned, title is automatically assigned
|
||||
$file = $this->objFromFixture('SilverStripe\\Assets\\Image', 'setfromname');
|
||||
$file = $this->objFromFixture(Image::class, 'setfromname');
|
||||
$this->assertEquals('FileTest', $file->Title);
|
||||
}
|
||||
|
||||
@ -386,13 +386,13 @@ class FileTest extends SapphireTest {
|
||||
}
|
||||
|
||||
public function testFileType() {
|
||||
$file = $this->objFromFixture('SilverStripe\\Assets\\Image', 'gif');
|
||||
$file = $this->objFromFixture(Image::class, 'gif');
|
||||
$this->assertEquals("GIF image - good for diagrams", $file->FileType);
|
||||
|
||||
$file = $this->objFromFixture(File::class, 'pdf');
|
||||
$this->assertEquals("Adobe Acrobat PDF file", $file->FileType);
|
||||
|
||||
$file = $this->objFromFixture('SilverStripe\\Assets\\Image', 'gifupper');
|
||||
$file = $this->objFromFixture(Image::class, 'gifupper');
|
||||
$this->assertEquals("GIF image - good for diagrams", $file->FileType);
|
||||
|
||||
/* Only a few file types are given special descriptions; the rest are unknown */
|
||||
@ -450,7 +450,7 @@ class FileTest extends SapphireTest {
|
||||
$newTitle = "FileTest-folder-renamed";
|
||||
|
||||
//rename a folder's title
|
||||
$folderID = $this->objFromFixture("SilverStripe\\Assets\\Folder","folder2")->ID;
|
||||
$folderID = $this->objFromFixture(Folder::class,"folder2")->ID;
|
||||
$folder = DataObject::get_by_id(Folder::class,$folderID);
|
||||
$folder->Title = $newTitle;
|
||||
$folder->write();
|
||||
@ -508,30 +508,30 @@ class FileTest extends SapphireTest {
|
||||
}
|
||||
|
||||
public function testCanEdit() {
|
||||
$file = $this->objFromFixture('SilverStripe\\Assets\\Image', 'gif');
|
||||
$file = $this->objFromFixture(Image::class, 'gif');
|
||||
|
||||
// Test anonymous permissions
|
||||
Session::set('loggedInAs', null);
|
||||
$this->assertFalse($file->canEdit(), "Anonymous users can't edit files");
|
||||
|
||||
// Test permissionless user
|
||||
$this->objFromFixture('SilverStripe\\Security\\Member', 'frontend')->logIn();
|
||||
$this->objFromFixture(Member::class, 'frontend')->logIn();
|
||||
$this->assertFalse($file->canEdit(), "Permissionless users can't edit files");
|
||||
|
||||
// Test global CMS section users
|
||||
$this->objFromFixture('SilverStripe\\Security\\Member', 'cms')->logIn();
|
||||
$this->objFromFixture(Member::class, 'cms')->logIn();
|
||||
$this->assertTrue($file->canEdit(), "Users with all CMS section access can edit files");
|
||||
|
||||
// Test cms access users without file access
|
||||
$this->objFromFixture('SilverStripe\\Security\\Member', 'security')->logIn();
|
||||
$this->objFromFixture(Member::class, 'security')->logIn();
|
||||
$this->assertFalse($file->canEdit(), "Security CMS users can't edit files");
|
||||
|
||||
// Test asset-admin user
|
||||
$this->objFromFixture('SilverStripe\\Security\\Member', 'assetadmin')->logIn();
|
||||
$this->objFromFixture(Member::class, 'assetadmin')->logIn();
|
||||
$this->assertTrue($file->canEdit(), "Asset admin users can edit files");
|
||||
|
||||
// Test admin
|
||||
$this->objFromFixture('SilverStripe\\Security\\Member', 'admin')->logIn();
|
||||
$this->objFromFixture(Member::class, 'admin')->logIn();
|
||||
$this->assertTrue($file->canEdit(), "Admins can edit files");
|
||||
}
|
||||
|
||||
|
@ -35,10 +35,7 @@ class Validator extends Upload_Validator implements TestOnly
|
||||
|
||||
// extension validation
|
||||
if(!$this->isValidExtension()) {
|
||||
$this->errors[] = _t(
|
||||
'File.INVALIDEXTENSION_SHORT',
|
||||
'Extension is not allowed'
|
||||
);
|
||||
$this->errors[] = _t('File.INVALIDEXTENSIONSHORT', 'Extension is not allowed');
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -346,7 +346,7 @@ class AssetFieldTest extends FunctionalTest {
|
||||
|
||||
$form = new TestForm();
|
||||
$form->loadDataFrom($data, true);
|
||||
if($form->validate()) {
|
||||
if($form->validationResult()->isValid()) {
|
||||
$record = $form->getRecord();
|
||||
$form->saveInto($record);
|
||||
$record->write();
|
||||
|
@ -4,11 +4,13 @@ namespace SilverStripe\Forms\Tests\EmailFieldTest;
|
||||
|
||||
use Exception;
|
||||
use SilverStripe\Forms\Validator;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
|
||||
class TestValidator extends Validator
|
||||
{
|
||||
public function validationError($fieldName, $message, $messageType = '')
|
||||
{
|
||||
public function validationError(
|
||||
$fieldName, $message, $messageType = ValidationResult::TYPE_ERROR, $cast = ValidationResult::CAST_TEXT
|
||||
) {
|
||||
throw new Exception($message);
|
||||
}
|
||||
|
||||
|
@ -18,11 +18,11 @@ class FieldGroupTest extends SapphireTest {
|
||||
)
|
||||
);
|
||||
|
||||
$textField->setError('Test error message', 'warning');
|
||||
$emailField->setError('Test error message', 'error');
|
||||
$textField->setMessage('Test error message', 'error');
|
||||
$emailField->setMessage('Test error warning', 'warning');
|
||||
|
||||
$this->assertEquals('Test error message, Test error message.', $fieldGroup->Message());
|
||||
$this->assertEquals('warning. error', $fieldGroup->MessageType());
|
||||
$this->assertEquals('Test error message, Test error warning.', $fieldGroup->getMessage());
|
||||
$this->assertEquals('error', $fieldGroup->getMessageType());
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -33,9 +33,7 @@ class FileFieldTest extends FunctionalTest {
|
||||
);
|
||||
$fileField->setValue($fileFieldValue);
|
||||
|
||||
$this->assertTrue(
|
||||
$form->validate()
|
||||
);
|
||||
$this->assertTrue($form->validationResult()->isValid());
|
||||
}
|
||||
|
||||
/**
|
||||
@ -63,7 +61,7 @@ class FileFieldTest extends FunctionalTest {
|
||||
$fileField->setValue($fileFieldValue);
|
||||
|
||||
$this->assertFalse(
|
||||
$form->validate(),
|
||||
$form->validationResult()->isValid(),
|
||||
'An error occured when uploading a file, but the validator returned true'
|
||||
);
|
||||
|
||||
@ -72,7 +70,7 @@ class FileFieldTest extends FunctionalTest {
|
||||
$fileField->setValue($fileFieldValue);
|
||||
|
||||
$this->assertFalse(
|
||||
$form->validate(),
|
||||
$form->validationResult()->isValid(),
|
||||
'An empty array was passed as parameter for an uploaded file, but the validator returned true'
|
||||
);
|
||||
|
||||
@ -81,7 +79,7 @@ class FileFieldTest extends FunctionalTest {
|
||||
$fileField->setValue($fileFieldValue);
|
||||
|
||||
$this->assertFalse(
|
||||
$form->validate(),
|
||||
$form->validationResult()->isValid(),
|
||||
'A null value was passed as parameter for an uploaded file, but the validator returned true'
|
||||
);
|
||||
}
|
||||
|
@ -332,11 +332,10 @@ class FormFieldTest extends SapphireTest {
|
||||
$field = new FormField('MyField', 'My Field');
|
||||
$validator = new RequiredFields('MyField');
|
||||
$form = new Form(new Controller(), 'TestForm', new FieldList($field), new FieldList(), $validator);
|
||||
$form->validate();
|
||||
$form->setupFormErrors();
|
||||
$form->validationResult();
|
||||
$schema = $field->getSchemaState();
|
||||
$this->assertEquals(
|
||||
['html' => '"My Field" is required'],
|
||||
'"My Field" is required',
|
||||
$schema['message']['value']
|
||||
);
|
||||
}
|
||||
|
@ -77,7 +77,6 @@ class FormSchemaTest extends SapphireTest {
|
||||
'name' => 'SecurityID',
|
||||
]
|
||||
],
|
||||
'valid' => null,
|
||||
'messages' => [],
|
||||
];
|
||||
|
||||
@ -104,10 +103,9 @@ class FormSchemaTest extends SapphireTest {
|
||||
]
|
||||
],
|
||||
'messages' => [[
|
||||
'value' => ['html' => 'All saved'],
|
||||
'type' => 'good'
|
||||
'value' => 'All saved',
|
||||
'type' => 'good'
|
||||
]],
|
||||
'valid' => null,
|
||||
];
|
||||
|
||||
$state = $formSchema->getState($form);
|
||||
@ -123,7 +121,7 @@ class FormSchemaTest extends SapphireTest {
|
||||
$form->loadDataFrom([
|
||||
'Title' => null,
|
||||
]);
|
||||
$this->assertFalse($form->validate());
|
||||
$this->assertFalse($form->validationResult()->isValid());
|
||||
$formSchema = new FormSchema();
|
||||
$expected = [
|
||||
'id' => 'Form_TestForm',
|
||||
@ -132,7 +130,7 @@ class FormSchemaTest extends SapphireTest {
|
||||
'id' => 'Form_TestForm_Title',
|
||||
'value' => null,
|
||||
'message' => [
|
||||
'value' => ['html' => '"Title" is required'],
|
||||
'value' => '"Title" is required',
|
||||
'type' => 'required'
|
||||
],
|
||||
'data' => [],
|
||||
@ -146,7 +144,6 @@ class FormSchemaTest extends SapphireTest {
|
||||
'name' => 'SecurityID',
|
||||
]
|
||||
],
|
||||
'valid' => false,
|
||||
'messages' => []
|
||||
];
|
||||
|
||||
@ -165,7 +162,7 @@ class FormSchemaTest extends SapphireTest {
|
||||
->setIcon('save'),
|
||||
(new FormAction("cancel", "Cancel"))
|
||||
->setUseButtonTag(true),
|
||||
new PopoverField("More options", [
|
||||
$pop = new PopoverField("More options", [
|
||||
new FormAction("publish", "Publish record"),
|
||||
new FormAction("archive", "Archive"),
|
||||
])
|
||||
|
@ -7,7 +7,8 @@ use SilverStripe\Forms\Tests\FormTest\ControllerWithSecurityToken;
|
||||
use SilverStripe\Forms\Tests\FormTest\ControllerWithStrictPostCheck;
|
||||
use SilverStripe\Forms\Tests\FormTest\Player;
|
||||
use SilverStripe\Forms\Tests\FormTest\Team;
|
||||
use SilverStripe\ORM\DataModel;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\Security\NullSecurityToken;
|
||||
use SilverStripe\Security\SecurityToken;
|
||||
use SilverStripe\Security\RandomGenerator;
|
||||
use SilverStripe\Dev\CSSContentParser;
|
||||
@ -255,7 +256,7 @@ class FormTest extends FunctionalTest {
|
||||
$form->saveInto($object);
|
||||
$playersIds = $object->Players()->getIDList();
|
||||
|
||||
$this->assertTrue($form->validate());
|
||||
$this->assertTrue($form->validationResult()->isValid());
|
||||
$this->assertEquals(
|
||||
$playersIds,
|
||||
array(),
|
||||
@ -420,7 +421,7 @@ class FormTest extends FunctionalTest {
|
||||
public function testSessionSuccessMessage() {
|
||||
$this->get('FormTest_Controller');
|
||||
|
||||
$response = $this->post(
|
||||
$this->post(
|
||||
'FormTest_Controller/Form',
|
||||
array(
|
||||
'Email' => 'test@test.com',
|
||||
@ -436,16 +437,44 @@ class FormTest extends FunctionalTest {
|
||||
);
|
||||
}
|
||||
|
||||
public function testValidationException() {
|
||||
$this->get('FormTest_Controller');
|
||||
|
||||
$this->post(
|
||||
'FormTest_Controller/Form',
|
||||
array(
|
||||
'Email' => 'test@test.com',
|
||||
'SomeRequiredField' => 'test',
|
||||
'action_doTriggerException' => 1,
|
||||
)
|
||||
);
|
||||
$this->assertPartialMatchBySelector(
|
||||
'#Form_Form_Email_Holder span.message',
|
||||
array(
|
||||
'Error on Email field'
|
||||
),
|
||||
'Formfield validation shows note on field if invalid'
|
||||
);
|
||||
$this->assertPartialMatchBySelector(
|
||||
'#Form_Form_error',
|
||||
array(
|
||||
'Error at top of form'
|
||||
),
|
||||
'Required fields show a notification on field when left blank'
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
public function testGloballyDisabledSecurityTokenInheritsToNewForm() {
|
||||
SecurityToken::enable();
|
||||
|
||||
$form1 = $this->getStubForm();
|
||||
$this->assertInstanceOf('SilverStripe\\Security\\SecurityToken', $form1->getSecurityToken());
|
||||
$this->assertInstanceOf(SecurityToken::class, $form1->getSecurityToken());
|
||||
|
||||
SecurityToken::disable();
|
||||
|
||||
$form2 = $this->getStubForm();
|
||||
$this->assertInstanceOf('SilverStripe\\Security\\NullSecurityToken', $form2->getSecurityToken());
|
||||
$this->assertInstanceOf(NullSecurityToken::class, $form2->getSecurityToken());
|
||||
|
||||
SecurityToken::enable();
|
||||
}
|
||||
@ -472,7 +501,7 @@ class FormTest extends FunctionalTest {
|
||||
SecurityToken::enable();
|
||||
$expectedToken = SecurityToken::inst()->getValue();
|
||||
|
||||
$response = $this->get('FormTest_ControllerWithSecurityToken');
|
||||
$this->get('FormTest_ControllerWithSecurityToken');
|
||||
// can't use submitForm() as it'll automatically insert SecurityID into the POST data
|
||||
$response = $this->post(
|
||||
'FormTest_ControllerWithSecurityToken/Form',
|
||||
@ -490,7 +519,7 @@ class FormTest extends FunctionalTest {
|
||||
$this->assertNotEquals($invalidToken, $expectedToken);
|
||||
|
||||
// Test token with request
|
||||
$response = $this->get('FormTest_ControllerWithSecurityToken');
|
||||
$this->get('FormTest_ControllerWithSecurityToken');
|
||||
$response = $this->post(
|
||||
'FormTest_ControllerWithSecurityToken/Form',
|
||||
array(
|
||||
@ -513,7 +542,7 @@ class FormTest extends FunctionalTest {
|
||||
$attrs = $matched[0]->attributes();
|
||||
$this->assertEquals('test@test.com', (string)$attrs['value'], 'Submitted data is preserved');
|
||||
|
||||
$response = $this->get('FormTest_ControllerWithSecurityToken');
|
||||
$this->get('FormTest_ControllerWithSecurityToken');
|
||||
$tokenEls = $this->cssParser()->getBySelector('#Form_Form_SecurityID');
|
||||
$this->assertEquals(
|
||||
1,
|
||||
@ -533,13 +562,13 @@ class FormTest extends FunctionalTest {
|
||||
}
|
||||
|
||||
public function testStrictFormMethodChecking() {
|
||||
$response = $this->get('FormTest_ControllerWithStrictPostCheck');
|
||||
$this->get('FormTest_ControllerWithStrictPostCheck');
|
||||
$response = $this->get(
|
||||
'FormTest_ControllerWithStrictPostCheck/Form/?Email=test@test.com&action_doSubmit=1'
|
||||
);
|
||||
$this->assertEquals(405, $response->getStatusCode(), 'Submission fails with wrong method');
|
||||
|
||||
$response = $this->get('FormTest_ControllerWithStrictPostCheck');
|
||||
$this->get('FormTest_ControllerWithStrictPostCheck');
|
||||
$response = $this->post(
|
||||
'FormTest_ControllerWithStrictPostCheck/Form',
|
||||
array(
|
||||
@ -756,8 +785,7 @@ class FormTest extends FunctionalTest {
|
||||
|
||||
function testMessageEscapeHtml() {
|
||||
$form = $this->getStubForm();
|
||||
$form->getController()->handleRequest(new HTTPRequest('GET', '/'), DataModel::inst()); // stub out request
|
||||
$form->sessionMessage('<em>Escaped HTML</em>', 'good', true);
|
||||
$form->setMessage('<em>Escaped HTML</em>', 'good', ValidationResult::CAST_TEXT);
|
||||
$parser = new CSSContentParser($form->forTemplate());
|
||||
$messageEls = $parser->getBySelector('.message');
|
||||
$this->assertContains(
|
||||
@ -766,8 +794,7 @@ class FormTest extends FunctionalTest {
|
||||
);
|
||||
|
||||
$form = $this->getStubForm();
|
||||
$form->getController()->handleRequest(new HTTPRequest('GET', '/'), DataModel::inst()); // stub out request
|
||||
$form->sessionMessage('<em>Unescaped HTML</em>', 'good', false);
|
||||
$form->setMessage('<em>Unescaped HTML</em>', 'good', ValidationResult::CAST_HTML);
|
||||
$parser = new CSSContentParser($form->forTemplate());
|
||||
$messageEls = $parser->getBySelector('.message');
|
||||
$this->assertContains(
|
||||
@ -776,11 +803,9 @@ class FormTest extends FunctionalTest {
|
||||
);
|
||||
}
|
||||
|
||||
function testFieldMessageEscapeHtml() {
|
||||
public function testFieldMessageEscapeHtml() {
|
||||
$form = $this->getStubForm();
|
||||
$form->getController()->handleRequest(new HTTPRequest('GET', '/'), DataModel::inst()); // stub out request
|
||||
$form->addErrorMessage('key1', '<em>Escaped HTML</em>', 'good', true);
|
||||
$form->setupFormErrors();
|
||||
$form->Fields()->dataFieldByName('key1')->setMessage('<em>Escaped HTML</em>', 'good');
|
||||
$parser = new CSSContentParser($result = $form->forTemplate());
|
||||
$messageEls = $parser->getBySelector('#Form_Form_key1_Holder .message');
|
||||
$this->assertContains(
|
||||
@ -788,10 +813,12 @@ class FormTest extends FunctionalTest {
|
||||
$messageEls[0]->asXML()
|
||||
);
|
||||
|
||||
// Test with HTML
|
||||
$form = $this->getStubForm();
|
||||
$form->getController()->handleRequest(new HTTPRequest('GET', '/'), DataModel::inst()); // stub out request
|
||||
$form->addErrorMessage('key1', '<em>Unescaped HTML</em>', 'good', false);
|
||||
$form->setupFormErrors();
|
||||
$form
|
||||
->Fields()
|
||||
->dataFieldByName('key1')
|
||||
->setMessage('<em>Unescaped HTML</em>', 'good', ValidationResult::CAST_HTML);
|
||||
$parser = new CSSContentParser($form->forTemplate());
|
||||
$messageEls = $parser->getBySelector('#Form_Form_key1_Holder .message');
|
||||
$this->assertContains(
|
||||
|
@ -4,9 +4,12 @@ namespace SilverStripe\Forms\Tests\FormTest;
|
||||
|
||||
use SilverStripe\Dev\TestOnly;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\ORM\ManyManyList;
|
||||
|
||||
/**
|
||||
* @skipUpgrade
|
||||
*
|
||||
* @method ManyManyList Players()
|
||||
*/
|
||||
class Team extends DataObject implements TestOnly
|
||||
{
|
||||
|
@ -12,6 +12,8 @@ use SilverStripe\Forms\FormAction;
|
||||
use SilverStripe\Forms\NumericField;
|
||||
use SilverStripe\Forms\RequiredFields;
|
||||
use SilverStripe\Forms\TextField;
|
||||
use SilverStripe\ORM\ValidationException;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\View\SSViewer;
|
||||
|
||||
/**
|
||||
@ -54,6 +56,7 @@ class TestController extends Controller implements TestOnly
|
||||
),
|
||||
new FieldList(
|
||||
FormAction::create('doSubmit'),
|
||||
FormAction::create('doTriggerException'),
|
||||
FormAction::create('doSubmitValidationExempt'),
|
||||
FormAction::create('doSubmitActionExempt')
|
||||
->setValidationExempt(true)
|
||||
@ -75,6 +78,13 @@ class TestController extends Controller implements TestOnly
|
||||
return $this->redirectBack();
|
||||
}
|
||||
|
||||
public function doTriggerException($data, $form, $request) {
|
||||
$result = new ValidationResult();
|
||||
$result->addFieldError('Email', 'Error on Email field');
|
||||
$result->addError('Error at top of form');
|
||||
throw new ValidationException($result);
|
||||
}
|
||||
|
||||
public function doSubmitValidationExempt($data, $form, $request)
|
||||
{
|
||||
$form->sessionMessage('Validation skipped', 'good');
|
||||
|
@ -54,7 +54,7 @@ class OptionsetFieldTest extends SapphireTest {
|
||||
$this->assertTrue($field->validate($validator));
|
||||
|
||||
// ... but should not pass "RequiredFields" validation
|
||||
$this->assertFalse($form->validate());
|
||||
$this->assertFalse($form->validationResult()->isValid());
|
||||
|
||||
//disabled items shouldn't validate
|
||||
$field->setDisabledItems(array('Five'));
|
||||
|
@ -937,7 +937,7 @@ class UploadFieldTest extends FunctionalTest {
|
||||
$form = new UploadFieldTest\UploadFieldTestForm();
|
||||
$form->loadDataFrom($data, true);
|
||||
|
||||
if($form->validate()) {
|
||||
if($form->validationResult()->isValid()) {
|
||||
$record = $form->getRecord();
|
||||
$form->saveInto($record);
|
||||
$record->write();
|
||||
|
@ -13,14 +13,10 @@ use SilverStripe\ORM\Connect\MySQLDatabase;
|
||||
use SilverStripe\ORM\FieldType\DBPolymorphicForeignKey;
|
||||
use SilverStripe\ORM\FieldType\DBVarchar;
|
||||
use SilverStripe\ORM\ManyManyList;
|
||||
use SilverStripe\ORM\Tests\ManyManyListTest\Category;
|
||||
use SilverStripe\ORM\Tests\ManyManyListTest\ExtraFieldsObject;
|
||||
use SilverStripe\ORM\Tests\ManyManyListTest\Product;
|
||||
use SilverStripe\ORM\ValidationException;
|
||||
use SilverStripe\View\ViewableData;
|
||||
use stdClass;
|
||||
use ReflectionException;
|
||||
use ReflectionMethod;
|
||||
use InvalidArgumentException;
|
||||
|
||||
class DataObjectTest extends SapphireTest {
|
||||
@ -1055,7 +1051,6 @@ class DataObjectTest extends SapphireTest {
|
||||
|
||||
public function testWritingInvalidDataObjectThrowsException() {
|
||||
$validatedObject = new DataObjectTest\ValidatedObject();
|
||||
|
||||
$this->setExpectedException(ValidationException::class);
|
||||
$validatedObject->write();
|
||||
}
|
||||
@ -1181,12 +1176,6 @@ class DataObjectTest extends SapphireTest {
|
||||
);
|
||||
}
|
||||
|
||||
protected function makeAccessible($object, $method) {
|
||||
$reflectionMethod = new ReflectionMethod($object, $method);
|
||||
$reflectionMethod->setAccessible(true);
|
||||
return $reflectionMethod;
|
||||
}
|
||||
|
||||
public function testValidateModelDefinitionsFailsWithArray() {
|
||||
Config::inst()->update(DataObjectTest\Team::class, 'has_one', array('NotValid' => array('NoArraysAllowed')));
|
||||
$this->setExpectedException(InvalidArgumentException::class);
|
||||
@ -1762,6 +1751,6 @@ class DataObjectTest extends SapphireTest {
|
||||
$staff->Salary = PHP_INT_MAX;
|
||||
$staff->write();
|
||||
$this->assertEquals(PHP_INT_MAX, DataObjectTest\Staff::get()->byID($staff->ID)->Salary);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -16,10 +16,10 @@ class ValidatedObject extends DataObject implements TestOnly
|
||||
|
||||
public function validate()
|
||||
{
|
||||
if (!empty($this->Name)) {
|
||||
return new ValidationResult();
|
||||
} else {
|
||||
return new ValidationResult(false, "This object needs a name. Otherwise it will have an identity crisis!");
|
||||
$result = ValidationResult::create();
|
||||
if (empty($this->Name)) {
|
||||
$result->addError("This object needs a name. Otherwise it will have an identity crisis!");
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
|
@ -184,7 +184,7 @@ class HierarchyTest extends SapphireTest {
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers SilverStripe\ORM\Hierarchy\Hierarchy::markChildren()
|
||||
* @covers \SilverStripe\ORM\Hierarchy\Hierarchy::markChildren()
|
||||
*/
|
||||
public function testMarkChildrenDoesntUnmarkPreviouslyMarked() {
|
||||
$obj3 = $this->objFromFixture(HierarchyTest\TestObject::class, 'obj3');
|
||||
|
@ -12,14 +12,20 @@ class ValidationExceptionTest extends SapphireTest
|
||||
* Test that ValidationResult object can correctly populate a ValidationException
|
||||
*/
|
||||
public function testCreateFromValidationResult() {
|
||||
$result = new ValidationResult();
|
||||
$result->addError('Not a valid result');
|
||||
|
||||
$result = new ValidationResult(false, 'Not a valid result');
|
||||
$exception = new ValidationException($result);
|
||||
|
||||
$this->assertEquals(0, $exception->getCode());
|
||||
$this->assertEquals('Not a valid result', $exception->getMessage());
|
||||
$this->assertEquals(false, $exception->getResult()->valid());
|
||||
$this->assertEquals('Not a valid result', $exception->getResult()->message());
|
||||
$this->assertFalse($exception->getResult()->isValid());
|
||||
$this->assertContains([
|
||||
'message' => 'Not a valid result',
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
'messageType' => ValidationResult::TYPE_ERROR,
|
||||
'fieldName' => null,
|
||||
], $exception->getResult()->getMessages());
|
||||
|
||||
}
|
||||
|
||||
@ -29,14 +35,26 @@ class ValidationExceptionTest extends SapphireTest
|
||||
*/
|
||||
public function testCreateFromComplexValidationResult() {
|
||||
$result = new ValidationResult();
|
||||
$result->error('Invalid type')
|
||||
->error('Out of kiwis');
|
||||
$result
|
||||
->addError('Invalid type')
|
||||
->addError('Out of kiwis');
|
||||
$exception = new ValidationException($result);
|
||||
|
||||
$this->assertEquals(0, $exception->getCode());
|
||||
$this->assertEquals('Invalid type; Out of kiwis', $exception->getMessage());
|
||||
$this->assertEquals(false, $exception->getResult()->valid());
|
||||
$this->assertEquals('Invalid type; Out of kiwis', $exception->getResult()->message());
|
||||
$this->assertEquals('Invalid type', $exception->getMessage());
|
||||
$this->assertEquals(false, $exception->getResult()->isValid());
|
||||
$this->assertContains([
|
||||
'message' => 'Invalid type',
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
'messageType' => ValidationResult::TYPE_ERROR,
|
||||
'fieldName' => null,
|
||||
], $exception->getResult()->getMessages());
|
||||
$this->assertContains([
|
||||
'message' => 'Out of kiwis',
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
'messageType' => ValidationResult::TYPE_ERROR,
|
||||
'fieldName' => null,
|
||||
], $exception->getResult()->getMessages());
|
||||
}
|
||||
|
||||
/**
|
||||
@ -48,40 +66,40 @@ class ValidationExceptionTest extends SapphireTest
|
||||
|
||||
$this->assertEquals(E_USER_ERROR, $exception->getCode());
|
||||
$this->assertEquals('Error inferred from message', $exception->getMessage());
|
||||
$this->assertEquals(false, $exception->getResult()->valid());
|
||||
$this->assertEquals('Error inferred from message', $exception->getResult()->message());
|
||||
$this->assertFalse($exception->getResult()->isValid());
|
||||
$this->assertContains([
|
||||
'message' => 'Error inferred from message',
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
'messageType' => ValidationResult::TYPE_ERROR,
|
||||
'fieldName' => null,
|
||||
], $exception->getResult()->getMessages());
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that ValidationException can be created with both a ValidationResult
|
||||
* and a custom message
|
||||
*/
|
||||
public function testCreateWithValidationResultAndMessage() {
|
||||
$result = new ValidationResult(false, 'Incorrect placement of cutlery');
|
||||
$exception = new ValidationException($result, 'An error has occurred', E_USER_WARNING);
|
||||
|
||||
$this->assertEquals(E_USER_WARNING, $exception->getCode());
|
||||
$this->assertEquals('An error has occurred', $exception->getMessage());
|
||||
$this->assertEquals(false, $exception->getResult()->valid());
|
||||
$this->assertEquals('Incorrect placement of cutlery', $exception->getResult()->message());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Test that ValidationException can be created with both a ValidationResult
|
||||
* and a custom message
|
||||
*/
|
||||
public function testCreateWithComplexValidationResultAndMessage() {
|
||||
$result = new ValidationResult();
|
||||
$result->error('A spork is not a knife')
|
||||
->error('A knife is not a back scratcher');
|
||||
$exception = new ValidationException($result, 'An error has occurred', E_USER_WARNING);
|
||||
$result->addError('A spork is not a knife')
|
||||
->addError('A knife is not a back scratcher');
|
||||
$exception = new ValidationException($result, E_USER_WARNING);
|
||||
|
||||
$this->assertEquals(E_USER_WARNING, $exception->getCode());
|
||||
$this->assertEquals('An error has occurred', $exception->getMessage());
|
||||
$this->assertEquals(false, $exception->getResult()->valid());
|
||||
$this->assertEquals('A spork is not a knife; A knife is not a back scratcher',
|
||||
$exception->getResult()->message());
|
||||
$this->assertEquals('A spork is not a knife', $exception->getMessage());
|
||||
$this->assertEquals(false, $exception->getResult()->isValid());
|
||||
$this->assertContains([
|
||||
'message' => 'A spork is not a knife',
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
'messageType' => ValidationResult::TYPE_ERROR,
|
||||
'fieldName' => null,
|
||||
], $exception->getResult()->getMessages());
|
||||
$this->assertContains([
|
||||
'message' => 'A knife is not a back scratcher',
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
'messageType' => ValidationResult::TYPE_ERROR,
|
||||
'fieldName' => null,
|
||||
], $exception->getResult()->getMessages());
|
||||
}
|
||||
|
||||
/**
|
||||
@ -91,20 +109,73 @@ class ValidationExceptionTest extends SapphireTest
|
||||
$result = new ValidationResult();
|
||||
$anotherresult = new ValidationResult();
|
||||
$yetanotherresult = new ValidationResult();
|
||||
$anotherresult->error("Eat with your mouth closed", "EATING101");
|
||||
$yetanotherresult->error("You didn't wash your hands", "BECLEAN");
|
||||
$anotherresult->addError("Eat with your mouth closed", 'bad', "EATING101");
|
||||
$yetanotherresult->addError("You didn't wash your hands", 'bad', "BECLEAN", false);
|
||||
|
||||
$this->assertTrue($result->valid());
|
||||
$this->assertFalse($anotherresult->valid());
|
||||
$this->assertFalse($yetanotherresult->valid());
|
||||
$this->assertTrue($result->isValid());
|
||||
$this->assertFalse($anotherresult->isValid());
|
||||
$this->assertFalse($yetanotherresult->isValid());
|
||||
|
||||
$result->combineAnd($anotherresult)
|
||||
->combineAnd($yetanotherresult);
|
||||
$this->assertFalse($result->valid());
|
||||
$this->assertEquals(array(
|
||||
"EATING101" => "Eat with your mouth closed",
|
||||
"BECLEAN" => "You didn't wash your hands"
|
||||
),$result->messageList());
|
||||
$this->assertFalse($result->isValid());
|
||||
$this->assertEquals(
|
||||
[
|
||||
'EATING101' => [
|
||||
'message' => 'Eat with your mouth closed',
|
||||
'messageType' => 'bad',
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
'fieldName' => null,
|
||||
],
|
||||
'BECLEAN' => [
|
||||
'message' => 'You didn\'t wash your hands',
|
||||
'messageType' => 'bad',
|
||||
'messageCast' => ValidationResult::CAST_HTML,
|
||||
'fieldName' => null,
|
||||
],
|
||||
],
|
||||
$result->getMessages()
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that a ValidationException created with no contained ValidationResult
|
||||
* will correctly populate itself with an inferred version
|
||||
*/
|
||||
public function testValidationResultAddMethods() {
|
||||
$result = new ValidationResult();
|
||||
$result->addMessage('A spork is not a knife', 'bad');
|
||||
$result->addError('A knife is not a back scratcher');
|
||||
$result->addFieldMessage('Title', 'Title is good', 'good');
|
||||
$result->addFieldError('Content', 'Content is bad', 'bad');
|
||||
|
||||
|
||||
$this->assertEquals([
|
||||
[
|
||||
'fieldName' => null,
|
||||
'message' => 'A spork is not a knife',
|
||||
'messageType' => 'bad',
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
],
|
||||
[
|
||||
'fieldName' => null,
|
||||
'message' => 'A knife is not a back scratcher',
|
||||
'messageType' => 'error',
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
],
|
||||
[
|
||||
'fieldName' => 'Title',
|
||||
'message' => 'Title is good',
|
||||
'messageType' => 'good',
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
],
|
||||
[
|
||||
'fieldName' => 'Content',
|
||||
'message' => 'Content is bad',
|
||||
'messageType' => 'bad',
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
]
|
||||
], $result->getMessages());
|
||||
}
|
||||
|
||||
}
|
||||
|
35
tests/php/ORM/ValidationResultTest.php
Normal file
35
tests/php/ORM/ValidationResultTest.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace SilverStripe\ORM\Tests;
|
||||
|
||||
use SilverStripe\Dev\SapphireTest;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
|
||||
class ValidationResultTest extends SapphireTest
|
||||
{
|
||||
public function testSerialise() {
|
||||
$result = new ValidationResult();
|
||||
$result->addError("Error", ValidationResult::TYPE_ERROR, null, ValidationResult::CAST_HTML);
|
||||
$result->addMessage("Message", ValidationResult::TYPE_GOOD);
|
||||
$serialised = serialize($result);
|
||||
|
||||
/** @var ValidationResult $result2 */
|
||||
$result2 = unserialize($serialised);
|
||||
$this->assertEquals([
|
||||
[
|
||||
'message' => 'Error',
|
||||
'fieldName' => null,
|
||||
'messageCast' => ValidationResult::CAST_HTML,
|
||||
'messageType' => ValidationResult::TYPE_ERROR,
|
||||
],
|
||||
[
|
||||
'message' => 'Message',
|
||||
'fieldName' => null,
|
||||
'messageCast' => ValidationResult::CAST_TEXT,
|
||||
'messageType' => ValidationResult::TYPE_GOOD,
|
||||
]
|
||||
], $result2->getMessages());
|
||||
$this->assertFalse($result2->isValid());
|
||||
}
|
||||
}
|
@ -2,12 +2,13 @@
|
||||
|
||||
namespace SilverStripe\Security\Tests;
|
||||
|
||||
use SilverStripe\Control\Controller;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\Security\Group;
|
||||
use SilverStripe\Dev\FunctionalTest;
|
||||
use SilverStripe\Control\Session;
|
||||
use SilverStripe\Security\Permission;
|
||||
use SilverStripe\Security\Tests\GroupTest\TestMember;
|
||||
use ReflectionMethod;
|
||||
|
||||
class GroupTest extends FunctionalTest {
|
||||
|
||||
@ -35,16 +36,17 @@ class GroupTest extends FunctionalTest {
|
||||
$this->assertNull($g3->Code, 'Default title doesnt trigger attribute setting');
|
||||
}
|
||||
|
||||
/**
|
||||
* @skipUpgrade
|
||||
*/
|
||||
public function testMemberGroupRelationForm() {
|
||||
Session::set('loggedInAs', $this->idFromFixture(TestMember::class, 'admin'));
|
||||
|
||||
$adminGroup = $this->objFromFixture(Group::class, 'admingroup');
|
||||
$parentGroup = $this->objFromFixture(Group::class, 'parentgroup');
|
||||
$childGroup = $this->objFromFixture(Group::class, 'childgroup');
|
||||
|
||||
// Test single group relation through checkboxsetfield
|
||||
/** @skipUpgrade */
|
||||
$form = new GroupTest\MemberForm($this, 'Form');
|
||||
$form = new GroupTest\MemberForm(new Controller(), 'Form');
|
||||
$member = $this->objFromFixture(TestMember::class, 'admin');
|
||||
$form->loadDataFrom($member);
|
||||
$checkboxSetField = $form->Fields()->fieldByName('Groups');
|
||||
@ -75,9 +77,6 @@ class GroupTest extends FunctionalTest {
|
||||
"Removing a previously added toplevel group works"
|
||||
);
|
||||
$this->assertContains($adminGroup->ID, $updatedGroups->column('ID'));
|
||||
|
||||
// Test adding child group
|
||||
|
||||
}
|
||||
|
||||
public function testUnsavedGroups() {
|
||||
@ -124,55 +123,47 @@ class GroupTest extends FunctionalTest {
|
||||
$childGroupID = $this->idFromFixture(Group::class, 'childgroup');
|
||||
$group->delete();
|
||||
|
||||
$this->assertEquals(0, DataObject::get(Group::class, "\"ID\" = {$groupID}")->Count(),
|
||||
$this->assertEquals(0, DataObject::get(Group::class, "\"ID\" = {$groupID}")->count(),
|
||||
'Group is removed');
|
||||
$this->assertEquals(0, DataObject::get('SilverStripe\\Security\\Permission', "\"GroupID\" = {$groupID}")->Count(),
|
||||
$this->assertEquals(0, DataObject::get(Permission::class, "\"GroupID\" = {$groupID}")->count(),
|
||||
'Permissions removed along with the group');
|
||||
$this->assertEquals(0, DataObject::get(Group::class, "\"ParentID\" = {$groupID}")->Count(),
|
||||
$this->assertEquals(0, DataObject::get(Group::class, "\"ParentID\" = {$groupID}")->count(),
|
||||
'Child groups are removed');
|
||||
$this->assertEquals(0, DataObject::get(Group::class, "\"ParentID\" = {$childGroupID}")->Count(),
|
||||
$this->assertEquals(0, DataObject::get(Group::class, "\"ParentID\" = {$childGroupID}")->count(),
|
||||
'Grandchild groups are removed');
|
||||
}
|
||||
|
||||
public function testValidatesPrivilegeLevelOfParent() {
|
||||
$nonAdminUser = $this->objFromFixture(TestMember::class, 'childgroupuser');
|
||||
$adminUser = $this->objFromFixture(TestMember::class, 'admin');
|
||||
$nonAdminGroup = $this->objFromFixture(Group::class, 'childgroup');
|
||||
$adminGroup = $this->objFromFixture(Group::class, 'admingroup');
|
||||
|
||||
$nonAdminValidateMethod = new ReflectionMethod($nonAdminGroup, 'validate');
|
||||
$nonAdminValidateMethod->setAccessible(true);
|
||||
|
||||
// Making admin group parent of a non-admin group, effectively expanding is privileges
|
||||
$nonAdminGroup->ParentID = $adminGroup->ID;
|
||||
|
||||
$this->logInWithPermission('APPLY_ROLES');
|
||||
$result = $nonAdminValidateMethod->invoke($nonAdminGroup);
|
||||
$result = $nonAdminGroup->validate();
|
||||
$this->assertFalse(
|
||||
$result->valid(),
|
||||
$result->isValid(),
|
||||
'Members with only APPLY_ROLES can\'t assign parent groups with direct ADMIN permissions'
|
||||
);
|
||||
|
||||
$this->logInWithPermission('ADMIN');
|
||||
$result = $nonAdminValidateMethod->invoke($nonAdminGroup);
|
||||
$result = $nonAdminGroup->validate();
|
||||
$this->assertTrue(
|
||||
$result->valid(),
|
||||
$result->isValid(),
|
||||
'Members with ADMIN can assign parent groups with direct ADMIN permissions'
|
||||
);
|
||||
$nonAdminGroup->write();
|
||||
$newlyAdminGroup = $nonAdminGroup;
|
||||
|
||||
$this->logInWithPermission('ADMIN');
|
||||
$inheritedAdminGroup = $this->objFromFixture(Group::class, 'group1');
|
||||
$inheritedAdminMethod = new ReflectionMethod($inheritedAdminGroup, 'validate');
|
||||
$inheritedAdminMethod->setAccessible(true);
|
||||
$inheritedAdminGroup->ParentID = $adminGroup->ID;
|
||||
$inheritedAdminGroup->write(); // only works with ADMIN login
|
||||
|
||||
$this->logInWithPermission('APPLY_ROLES');
|
||||
$result = $inheritedAdminMethod->invoke($nonAdminGroup);
|
||||
$result = $nonAdminGroup->validate();
|
||||
$this->assertFalse(
|
||||
$result->valid(),
|
||||
$result->isValid(),
|
||||
'Members with only APPLY_ROLES can\'t assign parent groups with inherited ADMIN permission'
|
||||
);
|
||||
}
|
||||
|
@ -4,6 +4,7 @@ namespace SilverStripe\Security\Tests;
|
||||
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\ORM\FieldType\DBDatetime;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\Security\PasswordEncryptor;
|
||||
use SilverStripe\Security\PasswordEncryptor_PHPHash;
|
||||
use SilverStripe\Security\Security;
|
||||
@ -53,10 +54,11 @@ class MemberAuthenticatorTest extends SapphireTest {
|
||||
);
|
||||
MemberAuthenticator::authenticate($data);
|
||||
|
||||
$member = DataObject::get_by_id(Member::class, $member->ID);
|
||||
/** @var Member $member */
|
||||
$member = DataObject::get_by_id(Member::class, $member->ID);
|
||||
$this->assertEquals($member->PasswordEncryption, "sha1_v2.4");
|
||||
$result = $member->checkPassword('mypassword');
|
||||
$this->assertTrue($result->valid());
|
||||
$this->assertTrue($result->isValid());
|
||||
}
|
||||
|
||||
public function testNoLegacyPasswordHashMigrationOnIncompatibleAlgorithm() {
|
||||
@ -82,7 +84,7 @@ class MemberAuthenticatorTest extends SapphireTest {
|
||||
$member = DataObject::get_by_id(Member::class, $member->ID);
|
||||
$this->assertEquals($member->PasswordEncryption, "crc32");
|
||||
$result = $member->checkPassword('mypassword');
|
||||
$this->assertTrue($result->valid());
|
||||
$this->assertTrue($result->isValid());
|
||||
}
|
||||
|
||||
public function testCustomIdentifierField(){
|
||||
@ -139,9 +141,10 @@ class MemberAuthenticatorTest extends SapphireTest {
|
||||
'tempid' => $tempID,
|
||||
'Password' => 'mypassword'
|
||||
), $form);
|
||||
$form->restoreFormState();
|
||||
$this->assertNotEmpty($result);
|
||||
$this->assertEquals($result->ID, $member->ID);
|
||||
$this->assertEmpty($form->Message());
|
||||
$this->assertEmpty($form->getMessage());
|
||||
|
||||
// Test incorrect login
|
||||
$form->clearMessage();
|
||||
@ -149,9 +152,11 @@ class MemberAuthenticatorTest extends SapphireTest {
|
||||
'tempid' => $tempID,
|
||||
'Password' => 'notmypassword'
|
||||
), $form);
|
||||
$form->restoreFormState();
|
||||
$this->assertEmpty($result);
|
||||
$this->assertEquals('The provided details don't seem to be correct. Please try again.', $form->Message());
|
||||
$this->assertEquals('bad', $form->MessageType());
|
||||
$this->assertEquals(_t('Member.ERRORWRONGCRED'), $form->getMessage());
|
||||
$this->assertEquals(ValidationResult::TYPE_ERROR, $form->getMessageType());
|
||||
$this->assertEquals(ValidationResult::CAST_TEXT, $form->getMessageCast());
|
||||
}
|
||||
|
||||
/**
|
||||
@ -168,9 +173,10 @@ class MemberAuthenticatorTest extends SapphireTest {
|
||||
'Email' => 'admin',
|
||||
'Password' => 'password'
|
||||
), $form);
|
||||
$form->restoreFormState();
|
||||
$this->assertNotEmpty($result);
|
||||
$this->assertEquals($result->Email, Security::default_admin_username());
|
||||
$this->assertEmpty($form->Message());
|
||||
$this->assertEmpty($form->getMessage());
|
||||
|
||||
// Test incorrect login
|
||||
$form->clearMessage();
|
||||
@ -178,9 +184,14 @@ class MemberAuthenticatorTest extends SapphireTest {
|
||||
'Email' => 'admin',
|
||||
'Password' => 'notmypassword'
|
||||
), $form);
|
||||
$form->restoreFormState();
|
||||
$this->assertEmpty($result);
|
||||
$this->assertEquals('The provided details don't seem to be correct. Please try again.', $form->Message());
|
||||
$this->assertEquals('bad', $form->MessageType());
|
||||
$this->assertEquals(
|
||||
'The provided details don\'t seem to be correct. Please try again.',
|
||||
$form->getMessage()
|
||||
);
|
||||
$this->assertEquals(ValidationResult::TYPE_ERROR, $form->getMessageType());
|
||||
$this->assertEquals(ValidationResult::CAST_TEXT, $form->getMessageCast());
|
||||
}
|
||||
|
||||
public function testDefaultAdminLockOut()
|
||||
|
@ -87,6 +87,6 @@ class MemberCsvBulkLoaderTest extends SapphireTest {
|
||||
// TODO Direct getter doesn't work, wtf!
|
||||
$this->assertEquals(Security::config()->password_encryption_algorithm, $member->getField('PasswordEncryption'));
|
||||
$result = $member->checkPassword('mypassword');
|
||||
$this->assertTrue($result->valid());
|
||||
$this->assertTrue($result->isValid());
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
namespace SilverStripe\Security\Tests;
|
||||
|
||||
use SilverStripe\Core\Convert;
|
||||
use SilverStripe\Core\Object;
|
||||
use SilverStripe\Dev\FunctionalTest;
|
||||
use SilverStripe\Control\Cookie;
|
||||
@ -131,7 +132,7 @@ class MemberTest extends FunctionalTest {
|
||||
'sha1_v2.4'
|
||||
);
|
||||
$result = $member->checkPassword('mynewpassword');
|
||||
$this->assertTrue($result->valid());
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
Security::config()->password_encryption_algorithm = $origAlgo;
|
||||
}
|
||||
@ -150,7 +151,7 @@ class MemberTest extends FunctionalTest {
|
||||
'sha1_v2.4'
|
||||
);
|
||||
$result = $member->checkPassword('');
|
||||
$this->assertTrue($result->valid());
|
||||
$this->assertTrue($result->isValid());
|
||||
}
|
||||
|
||||
public function testSetPassword() {
|
||||
@ -158,7 +159,7 @@ class MemberTest extends FunctionalTest {
|
||||
$member->Password = "test1";
|
||||
$member->write();
|
||||
$result = $member->checkPassword('test1');
|
||||
$this->assertTrue($result->valid());
|
||||
$this->assertTrue($result->isValid());
|
||||
}
|
||||
|
||||
/**
|
||||
@ -212,7 +213,7 @@ class MemberTest extends FunctionalTest {
|
||||
$member = $this->objFromFixture(Member::class, 'test');
|
||||
$this->assertNotNull($member);
|
||||
$valid = $member->changePassword('32asDF##$$%%');
|
||||
$this->assertTrue($valid->valid());
|
||||
$this->assertTrue($valid->isValid());
|
||||
|
||||
$this->assertEmailSent('testuser@example.com', null, 'Your password has been changed',
|
||||
'/testuser@example\.com/');
|
||||
@ -250,80 +251,81 @@ class MemberTest extends FunctionalTest {
|
||||
* - at least 7 characters long
|
||||
*/
|
||||
public function testValidatePassword() {
|
||||
$member = $this->objFromFixture(Member::class, 'test');
|
||||
/** @var Member $member */
|
||||
$member = $this->objFromFixture(Member::class, 'test');
|
||||
$this->assertNotNull($member);
|
||||
|
||||
Member::set_password_validator(new MemberTest\TestPasswordValidator());
|
||||
|
||||
// BAD PASSWORDS
|
||||
|
||||
$valid = $member->changePassword('shorty');
|
||||
$this->assertFalse($valid->valid());
|
||||
$this->assertContains("TOO_SHORT", $valid->codeList());
|
||||
$result = $member->changePassword('shorty');
|
||||
$this->assertFalse($result->isValid());
|
||||
$this->assertArrayHasKey("TOO_SHORT", $result->getMessages());
|
||||
|
||||
$valid = $member->changePassword('longone');
|
||||
$this->assertNotContains("TOO_SHORT", $valid->codeList());
|
||||
$this->assertContains("LOW_CHARACTER_STRENGTH", $valid->codeList());
|
||||
$this->assertFalse($valid->valid());
|
||||
$result = $member->changePassword('longone');
|
||||
$this->assertArrayNotHasKey("TOO_SHORT", $result->getMessages());
|
||||
$this->assertArrayHasKey("LOW_CHARACTER_STRENGTH", $result->getMessages());
|
||||
$this->assertFalse($result->isValid());
|
||||
|
||||
$valid = $member->changePassword('w1thNumb3rs');
|
||||
$this->assertNotContains("LOW_CHARACTER_STRENGTH", $valid->codeList());
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('w1thNumb3rs');
|
||||
$this->assertArrayNotHasKey("LOW_CHARACTER_STRENGTH", $result->getMessages());
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
// Clear out the MemberPassword table to ensure that the system functions properly in that situation
|
||||
DB::query("DELETE FROM \"MemberPassword\"");
|
||||
|
||||
// GOOD PASSWORDS
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls');
|
||||
$this->assertNotContains("LOW_CHARACTER_STRENGTH", $valid->codeList());
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('withSym###Ls');
|
||||
$this->assertArrayNotHasKey("LOW_CHARACTER_STRENGTH", $result->getMessages());
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls2');
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('withSym###Ls2');
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls3');
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('withSym###Ls3');
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls4');
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('withSym###Ls4');
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls5');
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('withSym###Ls5');
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls6');
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('withSym###Ls6');
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls7');
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('withSym###Ls7');
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
// CAN'T USE PASSWORDS 2-7, but I can use pasword 1
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls2');
|
||||
$this->assertFalse($valid->valid());
|
||||
$this->assertContains("PREVIOUS_PASSWORD", $valid->codeList());
|
||||
$result = $member->changePassword('withSym###Ls2');
|
||||
$this->assertFalse($result->isValid());
|
||||
$this->assertArrayHasKey("PREVIOUS_PASSWORD", $result->getMessages());
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls5');
|
||||
$this->assertFalse($valid->valid());
|
||||
$this->assertContains("PREVIOUS_PASSWORD", $valid->codeList());
|
||||
$result = $member->changePassword('withSym###Ls5');
|
||||
$this->assertFalse($result->isValid());
|
||||
$this->assertArrayHasKey("PREVIOUS_PASSWORD", $result->getMessages());
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls7');
|
||||
$this->assertFalse($valid->valid());
|
||||
$this->assertContains("PREVIOUS_PASSWORD", $valid->codeList());
|
||||
$result = $member->changePassword('withSym###Ls7');
|
||||
$this->assertFalse($result->isValid());
|
||||
$this->assertArrayHasKey("PREVIOUS_PASSWORD", $result->getMessages());
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls');
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('withSym###Ls');
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
// HAVING DONE THAT, PASSWORD 2 is now available from the list
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls2');
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('withSym###Ls2');
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls3');
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('withSym###Ls3');
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
$valid = $member->changePassword('withSym###Ls4');
|
||||
$this->assertTrue($valid->valid());
|
||||
$result = $member->changePassword('withSym###Ls4');
|
||||
$this->assertTrue($result->isValid());
|
||||
|
||||
Member::set_password_validator(null);
|
||||
}
|
||||
@ -337,14 +339,14 @@ class MemberTest extends FunctionalTest {
|
||||
$member = $this->objFromFixture(Member::class, 'test');
|
||||
$this->assertNotNull($member);
|
||||
$valid = $member->changePassword("Xx?1234234");
|
||||
$this->assertTrue($valid->valid());
|
||||
$this->assertTrue($valid->isValid());
|
||||
|
||||
$expiryDate = date('Y-m-d', time() + 90*86400);
|
||||
$this->assertEquals($expiryDate, $member->PasswordExpiry);
|
||||
|
||||
Member::config()->password_expiry_days = null;
|
||||
$valid = $member->changePassword("Xx?1234235");
|
||||
$this->assertTrue($valid->valid());
|
||||
$this->assertTrue($valid->isValid());
|
||||
|
||||
$this->assertNull($member->PasswordExpiry);
|
||||
}
|
||||
@ -870,11 +872,11 @@ class MemberTest extends FunctionalTest {
|
||||
'alc_device' => $firstHash->DeviceID
|
||||
)
|
||||
);
|
||||
$message = _t(
|
||||
$message = Convert::raw2xml(_t(
|
||||
'Member.LOGGEDINAS',
|
||||
"You're logged in as {name}.",
|
||||
array('name' => $m1->FirstName)
|
||||
);
|
||||
));
|
||||
$this->assertContains($message, $response->getBody());
|
||||
|
||||
$this->session()->inst_set('loggedInAs', null);
|
||||
@ -924,9 +926,9 @@ class MemberTest extends FunctionalTest {
|
||||
}
|
||||
|
||||
public function testExpiredRememberMeHashAutologin() {
|
||||
/** @var Member $m1 */
|
||||
$m1 = $this->objFromFixture(Member::class, 'noexpiry');
|
||||
|
||||
$m1->login(true);
|
||||
$m1->logIn(true);
|
||||
$firstHash = RememberLoginHash::get()->filter('MemberID', $m1->ID)->first();
|
||||
$this->assertNotNull($firstHash);
|
||||
|
||||
@ -936,7 +938,7 @@ class MemberTest extends FunctionalTest {
|
||||
$firstHash->ExpiryDate = '2000-01-01 00:00:00';
|
||||
$firstHash->write();
|
||||
|
||||
DBDateTime::set_mock_now('1999-12-31 23:59:59');
|
||||
DBDatetime::set_mock_now('1999-12-31 23:59:59');
|
||||
|
||||
$response = $this->get(
|
||||
'Security/login',
|
||||
@ -947,11 +949,11 @@ class MemberTest extends FunctionalTest {
|
||||
'alc_device' => $firstHash->DeviceID
|
||||
)
|
||||
);
|
||||
$message = _t(
|
||||
$message = Convert::raw2xml(_t(
|
||||
'Member.LOGGEDINAS',
|
||||
"You're logged in as {name}.",
|
||||
array('name' => $m1->FirstName)
|
||||
);
|
||||
));
|
||||
$this->assertContains($message, $response->getBody());
|
||||
|
||||
$this->session()->inst_set('loggedInAs', null);
|
||||
@ -1017,11 +1019,11 @@ class MemberTest extends FunctionalTest {
|
||||
'alc_device' => $firstHash->DeviceID
|
||||
)
|
||||
);
|
||||
$message = _t(
|
||||
$message = Convert::raw2xml(_t(
|
||||
'Member.LOGGEDINAS',
|
||||
"You're logged in as {name}.",
|
||||
array('name' => $m1->FirstName)
|
||||
);
|
||||
));
|
||||
$this->assertContains($message, $response->getBody());
|
||||
|
||||
$this->session()->inst_set('loggedInAs', null);
|
||||
|
@ -11,10 +11,10 @@ class PasswordValidatorTest extends SapphireTest {
|
||||
public function testValidate() {
|
||||
$v = new PasswordValidator();
|
||||
$r = $v->validate('', new Member());
|
||||
$this->assertTrue($r->valid(), 'Empty password is valid by default');
|
||||
$this->assertTrue($r->isValid(), 'Empty password is valid by default');
|
||||
|
||||
$r = $v->validate('mypassword', new Member());
|
||||
$this->assertTrue($r->valid(), 'Non-Empty password is valid by default');
|
||||
$this->assertTrue($r->isValid(), 'Non-Empty password is valid by default');
|
||||
}
|
||||
|
||||
public function testValidateMinLength() {
|
||||
@ -22,11 +22,11 @@ class PasswordValidatorTest extends SapphireTest {
|
||||
|
||||
$v->minLength(4);
|
||||
$r = $v->validate('123', new Member());
|
||||
$this->assertFalse($r->valid(), 'Password too short');
|
||||
$this->assertFalse($r->isValid(), 'Password too short');
|
||||
|
||||
$v->minLength(4);
|
||||
$r = $v->validate('1234', new Member());
|
||||
$this->assertTrue($r->valid(), 'Password long enough');
|
||||
$this->assertTrue($r->isValid(), 'Password long enough');
|
||||
}
|
||||
|
||||
public function testValidateMinScore() {
|
||||
@ -34,10 +34,10 @@ class PasswordValidatorTest extends SapphireTest {
|
||||
$v->characterStrength(3, array("lowercase", "uppercase", "digits", "punctuation"));
|
||||
|
||||
$r = $v->validate('aA', new Member());
|
||||
$this->assertFalse($r->valid(), 'Passing too few tests');
|
||||
$this->assertFalse($r->isValid(), 'Passing too few tests');
|
||||
|
||||
$r = $v->validate('aA1', new Member());
|
||||
$this->assertTrue($r->valid(), 'Passing enough tests');
|
||||
$this->assertTrue($r->isValid(), 'Passing enough tests');
|
||||
}
|
||||
|
||||
public function testHistoricalPasswordCount() {
|
||||
|
@ -6,7 +6,6 @@ use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\Security\PermissionRole;
|
||||
use SilverStripe\Security\PermissionRoleCode;
|
||||
use SilverStripe\Dev\FunctionalTest;
|
||||
use ReflectionMethod;
|
||||
|
||||
class PermissionRoleTest extends FunctionalTest {
|
||||
protected static $fixture_file = 'PermissionRoleTest.yml';
|
||||
@ -24,31 +23,26 @@ class PermissionRoleTest extends FunctionalTest {
|
||||
|
||||
public function testValidatesPrivilegedPermissions() {
|
||||
$nonAdminCode = new PermissionRoleCode(array('Code' => 'CMS_ACCESS_CMSMain'));
|
||||
$nonAdminValidateMethod = new ReflectionMethod($nonAdminCode, 'validate');
|
||||
$nonAdminValidateMethod->setAccessible(true);
|
||||
|
||||
$adminCode = new PermissionRoleCode(array('Code' => 'ADMIN'));
|
||||
$adminValidateMethod = new ReflectionMethod($adminCode, 'validate');
|
||||
$adminValidateMethod->setAccessible(true);
|
||||
|
||||
$this->logInWithPermission('APPLY_ROLES');
|
||||
$result = $nonAdminValidateMethod->invoke($nonAdminCode);
|
||||
$result = $nonAdminCode->validate();
|
||||
$this->assertTrue(
|
||||
$result->valid(),
|
||||
$result->isValid(),
|
||||
'Members with only APPLY_ROLES can create non-privileged permission role codes'
|
||||
);
|
||||
|
||||
$this->logInWithPermission('APPLY_ROLES');
|
||||
$result = $adminValidateMethod->invoke($adminCode);
|
||||
$result = $adminCode->validate();
|
||||
$this->assertFalse(
|
||||
$result->valid(),
|
||||
$result->isValid(),
|
||||
'Members with only APPLY_ROLES can\'t create privileged permission role codes'
|
||||
);
|
||||
|
||||
$this->logInWithPermission('ADMIN');
|
||||
$result = $adminValidateMethod->invoke($adminCode);
|
||||
$result = $adminCode->validate();
|
||||
$this->assertTrue(
|
||||
$result->valid(),
|
||||
$result->isValid(),
|
||||
'Members with ADMIN can create privileged permission role codes'
|
||||
);
|
||||
}
|
||||
|
@ -6,6 +6,7 @@ use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\ORM\FieldType\DBDatetime;
|
||||
use SilverStripe\ORM\FieldType\DBClassName;
|
||||
use SilverStripe\ORM\DB;
|
||||
use SilverStripe\ORM\ValidationResult;
|
||||
use SilverStripe\Security\Authenticator;
|
||||
use SilverStripe\Security\LoginAttempt;
|
||||
use SilverStripe\Security\Member;
|
||||
@ -444,7 +445,10 @@ class SecurityTest extends FunctionalTest {
|
||||
$member->LockedOutUntil,
|
||||
'User does not have a lockout time set if under threshold for failed attempts'
|
||||
);
|
||||
$this->assertContains($this->loginErrorMessage(), Convert::raw2xml(_t('Member.ERRORWRONGCRED')));
|
||||
$this->assertHasMessage(_t(
|
||||
'Member.ERRORWRONGCRED',
|
||||
'The provided details don\'t seem to be correct. Please try again.'
|
||||
));
|
||||
} else {
|
||||
// Fuzzy matching for time to avoid side effects from slow running tests
|
||||
$this->assertGreaterThan(
|
||||
@ -462,7 +466,7 @@ class SecurityTest extends FunctionalTest {
|
||||
array('count' => Member::config()->lock_out_delay_mins)
|
||||
);
|
||||
if($i > Member::config()->lock_out_after_incorrect_logins) {
|
||||
$this->assertContains($msg, $this->loginErrorMessage());
|
||||
$this->assertHasMessage($msg);
|
||||
}
|
||||
}
|
||||
|
||||
@ -491,9 +495,8 @@ class SecurityTest extends FunctionalTest {
|
||||
$this->doTestLoginForm('testuser@example.com' , 'incorrectpassword');
|
||||
}
|
||||
$this->assertNull($this->session()->inst_get('loggedInAs'));
|
||||
$this->assertContains(
|
||||
$this->loginErrorMessage(),
|
||||
Convert::raw2xml(_t('Member.ERRORWRONGCRED')),
|
||||
$this->assertHasMessage(
|
||||
_t('Member.ERRORWRONGCRED','The provided details don\'t seem to be correct. Please try again.'),
|
||||
'The user can retry with a wrong password after the lockout expires'
|
||||
);
|
||||
|
||||
@ -560,9 +563,7 @@ class SecurityTest extends FunctionalTest {
|
||||
$this->assertTrue(is_object($attempt));
|
||||
$this->assertEquals($attempt->Status, 'Failure');
|
||||
$this->assertEquals($attempt->Email, 'wronguser@silverstripe.com');
|
||||
$this->assertNotNull(
|
||||
$this->loginErrorMessage(), 'An invalid email returns a message.'
|
||||
);
|
||||
$this->assertNotEmpty($this->getValidationResult()->getMessages(), 'An invalid email returns a message.');
|
||||
}
|
||||
|
||||
public function testSuccessfulLoginAttempts() {
|
||||
@ -640,11 +641,35 @@ class SecurityTest extends FunctionalTest {
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the error message on the login form
|
||||
*/
|
||||
public function loginErrorMessage() {
|
||||
return $this->session()->inst_get('FormInfo.MemberLoginForm_LoginForm.formError.message');
|
||||
}
|
||||
/**
|
||||
* Assert this message is in the current login form errors
|
||||
*
|
||||
* @param string $expected
|
||||
* @param string $errorMessage
|
||||
*/
|
||||
protected function assertHasMessage($expected, $errorMessage = null) {
|
||||
$messages = [];
|
||||
$result = $this->getValidationResult();
|
||||
if ($result) {
|
||||
foreach($result->getMessages() as $message) {
|
||||
$messages[] = $message['message'];
|
||||
}
|
||||
}
|
||||
|
||||
$this->assertContains($expected, $messages, $errorMessage);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get validation result from last login form submission
|
||||
*
|
||||
* @return ValidationResult
|
||||
*/
|
||||
protected function getValidationResult() {
|
||||
$result = $this->session()->inst_get('FormInfo.MemberLoginForm_LoginForm.result');
|
||||
if ($result) {
|
||||
/** @var ValidationResult $resultObj */
|
||||
return unserialize($result);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user