alchemymvc 1.3.22 → 1.4.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (155) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +3 -3
  3. package/lib/app/behaviour/publishable_behaviour.js +5 -5
  4. package/lib/app/behaviour/revision_behaviour.js +96 -59
  5. package/lib/app/behaviour/sluggable_behaviour.js +14 -14
  6. package/lib/app/conduit/electron_conduit.js +9 -9
  7. package/lib/app/conduit/http_conduit.js +13 -13
  8. package/lib/app/conduit/loopback_conduit.js +15 -15
  9. package/lib/app/conduit/socket_conduit.js +43 -43
  10. package/lib/app/config/routes.js +26 -0
  11. package/lib/app/controller/00-default_app_controller.js +21 -0
  12. package/lib/app/controller/alchemy_info_controller.js +12 -12
  13. package/lib/app/datasource/mongo_datasource.js +27 -18
  14. package/lib/app/element/00-default_app_element.js +19 -0
  15. package/lib/app/element/time_ago.js +5 -5
  16. package/lib/app/helper/00-default_app_helper.js +11 -0
  17. package/lib/app/helper/alchemy_helper.js +22 -22
  18. package/lib/app/helper/backed_map.js +1 -1
  19. package/lib/app/helper/breadcrumb.js +10 -10
  20. package/lib/app/helper/client_collection.js +3 -3
  21. package/lib/app/helper/cron.js +29 -29
  22. package/lib/app/helper/enum_values.js +6 -6
  23. package/lib/app/helper/pagination_helper.js +36 -36
  24. package/lib/app/helper/router_helper.js +35 -35
  25. package/lib/app/helper/socket_helper.js +57 -57
  26. package/lib/app/helper/syncable.js +62 -62
  27. package/lib/app/helper_component/paginate_component.js +9 -9
  28. package/lib/app/helper_controller/component.js +1 -1
  29. package/lib/app/helper_controller/conduit.js +31 -31
  30. package/lib/app/helper_controller/controller.js +54 -39
  31. package/lib/app/helper_datasource/00-nosql_datasource.js +624 -70
  32. package/lib/app/helper_datasource/05-fallback_datasource.js +10 -10
  33. package/lib/app/helper_datasource/idb_datasource.js +6 -6
  34. package/lib/app/helper_datasource/indexed_db.js +22 -22
  35. package/lib/app/helper_datasource/remote_datasource.js +5 -5
  36. package/lib/app/helper_error/http_error.js +4 -4
  37. package/lib/app/helper_error/model_error.js +2 -2
  38. package/lib/app/helper_error/validation_error.js +12 -12
  39. package/lib/app/helper_field/00-objectid_field.js +7 -7
  40. package/lib/app/helper_field/05-string_field.js +16 -12
  41. package/lib/app/helper_field/06-text_field.js +2 -4
  42. package/lib/app/helper_field/10-number_field.js +9 -12
  43. package/lib/app/helper_field/11-date_field.js +15 -15
  44. package/lib/app/helper_field/15-local_temporal_field.js +10 -10
  45. package/lib/app/helper_field/20-decimal_field.js +8 -9
  46. package/lib/app/helper_field/belongsto_field.js +1 -1
  47. package/lib/app/helper_field/big_int_field.js +8 -8
  48. package/lib/app/helper_field/boolean_field.js +9 -11
  49. package/lib/app/helper_field/datetime_field.js +3 -3
  50. package/lib/app/helper_field/enum_field.js +13 -8
  51. package/lib/app/helper_field/fixed_decimal_field.js +6 -7
  52. package/lib/app/helper_field/geopoint_field.js +9 -10
  53. package/lib/app/helper_field/habtm_field.js +3 -3
  54. package/lib/app/helper_field/hasoneparent_field.js +1 -1
  55. package/lib/app/helper_field/html_field.js +2 -4
  56. package/lib/app/helper_field/integer_field.js +8 -11
  57. package/lib/app/helper_field/local_date_field.js +5 -5
  58. package/lib/app/helper_field/local_date_time_field.js +5 -5
  59. package/lib/app/helper_field/local_time_field.js +5 -5
  60. package/lib/app/helper_field/mixed_field.js +5 -5
  61. package/lib/app/helper_field/object_field.js +6 -6
  62. package/lib/app/helper_field/password_field.js +3 -3
  63. package/lib/app/helper_field/regexp_field.js +7 -9
  64. package/lib/app/helper_field/schema_field.js +91 -88
  65. package/lib/app/helper_field/settings_field.js +92 -0
  66. package/lib/app/helper_field/time_field.js +6 -6
  67. package/lib/app/helper_field/url_field.js +2 -4
  68. package/lib/app/helper_model/00-base_criteria.js +662 -0
  69. package/lib/app/helper_model/05-criteria_expressions.js +605 -0
  70. package/lib/app/helper_model/10-model_criteria.js +1182 -0
  71. package/lib/app/helper_model/data_provider.js +2 -2
  72. package/lib/app/helper_model/document.js +103 -92
  73. package/lib/app/helper_model/document_list.js +14 -14
  74. package/lib/app/helper_model/field_config.js +11 -11
  75. package/lib/app/helper_model/field_set.js +17 -17
  76. package/lib/app/helper_model/model.js +201 -123
  77. package/lib/app/helper_model/remote_data_provider.js +2 -2
  78. package/lib/app/helper_validator/00_validator.js +16 -16
  79. package/lib/app/helper_validator/not_empty_validator.js +9 -9
  80. package/lib/app/model/00-default_app_model.js +18 -0
  81. package/lib/app/model/05-system_model.js +27 -0
  82. package/lib/app/model/{alchemy_migration_model.js → system_migration_model.js} +4 -4
  83. package/lib/app/model/system_setting_model.js +154 -0
  84. package/lib/app/model/{alchemy_task_history_model.js → system_task_history_model.js} +7 -7
  85. package/lib/app/model/{alchemy_task_model.js → system_task_model.js} +11 -11
  86. package/lib/bootstrap.js +22 -312
  87. package/lib/class/accumulator.js +5 -5
  88. package/lib/class/behaviour.js +5 -5
  89. package/lib/class/component.js +3 -3
  90. package/lib/class/conduit.js +152 -150
  91. package/lib/class/controller.js +42 -42
  92. package/lib/class/datasource.js +74 -79
  93. package/lib/class/document.js +74 -95
  94. package/lib/class/document_list.js +5 -5
  95. package/lib/class/element.js +17 -17
  96. package/lib/class/error.js +3 -3
  97. package/lib/class/field.js +169 -91
  98. package/lib/class/field_value.js +6 -6
  99. package/lib/class/helper.js +3 -3
  100. package/lib/class/inode.js +17 -17
  101. package/lib/class/inode_dir.js +12 -12
  102. package/lib/class/inode_file.js +26 -26
  103. package/lib/class/inode_list.js +4 -4
  104. package/lib/class/migration.js +4 -4
  105. package/lib/class/model.js +146 -165
  106. package/lib/class/path_definition.js +22 -22
  107. package/lib/class/path_evaluator.js +5 -5
  108. package/lib/class/path_param_definition.js +7 -7
  109. package/lib/class/plugin.js +312 -0
  110. package/lib/class/postponement.js +29 -29
  111. package/lib/class/reciprocal.js +8 -8
  112. package/lib/class/route.js +33 -33
  113. package/lib/class/router.js +73 -73
  114. package/lib/class/schema.js +21 -21
  115. package/lib/class/schema_client.js +105 -82
  116. package/lib/class/session.js +63 -29
  117. package/lib/class/session_scene.js +4 -4
  118. package/lib/class/sitemap.js +16 -16
  119. package/lib/class/task.js +39 -39
  120. package/lib/class/task_service.js +43 -47
  121. package/lib/{init → core}/alchemy.js +411 -373
  122. package/lib/{init/functions.js → core/alchemy_functions.js} +113 -91
  123. package/lib/core/alchemy_load_functions.js +715 -0
  124. package/lib/core/base.js +50 -62
  125. package/lib/core/client_alchemy.js +144 -152
  126. package/lib/core/client_base.js +27 -50
  127. package/lib/core/discovery.js +16 -18
  128. package/lib/core/middleware.js +54 -43
  129. package/lib/core/{routing.js → prefix.js} +14 -16
  130. package/lib/core/setting.js +1684 -0
  131. package/lib/core/stage.js +758 -0
  132. package/lib/scripts/create_constants.js +119 -0
  133. package/lib/{init/languages.js → scripts/create_languages.js} +5 -5
  134. package/lib/scripts/create_settings.js +449 -0
  135. package/lib/scripts/create_shared_constants.js +95 -0
  136. package/lib/scripts/create_stages.js +55 -0
  137. package/lib/scripts/init_alchemy.js +51 -0
  138. package/lib/{init/requirements.js → scripts/preload_modules.js} +15 -2
  139. package/lib/scripts/setup_devwatch.js +238 -0
  140. package/lib/stages/00-load_core.js +342 -0
  141. package/lib/stages/05-load_app.js +57 -0
  142. package/lib/stages/10-datasource.js +61 -0
  143. package/lib/stages/15-tasks.js +27 -0
  144. package/lib/stages/20-settings.js +68 -0
  145. package/lib/stages/50-routes.js +218 -0
  146. package/lib/stages/90-server.js +347 -0
  147. package/package.json +5 -7
  148. package/lib/app/helper_model/criteria.js +0 -2294
  149. package/lib/app/helper_model/db_query.js +0 -1488
  150. package/lib/app/routes.js +0 -11
  151. package/lib/core/socket.js +0 -171
  152. package/lib/init/constants.js +0 -158
  153. package/lib/init/devwatch.js +0 -238
  154. package/lib/init/load_functions.js +0 -979
  155. package/lib/stages.js +0 -515
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013-2023 Jelle De Loecker <jelle@elevenways.be>
1
+ Copyright (c) 2013-2024 Jelle De Loecker <jelle@elevenways.be>
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
4
 
package/README.md CHANGED
@@ -3,9 +3,9 @@
3
3
  <b>Alchemy</b>
4
4
  </h1>
5
5
  <div align="center">
6
- <!-- CI - TravisCI -->
7
- <a href="https://travis-ci.org/11ways/alchemy">
8
- <img src="https://travis-ci.org/11ways/alchemy.svg?branch=master" alt="Mac/Linux Build Status" />
6
+ <!-- CI - Github Actions -->
7
+ <a href="https://github.com/11ways/alchemy/actions/workflows/unit_test.yaml">
8
+ <img src="https://github.com/11ways/alchemy/actions/workflows/unit_test.yaml/badge.svg" alt="Node.js CI (Linux, MacOS, Windows)" />
9
9
  </a>
10
10
 
11
11
  <!-- Coverage - Codecov -->
@@ -4,9 +4,9 @@
4
4
  * @constructor
5
5
  * @extends Alchemy.Behaviour
6
6
  *
7
- * @author Jelle De Loecker <jelle@develry.be>
8
- * @since 0.1.0
9
- * @version 0.3.0
7
+ * @author Jelle De Loecker <jelle@elevenways.be>
8
+ * @since 0.1.0
9
+ * @version 0.3.0
10
10
  */
11
11
  var Publish = Function.inherits('Alchemy.Behaviour', function PublishableBehaviour(model, options) {
12
12
  PublishableBehaviour.super.call(this, model, options);
@@ -15,7 +15,7 @@ var Publish = Function.inherits('Alchemy.Behaviour', function PublishableBehavio
15
15
  /**
16
16
  * Listen to attachments to schema's
17
17
  *
18
- * @author Jelle De Loecker <jelle@develry.be>
18
+ * @author Jelle De Loecker <jelle@elevenways.be>
19
19
  * @since 1.0.3
20
20
  * @version 1.0.3
21
21
  *
@@ -37,7 +37,7 @@ Publish.setStatic(function attached(schema, options) {
37
37
  /**
38
38
  * Set publish options
39
39
  *
40
- * @author Jelle De Loecker <jelle@develry.be>
40
+ * @author Jelle De Loecker <jelle@elevenways.be>
41
41
  * @since 0.1.0
42
42
  * @version 1.1.0
43
43
  *
@@ -8,30 +8,53 @@ var jsondiffpatch = alchemy.use('jsondiffpatch'),
8
8
  * @constructor
9
9
  * @extends Alchemy.Behaviour
10
10
  *
11
- * @author Jelle De Loecker <jelle@develry.be>
12
- * @since 0.0.1
13
- * @version 0.2.0
11
+ * @author Jelle De Loecker <jelle@elevenways.be>
12
+ * @since 0.0.1
13
+ * @version 0.2.0
14
14
  */
15
- var Revision = Function.inherits('Alchemy.Behaviour', function RevisionBehaviour(model, options) {
16
- Behaviour.call(this, model, options);
17
- });
15
+ const Revision = Function.inherits('Alchemy.Behaviour', 'RevisionBehaviour');
18
16
 
19
17
  /**
20
- * Get the Revision Model class for the attached model
18
+ * Get the Revision model class for the given main model
21
19
  *
22
- * @author Jelle De Loecker <jelle@develry.be>
23
- * @since 1.0.3
24
- * @version 1.1.0
20
+ * @author Jelle De Loecker <jelle@elevenways.be>
21
+ * @since 1.4.0
22
+ * @version 1.4.0
23
+ *
24
+ * @param {Schema} schema
25
+ * @param {Object} options
25
26
  */
26
- Revision.setProperty(function revision_model_class() {
27
+ Revision.setStatic(function getRevisionModel(model) {
28
+
29
+ if (typeof model == 'function') {
30
+ model = model.model_name;
31
+ }
32
+
33
+ if (typeof model == 'string') {
34
+ model = Model.get(model);
35
+ }
36
+
37
+ if (!model) {
38
+ throw new Error('Unable to add Revision behaviour to undefined model');
39
+ }
27
40
 
28
- var class_name = this.model.name + 'DataRevision';
41
+ let revision_model_name = model.model_name + 'DataRevision',
42
+ revision_model;
29
43
 
30
- if (Classes.Alchemy.Model[class_name]) {
31
- return Classes.Alchemy.Model[class_name];
44
+ try {
45
+ revision_model = Model.get(revision_model_name, false);
46
+ } catch (err) {
47
+ // Ignore
32
48
  }
33
49
 
34
- let model_class = Function.inherits('Alchemy.Model', Function.create(class_name, function DataRevision(options) {
50
+ if (revision_model) {
51
+ return revision_model;
52
+ }
53
+
54
+ let namespace = model.constructor.namespace,
55
+ class_name = model.name + 'DataRevision';
56
+
57
+ let model_class = Function.inherits('Alchemy.Model', namespace, Function.create(class_name, function DataRevision(options) {
35
58
  Model.call(this, options);
36
59
  }));
37
60
 
@@ -48,6 +71,12 @@ Revision.setProperty(function revision_model_class() {
48
71
  if (Classes.Alchemy.Model.User) {
49
72
  this.belongsTo('User');
50
73
  }
74
+
75
+ // Add an index on the record_id
76
+ this.addIndex('record_id', {
77
+ unique : false,
78
+ sparse : false,
79
+ });
51
80
  });
52
81
 
53
82
  // Force the constitutors to load now
@@ -56,10 +85,43 @@ Revision.setProperty(function revision_model_class() {
56
85
  return model_class;
57
86
  });
58
87
 
88
+ /**
89
+ * Listen to attachments to schema's
90
+ *
91
+ * @author Jelle De Loecker <jelle@elevenways.be>
92
+ * @since 1.0.3
93
+ * @version 1.4.0
94
+ *
95
+ * @param {Schema} schema
96
+ * @param {Object} options
97
+ */
98
+ Revision.setStatic(function attached(schema, new_options) {
99
+
100
+ const context = schema.model_class;
101
+
102
+ // Add the revision number to the main model
103
+ context.addField('__r', 'Number', {
104
+ title: 'Revision',
105
+ });
106
+
107
+ Revision.getRevisionModel(schema.model_class);
108
+ });
109
+
110
+ /**
111
+ * Get the Revision Model class for the attached model
112
+ *
113
+ * @author Jelle De Loecker <jelle@elevenways.be>
114
+ * @since 1.0.3
115
+ * @version 1.4.0
116
+ */
117
+ Revision.setProperty(function revision_model_class() {
118
+ return Revision.getRevisionModel(this.model);
119
+ });
120
+
59
121
  /**
60
122
  * Get the revision model for the attached model
61
123
  *
62
- * @author Jelle De Loecker <jelle@develry.be>
124
+ * @author Jelle De Loecker <jelle@elevenways.be>
63
125
  * @since 1.0.3
64
126
  * @version 1.0.3
65
127
  */
@@ -76,7 +138,7 @@ Revision.setProperty(function revision_model() {
76
138
  /**
77
139
  * Get the jsondiffpatch instance
78
140
  *
79
- * @author Jelle De Loecker <jelle@develry.be>
141
+ * @author Jelle De Loecker <jelle@elevenways.be>
80
142
  * @since 1.0.3
81
143
  * @version 1.0.3
82
144
  */
@@ -122,28 +184,10 @@ Revision.setProperty(function diff_patcher() {
122
184
  return diff_patch_instance;
123
185
  });
124
186
 
125
- /**
126
- * Listen to attachments to schema's
127
- *
128
- * @author Jelle De Loecker <jelle@develry.be>
129
- * @since 1.0.3
130
- * @version 1.0.3
131
- *
132
- * @param {Schema} schema
133
- * @param {Object} options
134
- */
135
- Revision.setStatic(function attached(schema, new_options) {
136
-
137
- var context = schema.model_class;
138
-
139
- // Add the revision
140
- context.addField('__r', 'Number', {title: 'Revision'});
141
- });
142
-
143
187
  /**
144
188
  * Compare 2 objects
145
189
  *
146
- * @author Jelle De Loecker <jelle@develry.be>
190
+ * @author Jelle De Loecker <jelle@elevenways.be>
147
191
  * @since 0.0.1
148
192
  * @version 1.0.3
149
193
  */
@@ -155,16 +199,16 @@ Revision.setMethod(function compare(left, right) {
155
199
  * Called before the model saves a record,
156
200
  * but after it has applied the strictFields
157
201
  *
158
- * @author Jelle De Loecker <jelle@develry.be>
202
+ * @author Jelle De Loecker <jelle@elevenways.be>
159
203
  * @since 0.0.1
160
- * @version 1.0.5
204
+ * @version 1.4.0
161
205
  */
162
206
  Revision.setMethod(function beforeSave(record, options, creating) {
163
207
 
164
- let main = record[this.model.name];
208
+ let main = record.$main;
165
209
 
166
210
  if (!main) {
167
- throw new Error('Unable to find main "' + this.model.name + '" data');
211
+ throw new Error('Unable to find main "' + this.model.model_name + '" data');
168
212
  }
169
213
 
170
214
  // No revision to save when creating a record
@@ -177,14 +221,12 @@ Revision.setMethod(function beforeSave(record, options, creating) {
177
221
  next = this.wait('series');
178
222
 
179
223
  // Find the original record
180
- Model.get(that.model.name).findById(main._id, async function gotRecord(err, result) {
181
-
182
- var ori;
224
+ Model.get(this.model.model_name).findById(record.$pk, async function gotRecord(err, result) {
183
225
 
184
226
  if (result) {
185
227
 
186
228
  // Get the original data
187
- ori = await that.model.convertRecordToDatasourceFormat(result);
229
+ let ori = await that.model.convertRecordToDatasourceFormat(result);
188
230
 
189
231
  // Store the original data in a weakmap for later
190
232
  revision_before.set(options, ori);
@@ -204,19 +246,13 @@ Revision.setMethod(function beforeSave(record, options, creating) {
204
246
  /**
205
247
  * Called after the model saves a record.
206
248
  *
207
- * @author Jelle De Loecker <jelle@develry.be>
249
+ * @author Jelle De Loecker <jelle@elevenways.be>
208
250
  * @since 0.0.1
209
- * @version 1.1.0
251
+ * @version 1.4.0
210
252
  */
211
253
  Revision.setMethod(function afterSave(record, options, created) {
212
254
 
213
- var that = this,
214
- earlier_data,
215
- right,
216
- main,
217
- that,
218
- left,
219
- next;
255
+ let earlier_data;
220
256
 
221
257
  if (created) {
222
258
  earlier_data = {};
@@ -229,11 +265,12 @@ Revision.setMethod(function afterSave(record, options, created) {
229
265
  return;
230
266
  }
231
267
 
232
- next = this.wait();
233
- main = record[that.model.name] || record;
268
+ let doc = this.model.createDocument(record);
269
+ let next = this.wait();
270
+ const that = this;
234
271
 
235
272
  // Find the complete saved item
236
- Model.get(that.model.name).findById(main._id, async function gotRecord(err, result) {
273
+ Model.get(this.model.model_name).findByPk(doc.$pk, async function gotRecord(err, result) {
237
274
 
238
275
  if (result) {
239
276
 
@@ -243,8 +280,8 @@ Revision.setMethod(function afterSave(record, options, created) {
243
280
  if (new_data) {
244
281
 
245
282
  // Convert the objects so they can be diffed properly
246
- left = JSON.toDryObject(earlier_data);
247
- right = JSON.toDryObject(new_data);
283
+ let left = JSON.toDryObject(earlier_data),
284
+ right = JSON.toDryObject(new_data);
248
285
 
249
286
  // Diff them
250
287
  let delta = that.compare(left, right);
@@ -267,7 +304,7 @@ Revision.setMethod(function afterSave(record, options, created) {
267
304
 
268
305
  // Add the delta information
269
306
  revision_data = {
270
- [that.revision_model.name] : revision_data
307
+ [that.revision_model.model_name] : revision_data
271
308
  };
272
309
 
273
310
  // Save the data
@@ -4,9 +4,9 @@
4
4
  * @constructor
5
5
  * @extends Alchemy.Behaviour
6
6
  *
7
- * @author Jelle De Loecker <jelle@develry.be>
8
- * @since 0.1.0
9
- * @version 1.3.16
7
+ * @author Jelle De Loecker <jelle@elevenways.be>
8
+ * @since 0.1.0
9
+ * @version 1.3.16
10
10
  */
11
11
  var Sluggable = Function.inherits('Alchemy.Behaviour', function SluggableBehaviour(model, options) {
12
12
 
@@ -37,7 +37,7 @@ var Sluggable = Function.inherits('Alchemy.Behaviour', function SluggableBehavio
37
37
  /**
38
38
  * Default slug options
39
39
  *
40
- * @author Jelle De Loecker <jelle@develry.be>
40
+ * @author Jelle De Loecker <jelle@elevenways.be>
41
41
  * @since 0.2.0
42
42
  * @version 0.2.3
43
43
  *
@@ -53,11 +53,11 @@ Sluggable.setProperty('default_options', {
53
53
  /**
54
54
  * Get the source field
55
55
  *
56
- * @author Jelle De Loecker <jelle@develry.be>
56
+ * @author Jelle De Loecker <jelle@elevenways.be>
57
57
  * @since 0.2.0
58
58
  * @version 0.2.0
59
59
  *
60
- * @param {String} source
60
+ * @param {string} source
61
61
  * @param {Schema} schema
62
62
  */
63
63
  Sluggable.setStatic(function getSource(source, schema) {
@@ -81,7 +81,7 @@ Sluggable.setStatic(function getSource(source, schema) {
81
81
  /**
82
82
  * Listen to attachments to schema's
83
83
  *
84
- * @author Jelle De Loecker <jelle@develry.be>
84
+ * @author Jelle De Loecker <jelle@elevenways.be>
85
85
  * @since 0.2.0
86
86
  * @version 1.3.0
87
87
  *
@@ -139,13 +139,13 @@ Sluggable.setStatic(function attached(schema, new_options) {
139
139
  /**
140
140
  * The beforeSave
141
141
  *
142
- * @author Jelle De Loecker <jelle@develry.be>
142
+ * @author Jelle De Loecker <jelle@elevenways.be>
143
143
  * @since 0.1.0
144
144
  * @version 1.0.6
145
145
  *
146
146
  * @param {Object} data The data that is to be saved
147
147
  * @param {Object} options Behaviour options
148
- * @param {Boolean} creating Is this record being created?
148
+ * @param {boolean} creating Is this record being created?
149
149
  */
150
150
  Sluggable.setMethod(async function beforeSave(data, options, creating) {
151
151
 
@@ -216,12 +216,12 @@ Sluggable.setMethod(async function beforeSave(data, options, creating) {
216
216
  /**
217
217
  * Start the slug creating process
218
218
  *
219
- * @author Jelle De Loecker <jelle@develry.be>
219
+ * @author Jelle De Loecker <jelle@elevenways.be>
220
220
  * @since 0.1.0
221
221
  * @version 1.1.0
222
222
  *
223
223
  * @param {Object} record
224
- * @param {String} new_value
224
+ * @param {string} new_value
225
225
  * @param {Function} callback
226
226
  */
227
227
  Sluggable.setMethod(function createSlug(record, new_value, callback) {
@@ -295,12 +295,12 @@ Sluggable.setMethod(function createSlug(record, new_value, callback) {
295
295
  * Actually generate the slug from the given string,
296
296
  * and look for existing slugs in the path
297
297
  *
298
- * @author Jelle De Loecker <jelle@develry.be>
298
+ * @author Jelle De Loecker <jelle@elevenways.be>
299
299
  * @since 0.1.0
300
300
  * @version 1.1.8
301
301
  *
302
- * @param {String} title
303
- * @param {String} path
302
+ * @param {string} title
303
+ * @param {string} path
304
304
  * @param {Document} record
305
305
  * @param {Function} callback
306
306
  */
@@ -6,12 +6,12 @@ var fs = require('fs');
6
6
  * @constructor
7
7
  * @extends Alchemy.Conduit
8
8
  *
9
- * @author Jelle De Loecker <jelle@develry.be>
10
- * @since 0.2.0
11
- * @version 1.1.3
9
+ * @author Jelle De Loecker <jelle@elevenways.be>
10
+ * @since 0.2.0
11
+ * @version 1.1.3
12
12
  *
13
- * @param {Object} request
14
- * @param {Function} callback
13
+ * @param {Object} request
14
+ * @param {Function} callback
15
15
  */
16
16
  var ElectronConduit = Function.inherits('Alchemy.Conduit', function Electron(request, callback, router) {
17
17
 
@@ -32,7 +32,7 @@ var ElectronConduit = Function.inherits('Alchemy.Conduit', function Electron(req
32
32
  request.conduit = this;
33
33
 
34
34
  // Allow use of the log in the views
35
- if (alchemy.settings.debug) {
35
+ if (alchemy.settings.debugging.debug) {
36
36
  this.internal('debuglog', {_placeholder_: 'debuglog'});
37
37
  }
38
38
 
@@ -62,7 +62,7 @@ var ElectronConduit = Function.inherits('Alchemy.Conduit', function Electron(req
62
62
  /**
63
63
  * Create a new Hawkejs' ViewRender instance
64
64
  *
65
- * @author Jelle De Loecker <jelle@develry.be>
65
+ * @author Jelle De Loecker <jelle@elevenways.be>
66
66
  * @since 0.2.0
67
67
  * @version 1.1.0
68
68
  */
@@ -86,7 +86,7 @@ ElectronConduit.setMethod(function setHeader(name, val) {
86
86
  /**
87
87
  * Call the actual end method
88
88
  *
89
- * @author Jelle De Loecker <jelle@develry.be>
89
+ * @author Jelle De Loecker <jelle@elevenways.be>
90
90
  * @since 0.2.0
91
91
  * @version 1.0.0
92
92
  */
@@ -97,7 +97,7 @@ ElectronConduit.setMethod(function _end(message, encoding) {
97
97
  /**
98
98
  * Serve a file
99
99
  *
100
- * @author Jelle De Loecker <jelle@develry.be>
100
+ * @author Jelle De Loecker <jelle@elevenways.be>
101
101
  * @since 0.2.0
102
102
  * @version 0.2.0
103
103
  */
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * The Http Conduit Class
3
3
  *
4
- * @author Jelle De Loecker <jelle@develry.be>
4
+ * @author Jelle De Loecker <jelle@elevenways.be>
5
5
  * @since 0.2.0
6
6
  * @version 1.1.3
7
7
  *
@@ -20,11 +20,11 @@ var HttpConduit = Function.inherits('Alchemy.Conduit.Conduit', function Http(req
20
20
  /**
21
21
  * Has the client aborted the request?
22
22
  *
23
- * @author Jelle De Loecker <jelle@develry.be>
23
+ * @author Jelle De Loecker <jelle@elevenways.be>
24
24
  * @since 1.1.0
25
25
  * @version 1.1.0
26
26
  *
27
- * @type {Boolean}
27
+ * @type {boolean}
28
28
  */
29
29
  HttpConduit.setProperty(function aborted() {
30
30
 
@@ -38,7 +38,7 @@ HttpConduit.setProperty(function aborted() {
38
38
  /**
39
39
  * Return the IP address
40
40
  *
41
- * @author Jelle De Loecker <jelle@develry.be>
41
+ * @author Jelle De Loecker <jelle@elevenways.be>
42
42
  * @since 0.2.0
43
43
  * @version 1.1.0
44
44
  */
@@ -84,11 +84,11 @@ HttpConduit.setProperty(function ip() {
84
84
  * Get a simple fingerprint of the client
85
85
  * based on ip, accept-language & user-agent
86
86
  *
87
- * @author Jelle De Loecker <jelle@develry.be>
87
+ * @author Jelle De Loecker <jelle@elevenways.be>
88
88
  * @since 1.1.0
89
89
  * @version 1.1.0
90
90
  *
91
- * @type {String}
91
+ * @type {string}
92
92
  */
93
93
  HttpConduit.enforceProperty(function fingerprint() {
94
94
 
@@ -105,9 +105,9 @@ HttpConduit.enforceProperty(function fingerprint() {
105
105
  /**
106
106
  * Init
107
107
  *
108
- * @author Jelle De Loecker <jelle@elevenways.be>
108
+ * @author Jelle De Loecker <jelle@elevenways.be>
109
109
  * @since 0.3.3
110
- * @version 1.3.1
110
+ * @version 1.4.0
111
111
  *
112
112
  * @param {IncomingMessage} req
113
113
  * @param {ServerResponse} res
@@ -133,7 +133,7 @@ HttpConduit.setMethod(async function initHttp(req, res, router) {
133
133
  return;
134
134
  }
135
135
 
136
- if (alchemy.settings.debug || alchemy.settings.environment != 'live') {
136
+ if (alchemy.settings.debugging.debug || alchemy.settings.environment != 'live') {
137
137
  this.setHeader('X-Robots-Tag', 'none');
138
138
  }
139
139
 
@@ -151,11 +151,11 @@ HttpConduit.setMethod(async function initHttp(req, res, router) {
151
151
  /**
152
152
  * Get the original url path
153
153
  *
154
- * @author Jelle De Loecker <jelle@elevenways.be>
154
+ * @author Jelle De Loecker <jelle@elevenways.be>
155
155
  * @since 1.1.0
156
156
  * @version 1.1.0
157
157
  *
158
- * @type {String}
158
+ * @type {string}
159
159
  */
160
160
  HttpConduit.setProperty(function original_path() {
161
161
  return this.original_url.path;
@@ -166,11 +166,11 @@ HttpConduit.setProperty(function original_path() {
166
166
  /**
167
167
  * Get the original url pathname
168
168
  *
169
- * @author Jelle De Loecker <jelle@elevenways.be>
169
+ * @author Jelle De Loecker <jelle@elevenways.be>
170
170
  * @since 1.1.0
171
171
  * @version 1.1.0
172
172
  *
173
- * @type {String}
173
+ * @type {string}
174
174
  */
175
175
  HttpConduit.setProperty(function original_pathname() {
176
176
  return this.original_url.pathname;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * The Loopback Conduit Class
3
3
  *
4
- * @author Jelle De Loecker <jelle@develry.be>
4
+ * @author Jelle De Loecker <jelle@elevenways.be>
5
5
  * @since 0.2.0
6
6
  * @version 1.1.5
7
7
  *
@@ -29,20 +29,20 @@ var LoopConduit = Function.inherits('Alchemy.Conduit', function Loopback(parent_
29
29
  });
30
30
 
31
31
  /**
32
- * Refer to the parent conduit for the sessionData property
32
+ * Refer to the parent conduit for the session_instance property
33
33
  *
34
- * @author Jelle De Loecker <jelle@elevenways.be>
34
+ * @author Jelle De Loecker <jelle@elevenways.be>
35
35
  * @since 1.3.10
36
- * @version 1.3.10
36
+ * @version 1.4.0
37
37
  */
38
- LoopConduit.setProperty(function sessionData() {
39
- return this.parent.sessionData;
38
+ LoopConduit.setProperty(function session_instance() {
39
+ return this.parent.session_instance;
40
40
  });
41
41
 
42
42
  /**
43
43
  * Create a new loopback
44
44
  *
45
- * @author Jelle De Loecker <jelle@elevenways.be>
45
+ * @author Jelle De Loecker <jelle@elevenways.be>
46
46
  * @since 1.1.3
47
47
  * @version 1.1.3
48
48
  *
@@ -62,7 +62,7 @@ LoopConduit.setStatic(function create(parent, options, callback) {
62
62
  /**
63
63
  * Copy parent properties
64
64
  *
65
- * @author Jelle De Loecker <jelle@develry.be>
65
+ * @author Jelle De Loecker <jelle@elevenways.be>
66
66
  * @since 1.1.5
67
67
  * @version 1.1.5
68
68
  *
@@ -87,7 +87,7 @@ LoopConduit.setMethod(function copyParentProperties(conduit) {
87
87
  /**
88
88
  * Set the loopback options
89
89
  *
90
- * @author Jelle De Loecker <jelle@elevenways.be>
90
+ * @author Jelle De Loecker <jelle@elevenways.be>
91
91
  * @since 1.1.3
92
92
  * @version 1.3.0
93
93
  *
@@ -197,7 +197,7 @@ LoopConduit.setMethod(function setOptions(options, callback) {
197
197
  /**
198
198
  * Set a function that should receive the end message
199
199
  *
200
- * @author Jelle De Loecker <jelle@develry.be>
200
+ * @author Jelle De Loecker <jelle@elevenways.be>
201
201
  * @since 0.2.0
202
202
  * @version 0.2.0
203
203
  */
@@ -213,7 +213,7 @@ LoopConduit.setMethod(function setCallback(callback) {
213
213
  /**
214
214
  * Pass along the message
215
215
  *
216
- * @author Jelle De Loecker <jelle@elevenways.be>
216
+ * @author Jelle De Loecker <jelle@elevenways.be>
217
217
  * @since 0.2.0
218
218
  * @version 1.1.3
219
219
  */
@@ -229,7 +229,7 @@ LoopConduit.setMethod(function end(message) {
229
229
  /**
230
230
  * Call the actual end method
231
231
  *
232
- * @author Jelle De Loecker <jelle@develry.be>
232
+ * @author Jelle De Loecker <jelle@elevenways.be>
233
233
  * @since 0.2.0
234
234
  * @version 0.2.0
235
235
  */
@@ -244,7 +244,7 @@ LoopConduit.setMethod(function _end(message) {
244
244
  /**
245
245
  * Catch errors
246
246
  *
247
- * @author Jelle De Loecker <jelle@develry.be>
247
+ * @author Jelle De Loecker <jelle@elevenways.be>
248
248
  * @since 0.2.0
249
249
  * @version 0.2.0
250
250
  */
@@ -260,11 +260,11 @@ LoopConduit.setMethod(function error(status, message, print_error) {
260
260
  /**
261
261
  * Create a session
262
262
  *
263
- * @author Jelle De Loecker <jelle@elevenways.be>
263
+ * @author Jelle De Loecker <jelle@elevenways.be>
264
264
  * @since 1.3.10
265
265
  * @version 1.3.10
266
266
  *
267
- * @param {Boolean} create Create a session if none exist
267
+ * @param {boolean} create Create a session if none exist
268
268
  *
269
269
  * @return {UserSession}
270
270
  */