Coder Social home page Coder Social logo

helpfulrobot / i-lateral-silverstripe-commerce-downloadableproduct Goto Github PK

View Code? Open in Web Editor NEW

This project forked from i-lateral/silverstripe-commerce-downloadableproduct

0.0 2.0 0.0 11 KB

Add downloadable product type to the Silverstripe Commerce module

License: BSD 3-Clause "New" or "Revised" License

PHP 100.00%

i-lateral-silverstripe-commerce-downloadableproduct's Introduction

Silverstripe Commerce

Downloadable Product Module

Add downloadable product type to the Silverstripe Commerce module that allows users to attach a file to a product that can only be downloaded when the user is logged in and has bought it.

Dependancies

  • SilverStripe Framework 3.1.x
  • Silverstripe Commerce

Installation

Install this module either by downloading and adding to:

[silverstripe-root]/commerce-downloadableproducts

Then run: dev/build/?flush=all

Or alternativly add use composer:

i-lateral/silverstripe-commerce-downloadableproduct

Usage

By default this module adds a "Downloadable Product" postage amount and sets up the mechanisams needed to buy and download products.

You will also need to do some additional tasks to ensure that users get the best experience and you keep your files secure.

NOTE: You will need to perform the following additional steps manually in order to gain the most from this module.

Restrict the downloads folder (using Apache or IIS 7)

The file downloads section of your Silverstripe install will need to be
restricted (otherwise users could share the download links). You can do this in your .htaccess or web.config by adding the following:

RewriteEngine On
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteRule assets/downloadable/* $frameworkDir/main.php?url=%1 [QSA]

Or alternativley, if you use web.config, add the following:

<rewrite>
    <rules>
        <rule name="Silverstripe downloadable products" stopProcessing="true">
            <match url="^assets/downloadable/(.*)$" />
            <action type="Rewrite" url="$frameworkDir/main.php?url={R:1}" appendQueryString="true" />
        </rule>
    </rules>
</rewrite>

NOTE: The IIS script above should work, but has not been tested, some tweaking may be required.

Add download link to orders pannel and emails

When you have access to a product in either the orders panel or an email then you can call $DownloadLink to render the download URL into the template. For example, in the order paid email you can add something,ike this:

OrderNotificationEmail_Customer.ss

<tbody><% loop $Items %>
    <tr>
        <td>
            {$Title} 
            <% if $Product.DownloadLink %>(<a href="$Product.DownloadLink">Download</a>)<% end_if %>
            <% if $StockID %>($StockID)<% end_if %><br/>
            <em>$CustomisationHTML</em>
        </td>
        <td style="text-align: right">{$Quantity}</td>
        <td style="text-align: right">{$Price.Nice}</td>
    </tr>
<% end_loop %></tbody>

i-lateral-silverstripe-commerce-downloadableproduct's People

Contributors

mlewis-everley avatar

Watchers

James Cloos avatar helpfulrobot avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.