spontaneous 0.2.0.beta1 → 0.2.0.beta2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +24 -0
- data/.locat +42 -0
- data/.travis/gemfiles/Gemfile.empty +7 -0
- data/.travis.yml +18 -0
- data/Gemfile +12 -8
- data/LICENSE +1 -1
- data/Rakefile +15 -157
- data/Readme.markdown +1 -1
- data/application/css/core.css.scss +22 -146
- data/application/css/definitions.css.scss +7 -3
- data/application/css/dialogue.css.scss +26 -1
- data/application/css/editing.css.scss +70 -28
- data/application/css/font.css.scss +1 -1
- data/application/css/popover.css.scss +2 -0
- data/application/css/top.css.scss +231 -0
- data/application/js/add_alias_dialogue.js +1 -1
- data/application/js/add_home_dialogue.js +1 -1
- data/application/js/ajax.js +61 -31
- data/application/js/box.js +4 -4
- data/application/js/conflicted_field_dialogue.js +1 -1
- data/application/js/content.js +5 -5
- data/application/js/dom.js +5 -0
- data/application/js/edit_panel.js +1 -0
- data/application/js/editing.js +1 -1
- data/application/js/extensions.js +8 -0
- data/application/js/field/boolean.js +31 -0
- data/application/js/field/file.js +32 -4
- data/application/js/field/image.js +24 -9
- data/application/js/field/markdown.js +87 -59
- data/application/js/field/select.js +1 -1
- data/application/js/field/webvideo.js +6 -1
- data/application/js/init.js +2 -2
- data/application/js/jquery-selection-position.js +130 -0
- data/application/js/location.js +4 -25
- data/application/js/meta_view/user_admin.js +2 -2
- data/application/js/metadata.js +2 -2
- data/application/js/page_browser.js +1 -1
- data/application/js/panel/root_menu.js +0 -1
- data/application/js/popover.js +27 -12
- data/application/js/popover_view.js +20 -4
- data/application/js/preview.js +31 -16
- data/application/js/progress.js +22 -21
- data/application/js/publish.js +18 -7
- data/application/js/sharded_upload.js +9 -6
- data/application/js/spontaneous.js +3 -1
- data/application/js/top_bar.js +264 -173
- data/application/js/upload.js +12 -5
- data/application/js/upload_manager.js +4 -3
- data/application/js/user.js +1 -2
- data/application/js/views/box_view.js +1 -1
- data/application/js/views/page_view.js +16 -5
- data/application/js/views/piece_view.js +5 -4
- data/application/static/font/fontawesome-webfont-1c66a4738b40ef0f6b1abca0ba9a796d.ttf +0 -0
- data/application/views/index.erb +6 -14
- data/application/views/login.erb +6 -25
- data/application/views/schema_modification_error.html.erb +3 -7
- data/db/migrations/20130114120000_create_revision_tables.rb +2 -2
- data/db/migrations/20130813111009_increase_path_length.rb +14 -0
- data/gem-public_cert.pem +20 -0
- data/lib/spontaneous/asset/app_compiler.rb +44 -0
- data/lib/spontaneous/asset/environment.rb +225 -0
- data/lib/spontaneous/asset.rb +2 -67
- data/lib/spontaneous/box.rb +0 -1
- data/lib/spontaneous/capistrano/deploy.rb +2 -2
- data/lib/spontaneous/capistrano/sync.rb +1 -1
- data/lib/spontaneous/cli/init.rb +36 -13
- data/lib/spontaneous/cli/server.rb +0 -1
- data/lib/spontaneous/cli/site.rb +2 -1
- data/lib/spontaneous/cli.rb +3 -1
- data/lib/spontaneous/collections/entry_set.rb +4 -12
- data/lib/spontaneous/collections/hash_with_fallback.rb +20 -0
- data/lib/spontaneous/collections/prototype_set.rb +6 -5
- data/lib/spontaneous/crypt.rb +2 -2
- data/lib/spontaneous/data_mapper/content_model/associations.rb +115 -63
- data/lib/spontaneous/data_mapper.rb +1 -1
- data/lib/spontaneous/errors.rb +6 -0
- data/lib/spontaneous/extensions/object_space.rb +6 -0
- data/lib/spontaneous/facet.rb +1 -0
- data/lib/spontaneous/field/base.rb +86 -13
- data/lib/spontaneous/field/boolean.rb +65 -0
- data/lib/spontaneous/field/file.rb +17 -6
- data/lib/spontaneous/field/html.rb +13 -0
- data/lib/spontaneous/field/image/size.rb +76 -0
- data/lib/spontaneous/field/image.rb +99 -414
- data/lib/spontaneous/field/tags.rb +36 -0
- data/lib/spontaneous/field/update.rb +1 -1
- data/lib/spontaneous/field/webvideo/fallback.rb +41 -0
- data/lib/spontaneous/field/webvideo/vimeo.rb +113 -0
- data/lib/spontaneous/field/webvideo/vine.rb +94 -0
- data/lib/spontaneous/field/webvideo/youtube.rb +133 -0
- data/lib/spontaneous/field/webvideo.rb +100 -250
- data/lib/spontaneous/field.rb +1 -1
- data/lib/spontaneous/generators/site/Gemfile.tt +5 -14
- data/lib/spontaneous/generators/site/assets/README.md +20 -0
- data/lib/spontaneous/generators/site/assets/css/site.scss +8 -0
- data/lib/spontaneous/generators/site/assets/js/site.js +6 -0
- data/lib/spontaneous/generators/site/config/deploy.rb.tt +9 -0
- data/lib/spontaneous/generators/site/config/user_levels.yml +14 -3
- data/lib/spontaneous/generators/site/public/README.md +12 -0
- data/lib/spontaneous/generators/site/templates/layouts/standard.html.cut.tt +2 -2
- data/lib/spontaneous/generators/site.rb +77 -35
- data/lib/spontaneous/layout.rb +6 -7
- data/lib/spontaneous/loader.rb +21 -13
- data/lib/spontaneous/media/file.rb +22 -9
- data/lib/spontaneous/media/image/attributes.rb +33 -0
- data/lib/spontaneous/media/image/format/gif.rb +4 -0
- data/lib/spontaneous/media/image/format/jpg.rb +17 -0
- data/lib/spontaneous/media/image/format/png.rb +4 -0
- data/lib/spontaneous/media/image/format/webp.rb +26 -0
- data/lib/spontaneous/media/image/format.rb +79 -0
- data/lib/spontaneous/media/image/optimizer.rb +69 -0
- data/lib/spontaneous/media/image/processor.rb +17 -0
- data/lib/spontaneous/media/image/renderable.rb +52 -0
- data/lib/spontaneous/media/image/skeptick.rb +70 -0
- data/lib/spontaneous/media/image.rb +50 -0
- data/lib/spontaneous/media/temp_file.rb +4 -0
- data/lib/spontaneous/media.rb +1 -0
- data/lib/spontaneous/model/core/aliases.rb +14 -8
- data/lib/spontaneous/model/core/boxes.rb +5 -2
- data/lib/spontaneous/model/core/entries.rb +4 -0
- data/lib/spontaneous/model/core/entry.rb +1 -0
- data/lib/spontaneous/model/core/fields.rb +5 -2
- data/lib/spontaneous/model/core/locks.rb +16 -0
- data/lib/spontaneous/model/core/media.rb +1 -15
- data/lib/spontaneous/model/core.rb +31 -1
- data/lib/spontaneous/model/page/controllers.rb +2 -2
- data/lib/spontaneous/model/page/formats.rb +1 -4
- data/lib/spontaneous/model/page/layouts.rb +6 -2
- data/lib/spontaneous/model/page/locks.rb +8 -2
- data/lib/spontaneous/model/page/page_tree.rb +2 -2
- data/lib/spontaneous/model/page/paths.rb +74 -9
- data/lib/spontaneous/model/page.rb +11 -3
- data/lib/spontaneous/model.rb +6 -6
- data/lib/spontaneous/output/context/render_cache.rb +23 -0
- data/lib/spontaneous/output/context.rb +56 -30
- data/lib/spontaneous/output/helpers/script_helper.rb +9 -53
- data/lib/spontaneous/output/helpers/stylesheet_helper.rb +8 -40
- data/lib/spontaneous/output/template/renderer.rb +17 -5
- data/lib/spontaneous/output.rb +0 -1
- data/lib/spontaneous/paths.rb +6 -2
- data/lib/spontaneous/permissions/access_key.rb +18 -0
- data/lib/spontaneous/permissions/user.rb +1 -1
- data/lib/spontaneous/permissions.rb +4 -1
- data/lib/spontaneous/plugins/application/state.rb +19 -12
- data/lib/spontaneous/prototypes/field_prototype.rb +14 -8
- data/lib/spontaneous/published_revision.rb +7 -0
- data/lib/spontaneous/publishing/immediate.rb +43 -34
- data/lib/spontaneous/publishing/revision.rb +9 -6
- data/lib/spontaneous/rack/asset_server.rb +20 -0
- data/lib/spontaneous/rack/back/alias.rb +46 -0
- data/lib/spontaneous/rack/back/application_assets.rb +28 -0
- data/lib/spontaneous/rack/back/base.rb +34 -0
- data/lib/spontaneous/rack/back/changes.rb +19 -0
- data/lib/spontaneous/rack/back/content.rb +54 -0
- data/lib/spontaneous/rack/back/events.rb +38 -0
- data/lib/spontaneous/rack/back/field.rb +37 -0
- data/lib/spontaneous/rack/back/file.rb +118 -0
- data/lib/spontaneous/rack/back/helpers.rb +71 -0
- data/lib/spontaneous/rack/back/index.rb +16 -0
- data/lib/spontaneous/rack/back/login.rb +47 -0
- data/lib/spontaneous/rack/back/map.rb +24 -0
- data/lib/spontaneous/rack/back/page.rb +46 -0
- data/lib/spontaneous/rack/back/preview.rb +43 -0
- data/lib/spontaneous/rack/back/schema.rb +30 -0
- data/lib/spontaneous/rack/back/site.rb +25 -0
- data/lib/spontaneous/rack/back/site_assets.rb +13 -0
- data/lib/spontaneous/rack/back/unsupported_browser.rb +7 -0
- data/lib/spontaneous/rack/{user_admin.rb → back/user_admin.rb} +2 -5
- data/lib/spontaneous/rack/back.rb +85 -764
- data/lib/spontaneous/rack/cacheable_file.rb +3 -3
- data/lib/spontaneous/rack/front.rb +16 -9
- data/lib/spontaneous/rack/middleware/authenticate.rb +65 -0
- data/lib/spontaneous/rack/middleware/csrf.rb +66 -0
- data/lib/spontaneous/rack/middleware/reloader.rb +52 -0
- data/lib/spontaneous/rack/middleware/scope.rb +60 -0
- data/lib/spontaneous/rack/middleware.rb +6 -0
- data/lib/spontaneous/rack/page_controller.rb +18 -5
- data/lib/spontaneous/rack/public.rb +17 -11
- data/lib/spontaneous/rack.rb +34 -24
- data/lib/spontaneous/revision.rb +29 -2
- data/lib/spontaneous/schema/uid.rb +4 -3
- data/lib/spontaneous/schema/uid_map.rb +5 -24
- data/lib/spontaneous/schema.rb +1 -0
- data/lib/spontaneous/search/database.rb +8 -0
- data/lib/spontaneous/search/field.rb +1 -1
- data/lib/spontaneous/search/index.rb +3 -5
- data/lib/spontaneous/server.rb +1 -1
- data/lib/spontaneous/simultaneous.rb +1 -1
- data/lib/spontaneous/site/features.rb +4 -5
- data/lib/spontaneous/site/helpers.rb +22 -5
- data/lib/spontaneous/site/instance.rb +2 -2
- data/lib/spontaneous/site/selectors.rb +22 -3
- data/lib/spontaneous/storage/cloud.rb +13 -9
- data/lib/spontaneous/storage/local.rb +11 -6
- data/lib/spontaneous/style.rb +40 -23
- data/lib/spontaneous/utils/database/mysql_dumper.rb +1 -1
- data/lib/spontaneous/utils/smush_it.rb +1 -1
- data/lib/spontaneous/version.rb +1 -1
- data/lib/spontaneous.rb +35 -33
- data/spontaneous.gemspec +53 -787
- data/test/experimental/test_crypt.rb +56 -56
- data/test/experimental/test_features.rb +16 -27
- data/test/fixtures/assets/public1/css/data.css.scss +3 -0
- data/test/fixtures/assets/public1/css/image1.css.scss +4 -0
- data/test/fixtures/assets/public1/css/import.css.scss +1 -0
- data/test/fixtures/assets/public1/css/urlhash.css.scss +3 -0
- data/test/fixtures/assets/public1/js/a.js +1 -1
- data/test/fixtures/assets/public1/js/all.js +4 -0
- data/test/fixtures/assets/public1/js/{m.coffee → m.js.coffee} +1 -0
- data/test/fixtures/assets/public1/x.js +1 -0
- data/test/fixtures/assets/public2/css/all.css +4 -0
- data/test/fixtures/assets/public2/css/missing.css.scss +3 -0
- data/test/fixtures/assets/public2/i/y.png +0 -0
- data/test/fixtures/assets/public2/js/b.js +1 -1
- data/test/fixtures/assets/public2/js/c.js +1 -1
- data/test/fixtures/images/size.extended.webp +0 -0
- data/test/fixtures/images/size.lossless.webp +0 -0
- data/test/fixtures/images/size.lossy.webp +0 -0
- data/test/fixtures/schema/before.yml +4 -4
- data/test/fixtures/schema/schema.yml +1 -1
- data/test/fixtures/templates/aliases/aaa.html.cut +0 -0
- data/test/fixtures/templates/extended/partial_with_renderer.html.cut +1 -0
- data/test/fixtures/templates/extended/with_includes_and_renderer.html.cut +2 -0
- data/test/functional/test_application.rb +108 -106
- data/test/functional/test_back.rb +924 -930
- data/test/functional/test_front.rb +285 -238
- data/test/functional/test_user_manager.rb +75 -100
- data/test/integration/test_installation.rb +1 -1
- data/test/support/matchers.rb +12 -0
- data/test/support/minitest.rb +121 -0
- data/test/support/rack.rb +45 -0
- data/test/support/test_start_finish.rb +103 -0
- data/test/test_helper.rb +21 -68
- data/test/test_integration_helper.rb +1 -3
- data/test/unit/test_alias.rb +432 -408
- data/test/unit/test_asset_bundler.rb +58 -58
- data/test/unit/test_assets.rb +485 -155
- data/test/unit/test_async.rb +16 -37
- data/test/unit/test_authentication.rb +425 -457
- data/test/unit/test_boxes.rb +191 -191
- data/test/unit/test_changesets.rb +244 -254
- data/test/unit/test_config.rb +128 -142
- data/test/unit/test_content.rb +313 -359
- data/test/unit/test_content_inheritance.rb +29 -30
- data/test/unit/test_datamapper.rb +1205 -1080
- data/test/unit/test_datamapper_content.rb +49 -51
- data/test/unit/test_extensions.rb +23 -23
- data/test/unit/test_fields.rb +1488 -1180
- data/test/unit/test_formats.rb +158 -158
- data/test/unit/test_generators.rb +98 -40
- data/test/unit/test_helpers.rb +73 -76
- data/test/unit/test_image_size.rb +53 -22
- data/test/unit/test_images.rb +164 -165
- data/test/unit/test_layouts.rb +133 -122
- data/test/unit/test_logger.rb +14 -17
- data/test/unit/test_media.rb +69 -84
- data/test/unit/test_modifications.rb +513 -525
- data/test/unit/test_page.rb +462 -361
- data/test/unit/test_permissions.rb +379 -364
- data/test/unit/test_piece.rb +67 -75
- data/test/unit/test_plugins.rb +82 -89
- data/test/unit/test_prototype_set.rb +215 -216
- data/test/unit/test_prototypes.rb +114 -124
- data/test/unit/test_publishing.rb +252 -289
- data/test/unit/test_render.rb +167 -115
- data/test/unit/test_revisions.rb +436 -444
- data/test/unit/test_schema.rb +339 -309
- data/test/unit/test_search.rb +577 -574
- data/test/unit/test_serialisation.rb +136 -147
- data/test/unit/test_site.rb +252 -227
- data/test/unit/test_skeptick.rb +130 -0
- data/test/unit/test_storage.rb +46 -40
- data/test/unit/test_structure.rb +57 -66
- data/test/unit/test_styles.rb +104 -104
- data/test/unit/test_templates.rb +72 -57
- data/test/unit/test_type_hierarchy.rb +15 -16
- data/test/unit/test_visibility.rb +239 -257
- metadata +455 -326
- data/application/js/vendor/JS.Class-2.1.5/CHANGELOG +0 -283
- data/application/js/vendor/JS.Class-2.1.5/MIT-LICENSE +0 -30
- data/application/js/vendor/JS.Class-2.1.5/README +0 -30
- data/application/js/vendor/JS.Class-2.1.5/min/command.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/comparable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/constant_scope.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/decorator.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/enumerable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/forwardable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/hash.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/linked_list.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/loader.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/method_chain.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/observable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/package.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/proxy.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/ruby.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/set.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/stack_trace.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/state.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/stdlib.js +0 -16
- data/application/js/vendor/jquery-1.6.2.min.js +0 -18
- data/application/js/vendor/jquery-ui-1.8.16.custom.min.js +0 -791
- data/application/js/vendor/jquery-ui-1.8.9.custom.min.js +0 -415
- data/application/static/font/fontawesome-webfont-5c5c21100a346972a82c34c5e96ffcfe.ttf +0 -0
- data/application/static/select-arrow-6e7dd3745b00e934b0d7a3250c46558b.png +0 -0
- data/bin/limit-upload +0 -5
- data/bin/unlimit-upload +0 -3
- data/lib/spontaneous/asset/file.rb +0 -25
- data/lib/spontaneous/asset/source.rb +0 -28
- data/lib/spontaneous/image_size.rb +0 -123
- data/lib/spontaneous/output/assets/compression.rb +0 -58
- data/lib/spontaneous/output/assets.rb +0 -32
- data/lib/spontaneous/rack/around_back.rb +0 -20
- data/lib/spontaneous/rack/around_front.rb +0 -27
- data/lib/spontaneous/rack/around_preview.rb +0 -22
- data/lib/spontaneous/rack/assets.rb +0 -126
- data/lib/spontaneous/rack/authentication.rb +0 -20
- data/lib/spontaneous/rack/cookie_authentication.rb +0 -38
- data/lib/spontaneous/rack/helpers.rb +0 -52
- data/lib/spontaneous/rack/http.rb +0 -18
- data/lib/spontaneous/rack/media.rb +0 -30
- data/lib/spontaneous/rack/query_authentication.rb +0 -35
- data/lib/spontaneous/rack/reloader.rb +0 -45
- data/lib/spontaneous/rack/user_helpers.rb +0 -28
- /data/{README → application/js/field/markdown/text_command.js} +0 -0
- /data/application/js/vendor/{JS.Class-2.1.5/min/core.js → js.class-2.1.5.min.js} +0 -0
- /data/test/fixtures/assets/public1/css/{a.scss → a.css.scss} +0 -0
- /data/{lib/spontaneous/generators/site/public/css/site.scss → test/fixtures/assets/public1/x.css} +0 -0
- /data/{lib/spontaneous/generators/site/public/js/.empty_directory → test/fixtures/assets/public1/x.png} +0 -0
- /data/test/fixtures/assets/public2/css/{b.scss → b.css.scss} +0 -0
- /data/test/fixtures/assets/public2/js/{n.coffee → n.js.coffee} +0 -0
- /data/test/fixtures/back/{public → assets}/css/sass_include.scss +0 -0
- /data/test/fixtures/back/{public → assets}/css/sass_template.scss +0 -0
- /data/test/fixtures/back/{public → assets}/js/coffeescript.coffee +0 -0
- /data/{lib/spontaneous/generators/site/public/js/site.js → test/fixtures/templates/aliases/aa_alias.html.cut} +0 -0
@@ -2,309 +2,159 @@
|
|
2
2
|
|
3
3
|
require 'open-uri'
|
4
4
|
require 'nokogiri'
|
5
|
+
require 'erb'
|
5
6
|
|
6
7
|
module Spontaneous::Field
|
7
8
|
class WebVideo < Base
|
8
9
|
has_editor
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
def id
|
15
|
-
value(:id)
|
16
|
-
end
|
17
|
-
|
18
|
-
def video_type
|
19
|
-
value(:type)
|
20
|
-
end
|
21
|
-
|
22
|
-
|
23
|
-
def generate_outputs(input)
|
24
|
-
values = {}
|
25
|
-
values[:html] = escape_html(input)
|
26
|
-
case input
|
27
|
-
when "", nil
|
28
|
-
# ignore this
|
29
|
-
when /youtube\.com.*\?.*v=([^&]+)/, /youtu.be\/([^&]+)/
|
30
|
-
id = $1
|
31
|
-
values.update(retrieve_youtube_metadata(id))
|
32
|
-
values[:id] = id
|
33
|
-
values[:type] = "youtube"
|
34
|
-
when /vimeo\.com\/(\d+)/
|
35
|
-
id = $1
|
36
|
-
values[:type] = "vimeo"
|
37
|
-
values.update(retrieve_vimeo_metadata(id))
|
38
|
-
values[:id] = id.to_s
|
39
|
-
else
|
40
|
-
logger.warn "WebVideo field doesn't recognise the URL '#{input}'"
|
11
|
+
class Provider
|
12
|
+
def self.id
|
13
|
+
name.demodulize.underscore
|
41
14
|
end
|
42
|
-
values
|
43
|
-
end
|
44
|
-
|
45
15
|
|
46
|
-
|
47
|
-
|
48
|
-
when :html
|
49
|
-
to_html(*args)
|
50
|
-
when :json
|
51
|
-
to_json(*args)
|
52
|
-
else
|
53
|
-
value(format)
|
16
|
+
def self.match(field, url)
|
17
|
+
# Implement in subclasses
|
54
18
|
end
|
55
|
-
end
|
56
19
|
|
20
|
+
attr_reader :attributes
|
57
21
|
|
58
|
-
|
59
|
-
|
60
|
-
case video_type
|
61
|
-
when "youtube"
|
62
|
-
to_youtube_html(opts)
|
63
|
-
when "vimeo"
|
64
|
-
to_vimeo_html(opts)
|
65
|
-
else
|
66
|
-
value(:html)
|
22
|
+
def initialize(field, attributes = {})
|
23
|
+
@field, @attributes = field, attributes
|
67
24
|
end
|
68
|
-
end
|
69
25
|
|
70
|
-
|
71
|
-
|
72
|
-
opts = args.extract_options!
|
73
|
-
params = \
|
74
|
-
case video_type
|
75
|
-
when "youtube"
|
76
|
-
youtube_attributes(opts)
|
77
|
-
when "vimeo"
|
78
|
-
vimeo_attributes(opts)
|
79
|
-
else
|
80
|
-
{:tagname => "iframe", :tag => "<iframe/>", :attr => {:src => value(:html)}}
|
26
|
+
def metadata
|
27
|
+
@attributes
|
81
28
|
end
|
82
|
-
Spontaneous.encode_json(params)
|
83
|
-
end
|
84
29
|
|
85
|
-
|
86
|
-
|
87
|
-
when "youtube"
|
88
|
-
youtube_src(opts)
|
89
|
-
when "vimeo"
|
90
|
-
vimeo_src(opts)
|
91
|
-
else
|
92
|
-
value(:html)
|
30
|
+
def video_id
|
31
|
+
attributes[:video_id]
|
93
32
|
end
|
94
|
-
end
|
95
33
|
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
end
|
100
|
-
|
101
|
-
def retrieve_vimeo_metadata(id)
|
102
|
-
url = "http://vimeo.com/api/v2/video/%s.json" % id
|
103
|
-
response = \
|
104
|
-
begin
|
105
|
-
open(url).read
|
106
|
-
rescue => e
|
107
|
-
logger.error("Unable to retrieve metadata for video ##{id} from Vimeo: '#{e}'")
|
108
|
-
"[{}]"
|
34
|
+
def src(options = {})
|
35
|
+
# Implement in subclasses
|
36
|
+
video_id
|
109
37
|
end
|
110
|
-
metadata = Spontaneous.parse_json(response) rescue [{}]
|
111
|
-
metadata = metadata.first || {}
|
112
|
-
end
|
113
38
|
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
39
|
+
# Don't show an unknown/default provider in the template
|
40
|
+
#
|
41
|
+
# TODO: Make default provider use the oembed api to create the right
|
42
|
+
# embed code for any video service (that supports the oembed system)
|
43
|
+
# Difficulty will be making that embed code adaptable to sizes configured
|
44
|
+
# in the field prototype & templates.
|
45
|
+
def to_html(options = {})
|
46
|
+
""
|
47
|
+
end
|
119
48
|
|
120
|
-
|
121
|
-
"description" => entry.xpath("media:group/media:description").text.strip,
|
122
|
-
"thumbnail_large" => entry.xpath('media:group/media:thumbnail[@yt:name="hqdefault"]').first["url"].strip,
|
123
|
-
"thumbnail_small" => entry.xpath('media:group/media:thumbnail[@yt:name="default"]').first["url"].strip,
|
124
|
-
"user_name" => entry.xpath("xmlns:author/xmlns:name").text.strip,
|
125
|
-
"upload_date" => Time.parse(entry.xpath("xmlns:published").text.strip).strftime("%Y-%m-%d %H:%M:%S"),
|
126
|
-
"tags" => entry.xpath("media:group/media:keywords").text.strip,
|
127
|
-
"duration" => entry.xpath("media:group/yt:duration").first['seconds'].to_i,
|
128
|
-
"stats_number_of_likes" => entry.xpath("yt:rating").first['numLikes'].to_i,
|
129
|
-
"stats_number_of_plays" => entry.xpath("yt:statistics").first['viewCount'].to_i,
|
130
|
-
"stats_number_of_comments" => entry.xpath("gd:comments/gd:feedLink").first['countHint'].to_i }
|
131
|
-
rescue
|
49
|
+
def as_json(options = {})
|
132
50
|
{}
|
133
51
|
end
|
134
|
-
end
|
135
52
|
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
:
|
145
|
-
|
146
|
-
end
|
53
|
+
def default_player_options
|
54
|
+
{ :width => 640,
|
55
|
+
:height => 360,
|
56
|
+
:fullscreen => true,
|
57
|
+
:api => false,
|
58
|
+
:autoplay => false,
|
59
|
+
:loop => false,
|
60
|
+
:showinfo => true
|
61
|
+
}.merge(@field.prototype.options[:player] || {})
|
62
|
+
end
|
147
63
|
|
64
|
+
def hash_to_attributes(attributes)
|
65
|
+
attributes.to_a.map { |name, value| "#{name}=\"#{escape_html(value)}\"" }.join(" ")
|
66
|
+
end
|
148
67
|
|
149
|
-
|
150
|
-
|
68
|
+
def escape_html(input)
|
69
|
+
ERB::Util.html_escape(input)
|
70
|
+
end
|
151
71
|
|
152
|
-
|
153
|
-
|
72
|
+
def make_query_options!(hash)
|
73
|
+
hash.each { |k, v|
|
74
|
+
hash[k] = 1 if v == true
|
75
|
+
hash[k] = 0 if v == false
|
76
|
+
}
|
77
|
+
end
|
154
78
|
end
|
155
79
|
|
156
|
-
def
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
attributes = {
|
161
|
-
:type => "text/html",
|
162
|
-
:frameborder => "0",
|
163
|
-
:width => o.delete(:width),
|
164
|
-
:height => o.delete(:height)
|
80
|
+
def self.providers
|
81
|
+
@providers ||= {
|
82
|
+
nil => Spontaneous::Field::WebVideo::Fallback
|
165
83
|
}
|
166
|
-
attributes.update(:webkitAllowFullScreen => "yes", :allowFullScreen => "yes") if o[:fullscreen]
|
167
|
-
|
168
|
-
make_query_options!(o)
|
169
|
-
attributes[:src] = vimeo_src_with_options(o)
|
170
|
-
|
171
|
-
{:tagname => "iframe", :tag => "<iframe/>", :attr => attributes}
|
172
|
-
end
|
173
|
-
|
174
|
-
def make_vimeo_options(options = {})
|
175
|
-
o = default_player_options
|
176
|
-
vimeo_options = o.delete(:vimeo) || {}
|
177
|
-
|
178
|
-
o.merge!(vimeo_options)
|
179
|
-
|
180
|
-
if o.delete(:showinfo)
|
181
|
-
o[:portrait] = true
|
182
|
-
o[:title] = true
|
183
|
-
o[:byline] = true
|
184
|
-
else
|
185
|
-
o[:portrait] = false
|
186
|
-
o[:title] = false
|
187
|
-
o[:byline] = false
|
188
|
-
end
|
189
|
-
|
190
|
-
vimeo_options = options.delete(:vimeo) || {}
|
191
|
-
|
192
|
-
o = {
|
193
|
-
:portrait => true,
|
194
|
-
:title => true,
|
195
|
-
:byline => true,
|
196
|
-
:player_id => "vimeo#{owner.id}id#{value(:id)}"
|
197
|
-
}.merge(o).merge(vimeo_options).merge(options)
|
198
|
-
o
|
199
84
|
end
|
200
85
|
|
201
|
-
def
|
202
|
-
|
203
|
-
make_query_options!(o)
|
204
|
-
vimeo_src_with_options(o)
|
86
|
+
def self.provider(provider)
|
87
|
+
providers[provider.id] = provider
|
205
88
|
end
|
206
89
|
|
207
|
-
def
|
208
|
-
|
209
|
-
"title" => o[:title],
|
210
|
-
"byline" => o[:byline],
|
211
|
-
"portrait" => o[:portrait],
|
212
|
-
"autoplay" => o[:autoplay],
|
213
|
-
"loop" => o[:loop],
|
214
|
-
"api" => o[:api],
|
215
|
-
"player_id" => o[:player_id] }
|
216
|
-
params.update("color" => o[:color]) if o.key?(:color)
|
217
|
-
params = ::Rack::Utils.build_query(params)
|
218
|
-
"http://player.vimeo.com/video/#{value(:id)}?#{params}"
|
90
|
+
def outputs
|
91
|
+
[:provider, :video_id]
|
219
92
|
end
|
220
93
|
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
94
|
+
# Earlier versions used :id to store the video id
|
95
|
+
# so to support them I need to try it first.
|
96
|
+
def video_id
|
97
|
+
values[:video_id]
|
225
98
|
end
|
226
99
|
|
100
|
+
def generate_outputs(input)
|
101
|
+
values = {}
|
102
|
+
values[:html] = escape_html(input)
|
227
103
|
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
:width => o.delete(:width),
|
235
|
-
:height => o.delete(:height)
|
236
|
-
}
|
237
|
-
|
238
|
-
make_query_options!(o)
|
239
|
-
|
240
|
-
attributes[:src] = youtube_src_with_options(o)
|
241
|
-
|
242
|
-
attributes.update(:webkitAllowFullScreen => "yes", :allowFullScreen => "yes") if o[:fullscreen]
|
243
|
-
|
244
|
-
{:tagname => "iframe", :tag => "<iframe/>", :attr => attributes}
|
104
|
+
metadata = nil
|
105
|
+
Spontaneous::Field::WebVideo.providers.each do |_, p|
|
106
|
+
break if metadata = p.match(self, input)
|
107
|
+
end
|
108
|
+
metadata ||= Provider.new(self, :video_id => input, :provider => nil).metadata
|
109
|
+
values.merge(metadata || {})
|
245
110
|
end
|
246
111
|
|
247
|
-
def
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
if o.delete(:showinfo)
|
254
|
-
o[:showinfo] = true
|
255
|
-
o[:showsearch] = true
|
112
|
+
def render(format=:html, *args)
|
113
|
+
case format
|
114
|
+
when :html
|
115
|
+
to_html(*args)
|
116
|
+
when :json
|
117
|
+
to_json(*args)
|
256
118
|
else
|
257
|
-
|
258
|
-
o[:showsearch] = false
|
119
|
+
value(format)
|
259
120
|
end
|
121
|
+
end
|
260
122
|
|
261
|
-
|
262
|
-
|
263
|
-
:theme => "dark",
|
264
|
-
:hd => true,
|
265
|
-
:controls => true,
|
266
|
-
:showinfo => true,
|
267
|
-
:showsearch => true,
|
268
|
-
:autohide => 2,
|
269
|
-
:rel => true
|
270
|
-
}.merge(o).merge(youtube_options).merge(options)
|
123
|
+
def to_html(*args)
|
124
|
+
provider.to_html(*args)
|
271
125
|
end
|
272
126
|
|
273
|
-
def
|
274
|
-
|
275
|
-
make_query_options!(o)
|
276
|
-
youtube_src_with_options(o)
|
127
|
+
def provider_id
|
128
|
+
values[:provider]
|
277
129
|
end
|
278
130
|
|
279
|
-
def
|
280
|
-
|
281
|
-
|
282
|
-
"theme" => o[:theme],
|
283
|
-
"hd" => o[:hd],
|
284
|
-
"fs" => o[:fullscreen],
|
285
|
-
"controls" => o[:controls],
|
286
|
-
"autoplay" => o[:autoplay],
|
287
|
-
"showinfo" => o[:showinfo],
|
288
|
-
"showsearch" => o[:showsearch],
|
289
|
-
"loop" => o[:loop],
|
290
|
-
"autohide" => o[:autohide],
|
291
|
-
"rel" => o[:rel],
|
292
|
-
"enablejsapi" => o[:api] })
|
293
|
-
"http://www.youtube.com/embed/#{value(:id)}?#{params}"
|
131
|
+
def provider
|
132
|
+
provider = Spontaneous::Field::WebVideo.providers.fetch(provider_id, fallback_provider)
|
133
|
+
provider.new(self, values)
|
294
134
|
end
|
295
135
|
|
296
|
-
def
|
297
|
-
|
136
|
+
def fallback_provider
|
137
|
+
Spontaneous::Field::WebVideo.providers.fetch("fallback")
|
298
138
|
end
|
299
139
|
|
140
|
+
def to_json(*args)
|
141
|
+
opts = args.extract_options!
|
142
|
+
Spontaneous.encode_json(provider.as_json(opts))
|
143
|
+
end
|
300
144
|
|
301
|
-
def
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
145
|
+
def src(opts = {})
|
146
|
+
provider.src(opts)
|
147
|
+
end
|
148
|
+
|
149
|
+
def ui_preview_value
|
150
|
+
# render(:html, :width => 480, :height => 270)
|
151
|
+
src
|
306
152
|
end
|
307
153
|
|
308
154
|
self.register(:webvideo)
|
309
155
|
end
|
310
156
|
end
|
157
|
+
|
158
|
+
%w(fallback vimeo youtube vine).each do |provider|
|
159
|
+
require ::File.dirname(__FILE__) + "/webvideo/#{provider}.rb"
|
160
|
+
end
|
data/lib/spontaneous/field.rb
CHANGED
@@ -75,6 +75,6 @@ module Spontaneous
|
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
|
-
[:string, :long_string, :file, :image, :date, :markdown, :location, :webvideo, :select].each do |type|
|
78
|
+
[:string, :long_string, :html, :file, :image, :date, :markdown, :location, :webvideo, :select, :tags, :boolean].each do |type|
|
79
79
|
require "spontaneous/field/#{type}"
|
80
80
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
source
|
1
|
+
source "https://rubygems.org"
|
2
2
|
|
3
3
|
# You can either fix the version of Spontaneous that this site uses
|
4
4
|
gem 'spontaneous', '~> <%= Spontaneous::VERSION %>'
|
@@ -7,27 +7,18 @@ gem 'spontaneous', '~> <%= Spontaneous::VERSION %>'
|
|
7
7
|
|
8
8
|
gem '<%= @database[:gem].name %>', '<%= @database[:gem].requirement %>'
|
9
9
|
|
10
|
+
# Your favorite ExecJS compatible engine
|
11
|
+
gem 'therubyracer', '~> 0.11.1'
|
12
|
+
|
10
13
|
# Deploy with Capistrano
|
11
14
|
gem 'capistrano', '~> 2.9'
|
12
15
|
|
13
16
|
# If you want to enable the built in search functionality then you must un-comment
|
14
|
-
# the xapian-
|
17
|
+
# the xapian-ruby dependency below. It is not included by default
|
15
18
|
# because the xapian library takes a very long time to build.
|
16
19
|
#gem 'xapian-ruby', "~> 1.2.12"
|
17
|
-
#gem 'xapian-fu', "~> 1.3"
|
18
20
|
|
19
21
|
# group :production do
|
20
22
|
# gem 'thin', '~> 1.3.1'
|
21
23
|
# gem 'unicorn', '~> 4.2'
|
22
24
|
# end
|
23
|
-
|
24
|
-
|
25
|
-
# source gemfiles from Plugins & Features
|
26
|
-
Dir['*/**/Gemfile'].each do |path|
|
27
|
-
gemfile = File.expand_path(path)
|
28
|
-
unless gemfile == File.expand_path(__FILE__)
|
29
|
-
dependencies = File.read(gemfile).gsub(/^\s*source.+$/, '')
|
30
|
-
eval(dependencies)
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
@@ -0,0 +1,20 @@
|
|
1
|
+
Assets
|
2
|
+
======
|
3
|
+
|
4
|
+
Spontaneous uses [Sprockets](https://github.com/sstephenson/sprockets)
|
5
|
+
to manage assets.
|
6
|
+
|
7
|
+
Place any stylesheet, javascript or images under "assets" (following any
|
8
|
+
structure that you like) and then during publishing Spontaneous will bundle,
|
9
|
+
compile, compress and fingerprint these files.
|
10
|
+
|
11
|
+
To reference assets within templates use the `asset_path` helper which will
|
12
|
+
intelligently translate Sprocket's "logical paths" into the compressed &
|
13
|
+
fingerprinted version.
|
14
|
+
|
15
|
+
Within SASS templates Sprockets provides a set of useful helpers including
|
16
|
+
`asset_url` and `asset_data_uri`.
|
17
|
+
|
18
|
+
(See: <https://github.com/sstephenson/sprockets/blob/master/lib/sprockets/sass_functions.rb>.)
|
19
|
+
|
20
|
+
For more information on using Sprockets see its [GitHub page](https://github.com/sstephenson/sprockets).
|
@@ -6,10 +6,19 @@ require "spontaneous/capistrano"
|
|
6
6
|
require "bundler/capistrano"
|
7
7
|
|
8
8
|
default_run_options[:pty] = true
|
9
|
+
# run capistrano in a login shell so that ruby version managers can do their thing
|
10
|
+
# otherwise it's just a constant problem trying to use the installed/configured
|
11
|
+
# version of ruby
|
12
|
+
default_run_options[:shell] = '/bin/bash -l'
|
13
|
+
|
9
14
|
|
10
15
|
ssh_options[:port] = 22
|
11
16
|
ssh_options[:forward_agent] = true
|
12
17
|
|
18
|
+
set :ruby_version, "<%= RUBY_VERSION %>-p<%= RUBY_PATCHLEVEL %>"
|
19
|
+
|
20
|
+
set :domain, "<%= @domain %>"
|
21
|
+
set :cms, "edit.<%= @domain %>"
|
13
22
|
set :application, "<%= @domain %>"
|
14
23
|
server "<%= @domain %>", :app, :web, :db, :media
|
15
24
|
set :user, "<%= @username %>"
|
@@ -3,20 +3,31 @@
|
|
3
3
|
# Feel free to add your own
|
4
4
|
# the 'root' user level is added automatically and
|
5
5
|
# will always be higher than any you add here
|
6
|
+
#
|
6
7
|
# Similary the 'none' level will always be lower
|
7
8
|
# The order is important -- later leves are higher levels
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
9
|
+
#
|
10
|
+
# Higher levels will always be able to do everything that a lower level can do
|
11
|
+
#
|
12
|
+
# Flags:
|
13
|
+
#
|
14
|
+
# Flags are set per-level -- higher levels don't inherit the value from lower levels.
|
15
|
+
#
|
16
|
+
# - 'publish' defines the particular level's access to the publishing process. The default is false
|
17
|
+
#
|
18
|
+
# - 'admin' allows users to administer the site's user accounts. The default is false
|
19
|
+
|
11
20
|
|
12
21
|
- :name: editor
|
13
22
|
:publish: false
|
14
23
|
|
15
24
|
- :name: admin
|
16
25
|
:publish: true
|
26
|
+
:admin: true
|
17
27
|
|
18
28
|
- :name: designer
|
19
29
|
:publish: true
|
30
|
+
:admin: true
|
20
31
|
|
21
32
|
# - :name: my_level
|
22
33
|
# :publish: true
|
@@ -0,0 +1,12 @@
|
|
1
|
+
Public Files
|
2
|
+
============
|
3
|
+
|
4
|
+
Any files you place in here will be publicly available on your site
|
5
|
+
under the root (`/`) path. For instance "favicon.ico" will be publicly
|
6
|
+
available as http://example.com/favicon.ico etc.
|
7
|
+
|
8
|
+
Any CSS stylesheets, Javascript source files or images that you use
|
9
|
+
should be placed under the "assets" directory where Spontaneous can
|
10
|
+
manage them using Sprockets' powerful bundling, compression and
|
11
|
+
fingerprinting functions (see `assets/README.md` for more
|
12
|
+
information).
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<meta charset="UTF-8">
|
9
9
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
10
10
|
<title>${ title } <%= @domain %></title>
|
11
|
-
${ stylesheets '
|
11
|
+
${ stylesheets 'css/site' }
|
12
12
|
</head>
|
13
13
|
<body>
|
14
14
|
%{ block :content }
|
@@ -16,6 +16,6 @@
|
|
16
16
|
${ fields }
|
17
17
|
${ boxes }
|
18
18
|
%{ endblock :content }
|
19
|
-
${ scripts %w(
|
19
|
+
${ scripts %w(js/site) }
|
20
20
|
</body>
|
21
21
|
</html>
|