letter_opener_web 1.3.4 → 2.0.0.pre.beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/brakeman-analysis.yml +46 -0
  3. data/.github/workflows/main.yml +34 -0
  4. data/.github/workflows/release-gem.yml +32 -0
  5. data/.gitignore +1 -0
  6. data/.rspec +1 -1
  7. data/.rubocop.yml +5 -16
  8. data/.rubocop_todo.yml +19 -0
  9. data/CHANGELOG.md +22 -1
  10. data/Gemfile +4 -0
  11. data/LICENSE.txt +1 -1
  12. data/README.md +33 -24
  13. data/app/controllers/letter_opener_web/application_controller.rb +1 -0
  14. data/app/controllers/letter_opener_web/letters_controller.rb +14 -7
  15. data/app/models/letter_opener_web/letter.rb +37 -5
  16. data/app/views/layouts/letter_opener_web/_javascripts.html.erb +31 -0
  17. data/app/views/layouts/letter_opener_web/_styles.html.erb +3 -0
  18. data/{vendor/assets/javascripts/letter_opener_web/favcount.js → app/views/layouts/letter_opener_web/js/_favcount.html.erb} +9 -7
  19. data/app/views/layouts/letter_opener_web/js/_jquery.html.erb +7 -0
  20. data/app/views/layouts/letter_opener_web/letters.html.erb +5 -3
  21. data/app/views/layouts/letter_opener_web/styles/_bootstrap.html.erb +9 -0
  22. data/app/views/layouts/letter_opener_web/styles/_icon.html.erb +2 -0
  23. data/app/views/layouts/letter_opener_web/styles/_letters.html.erb +70 -0
  24. data/app/views/letter_opener_web/letters/_item.html.erb +10 -0
  25. data/app/views/letter_opener_web/letters/index.html.erb +11 -46
  26. data/config/routes.rb +5 -5
  27. data/letter_opener_web.gemspec +19 -15
  28. data/lib/letter_opener_web/delivery_method.rb +1 -1
  29. data/lib/letter_opener_web/engine.rb +0 -10
  30. data/lib/letter_opener_web/version.rb +1 -1
  31. data/lib/letter_opener_web.rb +1 -0
  32. data/spec/controllers/letter_opener_web/letters_controller_spec.rb +22 -11
  33. data/spec/dummy/app/assets/config/manifest.js +0 -2
  34. data/spec/dummy/app/assets/stylesheets/application.css +0 -16
  35. data/spec/dummy/app/channels/application_cable/channel.rb +6 -0
  36. data/spec/dummy/app/channels/application_cable/connection.rb +6 -0
  37. data/spec/dummy/app/controllers/application_controller.rb +0 -1
  38. data/spec/dummy/app/{assets/javascripts → javascript/packs}/application.js +2 -0
  39. data/spec/dummy/app/jobs/application_job.rb +9 -0
  40. data/spec/dummy/app/models/application_record.rb +5 -0
  41. data/spec/dummy/app/models/concerns/.keep +0 -0
  42. data/spec/dummy/app/views/layouts/application.html.erb +4 -7
  43. data/spec/dummy/bin/rails +2 -4
  44. data/spec/dummy/bin/rake +2 -4
  45. data/spec/dummy/bin/setup +7 -10
  46. data/spec/dummy/config/application.rb +21 -7
  47. data/spec/dummy/config/environments/development.rb +44 -6
  48. data/spec/dummy/config/environments/production.rb +51 -14
  49. data/spec/dummy/config/environments/test.rb +30 -6
  50. data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -4
  51. data/spec/dummy/config/initializers/assets.rb +5 -5
  52. data/spec/dummy/config/initializers/backtrace_silencers.rb +5 -3
  53. data/spec/dummy/config/initializers/content_security_policy.rb +29 -0
  54. data/spec/dummy/config/initializers/filter_parameter_logging.rb +3 -1
  55. data/spec/dummy/config/initializers/permissions_policy.rb +12 -0
  56. data/spec/dummy/config/locales/en.yml +11 -1
  57. data/spec/dummy/config/puma.rb +18 -22
  58. data/spec/dummy/config/routes.rb +1 -4
  59. data/spec/dummy/config.ru +1 -0
  60. data/spec/dummy/public/404.html +6 -6
  61. data/spec/dummy/public/422.html +6 -6
  62. data/spec/dummy/public/500.html +6 -6
  63. data/spec/dummy/storage/.keep +0 -0
  64. data/spec/letter_opener_web_spec.rb +2 -2
  65. data/spec/models/letter_opener_web/letter_spec.rb +62 -17
  66. data/spec/spec_helper.rb +8 -0
  67. metadata +93 -56
  68. data/.travis.yml +0 -26
  69. data/app/assets/javascripts/letter_opener_web/application.js +0 -30
  70. data/app/assets/stylesheets/letter_opener_web/application.css.erb +0 -54
  71. data/bin/rails +0 -11
  72. data/spec/dummy/app/controllers/home_controller.rb +0 -10
  73. data/spec/dummy/app/mailers/contact_mailer.rb +0 -14
  74. data/spec/dummy/app/views/contact_mailer/new_message.html.erb +0 -21
  75. data/spec/dummy/app/views/contact_mailer/new_message.text.erb +0 -3
  76. data/spec/dummy/app/views/home/index.html.erb +0 -50
  77. data/spec/dummy/bin/bundle +0 -5
  78. data/spec/dummy/bin/update +0 -31
  79. data/spec/dummy/config/initializers/new_framework_defaults.rb +0 -10
  80. data/spec/dummy/config/initializers/session_store.rb +0 -5
  81. data/spec/dummy/config/secrets.yml +0 -22
  82. data/spec/dummy/config/spring.rb +0 -8
  83. data/vendor/assets/images/letter_opener_web/blue-dot.ico +0 -0
  84. data/vendor/assets/images/letter_opener_web/glyphicons-halflings-white.png +0 -0
  85. data/vendor/assets/images/letter_opener_web/glyphicons-halflings.png +0 -0
  86. data/vendor/assets/javascripts/letter_opener_web/bootstrap.min.js +0 -6
  87. data/vendor/assets/javascripts/letter_opener_web/jquery-1.8.3.min.js +0 -2
  88. data/vendor/assets/javascripts/letter_opener_web/jquery_ujs.js +0 -429
  89. data/vendor/assets/stylesheets/letter_opener_web/bootstrap.min.css +0 -9
@@ -1,429 +0,0 @@
1
- (function($, undefined) {
2
-
3
- /**
4
- * Unobtrusive scripting adapter for jQuery
5
- *
6
- * Requires jQuery 1.6.0 or later.
7
- * https://github.com/rails/jquery-ujs
8
-
9
- * Uploading file using rails.js
10
- * =============================
11
- *
12
- * By default, browsers do not allow files to be uploaded via AJAX. As a result, if there are any non-blank file fields
13
- * in the remote form, this adapter aborts the AJAX submission and allows the form to submit through standard means.
14
- *
15
- * The `ajax:aborted:file` event allows you to bind your own handler to process the form submission however you wish.
16
- *
17
- * Ex:
18
- * $('form').live('ajax:aborted:file', function(event, elements){
19
- * // Implement own remote file-transfer handler here for non-blank file inputs passed in `elements`.
20
- * // Returning false in this handler tells rails.js to disallow standard form submission
21
- * return false;
22
- * });
23
- *
24
- * The `ajax:aborted:file` event is fired when a file-type input is detected with a non-blank value.
25
- *
26
- * Third-party tools can use this hook to detect when an AJAX file upload is attempted, and then use
27
- * techniques like the iframe method to upload the file instead.
28
- *
29
- * Required fields in rails.js
30
- * ===========================
31
- *
32
- * If any blank required inputs (required="required") are detected in the remote form, the whole form submission
33
- * is canceled. Note that this is unlike file inputs, which still allow standard (non-AJAX) form submission.
34
- *
35
- * The `ajax:aborted:required` event allows you to bind your own handler to inform the user of blank required inputs.
36
- *
37
- * !! Note that Opera does not fire the form's submit event if there are blank required inputs, so this event may never
38
- * get fired in Opera. This event is what causes other browsers to exhibit the same submit-aborting behavior.
39
- *
40
- * Ex:
41
- * $('form').live('ajax:aborted:required', function(event, elements){
42
- * // Returning false in this handler tells rails.js to submit the form anyway.
43
- * // The blank required inputs are passed to this function in `elements`.
44
- * return ! confirm("Would you like to submit the form with missing info?");
45
- * });
46
- */
47
-
48
- // Cut down on the number if issues from people inadvertently including jquery_ujs twice
49
- // by detecting and raising an error when it happens.
50
- var alreadyInitialized = function() {
51
- var events = $._data(document, 'events');
52
- return events && events.click && $.grep(events.click, function(e) { return e.namespace === 'rails'; }).length;
53
- }
54
-
55
- if ( alreadyInitialized() ) {
56
- $.error('jquery-ujs has already been loaded!');
57
- }
58
-
59
- // Shorthand to make it a little easier to call public rails functions from within rails.js
60
- var rails;
61
-
62
- $.rails = rails = {
63
- // Link elements bound by jquery-ujs
64
- linkClickSelector: 'a[data-confirm], a[data-method], a[data-remote], a[data-disable-with]',
65
-
66
- // Select elements bound by jquery-ujs
67
- inputChangeSelector: 'select[data-remote], input[data-remote], textarea[data-remote]',
68
-
69
- // Form elements bound by jquery-ujs
70
- formSubmitSelector: 'form',
71
-
72
- // Form input elements bound by jquery-ujs
73
- formInputClickSelector: 'form input[type=submit], form input[type=image], form button[type=submit], form button:not([type])',
74
-
75
- // Form input elements disabled during form submission
76
- disableSelector: 'input[data-disable-with], button[data-disable-with], textarea[data-disable-with]',
77
-
78
- // Form input elements re-enabled after form submission
79
- enableSelector: 'input[data-disable-with]:disabled, button[data-disable-with]:disabled, textarea[data-disable-with]:disabled',
80
-
81
- // Form required input elements
82
- requiredInputSelector: 'input[name][required]:not([disabled]),textarea[name][required]:not([disabled])',
83
-
84
- // Form file input elements
85
- fileInputSelector: 'input:file',
86
-
87
- // Link onClick disable selector with possible reenable after remote submission
88
- linkDisableSelector: 'a[data-disable-with]',
89
-
90
- // Make sure that every Ajax request sends the CSRF token
91
- CSRFProtection: function(xhr) {
92
- var token = $('meta[name="csrf-token"]').attr('content');
93
- if (token) xhr.setRequestHeader('X-CSRF-Token', token);
94
- },
95
-
96
- // Triggers an event on an element and returns false if the event result is false
97
- fire: function(obj, name, data) {
98
- var event = $.Event(name);
99
- obj.trigger(event, data);
100
- return event.result !== false;
101
- },
102
-
103
- // Default confirm dialog, may be overridden with custom confirm dialog in $.rails.confirm
104
- confirm: function(message) {
105
- return confirm(message);
106
- },
107
-
108
- // Default ajax function, may be overridden with custom function in $.rails.ajax
109
- ajax: function(options) {
110
- return $.ajax(options);
111
- },
112
-
113
- // Default way to get an element's href. May be overridden at $.rails.href.
114
- href: function(element) {
115
- return element.attr('href');
116
- },
117
-
118
- // Submits "remote" forms and links with ajax
119
- handleRemote: function(element) {
120
- var method, url, data, elCrossDomain, crossDomain, withCredentials, dataType, options;
121
-
122
- if (rails.fire(element, 'ajax:before')) {
123
- elCrossDomain = element.data('cross-domain');
124
- crossDomain = elCrossDomain === undefined ? null : elCrossDomain;
125
- withCredentials = element.data('with-credentials') || null;
126
- dataType = element.data('type') || ($.ajaxSettings && $.ajaxSettings.dataType);
127
-
128
- if (element.is('form')) {
129
- method = element.attr('method');
130
- url = element.attr('action');
131
- data = element.serializeArray();
132
- // memoized value from clicked submit button
133
- var button = element.data('ujs:submit-button');
134
- if (button) {
135
- data.push(button);
136
- element.data('ujs:submit-button', null);
137
- }
138
- } else if (element.is(rails.inputChangeSelector)) {
139
- method = element.data('method');
140
- url = element.data('url');
141
- data = element.serialize();
142
- if (element.data('params')) data = data + "&" + element.data('params');
143
- } else {
144
- method = element.data('method');
145
- url = rails.href(element);
146
- data = element.data('params') || null;
147
- }
148
-
149
- options = {
150
- type: method || 'GET', data: data, dataType: dataType,
151
- // stopping the "ajax:beforeSend" event will cancel the ajax request
152
- beforeSend: function(xhr, settings) {
153
- if (settings.dataType === undefined) {
154
- xhr.setRequestHeader('accept', '*/*;q=0.5, ' + settings.accepts.script);
155
- }
156
- return rails.fire(element, 'ajax:beforeSend', [xhr, settings]);
157
- },
158
- success: function(data, status, xhr) {
159
- element.trigger('ajax:success', [data, status, xhr]);
160
- },
161
- complete: function(xhr, status) {
162
- element.trigger('ajax:complete', [xhr, status]);
163
- },
164
- error: function(xhr, status, error) {
165
- element.trigger('ajax:error', [xhr, status, error]);
166
- },
167
- xhrFields: {
168
- withCredentials: withCredentials
169
- },
170
- crossDomain: crossDomain
171
- };
172
- // Only pass url to `ajax` options if not blank
173
- if (url) { options.url = url; }
174
-
175
- var jqxhr = rails.ajax(options);
176
- element.trigger('ajax:send', jqxhr);
177
- return jqxhr;
178
- } else {
179
- return false;
180
- }
181
- },
182
-
183
- // Handles "data-method" on links such as:
184
- // <a href="/users/5" data-method="delete" rel="nofollow" data-confirm="Are you sure?">Delete</a>
185
- handleMethod: function(link) {
186
- var href = rails.href(link),
187
- method = link.data('method'),
188
- target = link.attr('target'),
189
- csrf_token = $('meta[name=csrf-token]').attr('content'),
190
- csrf_param = $('meta[name=csrf-param]').attr('content'),
191
- form = $('<form method="post" action="' + href + '"></form>'),
192
- metadata_input = '<input name="_method" value="' + method + '" type="hidden" />';
193
-
194
- if (csrf_param !== undefined && csrf_token !== undefined) {
195
- metadata_input += '<input name="' + csrf_param + '" value="' + csrf_token + '" type="hidden" />';
196
- }
197
-
198
- if (target) { form.attr('target', target); }
199
-
200
- form.hide().append(metadata_input).appendTo('body');
201
- form.submit();
202
- },
203
-
204
- /* Disables form elements:
205
- - Caches element value in 'ujs:enable-with' data store
206
- - Replaces element text with value of 'data-disable-with' attribute
207
- - Sets disabled property to true
208
- */
209
- disableFormElements: function(form) {
210
- form.find(rails.disableSelector).each(function() {
211
- var element = $(this), method = element.is('button') ? 'html' : 'val';
212
- element.data('ujs:enable-with', element[method]());
213
- element[method](element.data('disable-with'));
214
- element.prop('disabled', true);
215
- });
216
- },
217
-
218
- /* Re-enables disabled form elements:
219
- - Replaces element text with cached value from 'ujs:enable-with' data store (created in `disableFormElements`)
220
- - Sets disabled property to false
221
- */
222
- enableFormElements: function(form) {
223
- form.find(rails.enableSelector).each(function() {
224
- var element = $(this), method = element.is('button') ? 'html' : 'val';
225
- if (element.data('ujs:enable-with')) element[method](element.data('ujs:enable-with'));
226
- element.prop('disabled', false);
227
- });
228
- },
229
-
230
- /* For 'data-confirm' attribute:
231
- - Fires `confirm` event
232
- - Shows the confirmation dialog
233
- - Fires the `confirm:complete` event
234
-
235
- Returns `true` if no function stops the chain and user chose yes; `false` otherwise.
236
- Attaching a handler to the element's `confirm` event that returns a `falsy` value cancels the confirmation dialog.
237
- Attaching a handler to the element's `confirm:complete` event that returns a `falsy` value makes this function
238
- return false. The `confirm:complete` event is fired whether or not the user answered true or false to the dialog.
239
- */
240
- allowAction: function(element) {
241
- var message = element.data('confirm'),
242
- answer = false, callback;
243
- if (!message) { return true; }
244
-
245
- if (rails.fire(element, 'confirm')) {
246
- answer = rails.confirm(message);
247
- callback = rails.fire(element, 'confirm:complete', [answer]);
248
- }
249
- return answer && callback;
250
- },
251
-
252
- // Helper function which checks for blank inputs in a form that match the specified CSS selector
253
- blankInputs: function(form, specifiedSelector, nonBlank) {
254
- var inputs = $(), input, valueToCheck,
255
- selector = specifiedSelector || 'input,textarea',
256
- allInputs = form.find(selector);
257
-
258
- allInputs.each(function() {
259
- input = $(this);
260
- valueToCheck = input.is(':checkbox,:radio') ? input.is(':checked') : input.val();
261
- // If nonBlank and valueToCheck are both truthy, or nonBlank and valueToCheck are both falsey
262
- if (!valueToCheck === !nonBlank) {
263
-
264
- // Don't count unchecked required radio if other radio with same name is checked
265
- if (input.is(':radio') && allInputs.filter('input:radio:checked[name="' + input.attr('name') + '"]').length) {
266
- return true; // Skip to next input
267
- }
268
-
269
- inputs = inputs.add(input);
270
- }
271
- });
272
- return inputs.length ? inputs : false;
273
- },
274
-
275
- // Helper function which checks for non-blank inputs in a form that match the specified CSS selector
276
- nonBlankInputs: function(form, specifiedSelector) {
277
- return rails.blankInputs(form, specifiedSelector, true); // true specifies nonBlank
278
- },
279
-
280
- // Helper function, needed to provide consistent behavior in IE
281
- stopEverything: function(e) {
282
- $(e.target).trigger('ujs:everythingStopped');
283
- e.stopImmediatePropagation();
284
- return false;
285
- },
286
-
287
- // find all the submit events directly bound to the form and
288
- // manually invoke them. If anyone returns false then stop the loop
289
- callFormSubmitBindings: function(form, event) {
290
- var events = form.data('events'), continuePropagation = true;
291
- if (events !== undefined && events['submit'] !== undefined) {
292
- $.each(events['submit'], function(i, obj){
293
- if (typeof obj.handler === 'function') return continuePropagation = obj.handler(event);
294
- });
295
- }
296
- return continuePropagation;
297
- },
298
-
299
- // replace element's html with the 'data-disable-with' after storing original html
300
- // and prevent clicking on it
301
- disableElement: function(element) {
302
- element.data('ujs:enable-with', element.html()); // store enabled state
303
- element.html(element.data('disable-with')); // set to disabled state
304
- element.bind('click.railsDisable', function(e) { // prevent further clicking
305
- return rails.stopEverything(e);
306
- });
307
- },
308
-
309
- // restore element to its original state which was disabled by 'disableElement' above
310
- enableElement: function(element) {
311
- if (element.data('ujs:enable-with') !== undefined) {
312
- element.html(element.data('ujs:enable-with')); // set to old enabled state
313
- // this should be element.removeData('ujs:enable-with')
314
- // but, there is currently a bug in jquery which makes hyphenated data attributes not get removed
315
- element.data('ujs:enable-with', false); // clean up cache
316
- }
317
- element.unbind('click.railsDisable'); // enable element
318
- }
319
-
320
- };
321
-
322
- if (rails.fire($(document), 'rails:attachBindings')) {
323
-
324
- $.ajaxPrefilter(function(options, originalOptions, xhr){ if ( !options.crossDomain ) { rails.CSRFProtection(xhr); }});
325
-
326
- $(document).delegate(rails.linkDisableSelector, 'ajax:complete', function() {
327
- rails.enableElement($(this));
328
- });
329
-
330
- $(document).delegate(rails.linkClickSelector, 'click.rails', function(e) {
331
- var link = $(this), method = link.data('method'), data = link.data('params');
332
- if (!rails.allowAction(link)) return rails.stopEverything(e);
333
-
334
- if (link.is(rails.linkDisableSelector)) rails.disableElement(link);
335
-
336
- if (link.data('remote') !== undefined) {
337
- if ( (e.metaKey || e.ctrlKey) && (!method || method === 'GET') && !data ) { return true; }
338
-
339
- var handleRemote = rails.handleRemote(link);
340
- // response from rails.handleRemote() will either be false or a deferred object promise.
341
- if (handleRemote === false) {
342
- rails.enableElement(link);
343
- } else {
344
- handleRemote.error( function() { rails.enableElement(link); } );
345
- }
346
- return false;
347
-
348
- } else if (link.data('method')) {
349
- rails.handleMethod(link);
350
- return false;
351
- }
352
- });
353
-
354
- $(document).delegate(rails.inputChangeSelector, 'change.rails', function(e) {
355
- var link = $(this);
356
- if (!rails.allowAction(link)) return rails.stopEverything(e);
357
-
358
- rails.handleRemote(link);
359
- return false;
360
- });
361
-
362
- $(document).delegate(rails.formSubmitSelector, 'submit.rails', function(e) {
363
- var form = $(this),
364
- remote = form.data('remote') !== undefined,
365
- blankRequiredInputs = rails.blankInputs(form, rails.requiredInputSelector),
366
- nonBlankFileInputs = rails.nonBlankInputs(form, rails.fileInputSelector);
367
-
368
- if (!rails.allowAction(form)) return rails.stopEverything(e);
369
-
370
- // skip other logic when required values are missing or file upload is present
371
- if (blankRequiredInputs && form.attr("novalidate") == undefined && rails.fire(form, 'ajax:aborted:required', [blankRequiredInputs])) {
372
- return rails.stopEverything(e);
373
- }
374
-
375
- if (remote) {
376
- if (nonBlankFileInputs) {
377
- // slight timeout so that the submit button gets properly serialized
378
- // (make it easy for event handler to serialize form without disabled values)
379
- setTimeout(function(){ rails.disableFormElements(form); }, 13);
380
- var aborted = rails.fire(form, 'ajax:aborted:file', [nonBlankFileInputs]);
381
-
382
- // re-enable form elements if event bindings return false (canceling normal form submission)
383
- if (!aborted) { setTimeout(function(){ rails.enableFormElements(form); }, 13); }
384
-
385
- return aborted;
386
- }
387
-
388
- // If browser does not support submit bubbling, then this live-binding will be called before direct
389
- // bindings. Therefore, we should directly call any direct bindings before remotely submitting form.
390
- if (!$.support.submitBubbles && $().jquery < '1.7' && rails.callFormSubmitBindings(form, e) === false) return rails.stopEverything(e);
391
-
392
- rails.handleRemote(form);
393
- return false;
394
-
395
- } else {
396
- // slight timeout so that the submit button gets properly serialized
397
- setTimeout(function(){ rails.disableFormElements(form); }, 13);
398
- }
399
- });
400
-
401
- $(document).delegate(rails.formInputClickSelector, 'click.rails', function(event) {
402
- var button = $(this);
403
-
404
- if (!rails.allowAction(button)) return rails.stopEverything(event);
405
-
406
- // register the pressed submit button
407
- var name = button.attr('name'),
408
- data = name ? {name:name, value:button.val()} : null;
409
-
410
- button.closest('form').data('ujs:submit-button', data);
411
- });
412
-
413
- $(document).delegate(rails.formSubmitSelector, 'ajax:beforeSend.rails', function(event) {
414
- if (this == event.target) rails.disableFormElements($(this));
415
- });
416
-
417
- $(document).delegate(rails.formSubmitSelector, 'ajax:complete.rails', function(event) {
418
- if (this == event.target) rails.enableFormElements($(this));
419
- });
420
-
421
- $(function(){
422
- // making sure that all forms have actual up-to-date token(cached forms contain old one)
423
- csrf_token = $('meta[name=csrf-token]').attr('content');
424
- csrf_param = $('meta[name=csrf-param]').attr('content');
425
- $('form input[name="' + csrf_param + '"]').val(csrf_token);
426
- });
427
- }
428
-
429
- })( jQuery );