[FEATURE] Custom Upload Directory

Got an idea? Missing something? Post your feature request here.

Moderator: moderators

[FEATURE] Custom Upload Directory

Postby awpti » Wed Apr 08, 2009 4:02 am

Right now, the option to upload file relies on the path you provide for music files, eg;

/usr/local/music = Music Dir

/usr/local/music/Incoming = automatically decided incoming directory.

Can that be changed to a separate setting and not pre-defined based upon a music directory?
awpti
 
Posts: 15
Joined: Thu Jan 15, 2009 5:53 am
Location: Phoenix, AZ

Postby justinf » Thu Apr 09, 2009 3:45 pm

I agree with this. I'd prefer to not have that folder mixed in with my music folder.
justinf
 
Posts: 9
Joined: Mon Apr 06, 2009 3:54 pm

Temporary workaround

Postby freleu » Fri Apr 10, 2009 3:05 pm

Ok I did a litle temporary "workaround" for this.

1. As admin - go a head and point out/add the directory where you want the Incoming repository to be. Activate it.

With standalone:
In youre <SUBSONIC_HOME>/jetty/webapp/WEB-INF/jsp
If you pulled it with the Tomcatserver instead there should be a WEB-INF directory inside the subsonic folder.

However. There in this folder you have "more.jsp" this is the page that is shown when clicked on the More-button on the page.

First take a backup, (copy the file to more.jsp.bkp or something,)
Then (since there is no way for me to upload a copy of the "more.jsp" i do like this: (open more.jsp with a texteditor and copy all of the following codecontent, mark all the content in youre more.jsp and paste the "new" content.)
Code: Select all
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1"%>



<html><head>

    <%@ include file="head.jsp" %>

    <style type="text/css">

        #progressBar {width: 350px; height: 10px; border: 1px solid black; display:none;}

        #progressBarContent {width: 0; height: 10px; background: url("<c:url value="/icons/progress.png"/>") repeat;}

    </style>

    <script type="text/javascript" src="<c:url value="/dwr/interface/transferService.js"/>"></script>

    <script type="text/javascript" src="<c:url value="/dwr/engine.js"/>"></script>

    <script type="text/javascript" src="<c:url value="/dwr/util.js"/>"></script>



    <script type="text/javascript">

        function refreshProgress() {

            transferService.getUploadInfo(updateProgress);

        }



        function updateProgress(uploadInfo) {



            var progressBar = document.getElementById("progressBar");

            var progressBarContent = document.getElementById("progressBarContent");

            var progressText = document.getElementById("progressText");





            if (uploadInfo.bytesTotal > 0) {

                var percent = Math.ceil((uploadInfo.bytesUploaded / uploadInfo.bytesTotal) * 100);

                var width = parseInt(percent * 3.5) + 'px';

                progressBarContent.style.width = width;

                progressText.innerHTML = percent + "<fmt:message key="more.upload.progress"/>";

                progressBar.style.display = "block";

                progressText.style.display = "block";

                window.setTimeout("refreshProgress()", 1000);

            } else {

                progressBar.style.display = "none";

                progressText.style.display = "none";

                window.setTimeout("refreshProgress()", 5000);

            }

        }

    </script>



</head>

<body class="mainframe" onload="${model.user.uploadRole ? "refreshProgress()" : ""}">



<h1>

    <img src="<spring:theme code="moreImage"/>" alt=""/>

    <fmt:message key="more.title"/>

</h1>



<c:if test="${model.user.streamRole}">

    <h2><img src="<spring:theme code="randomImage"/>" alt=""/>&nbsp;<fmt:message key="more.random.title"/></h2>



    <form method="post" action="randomPlaylist.view?">

        <table>

            <tr>

                <td><fmt:message key="more.random.text"/></td>

                <td>

                    <select name="size">

                        <option value="5"><fmt:message key="more.random.songs"><fmt:param value="5"/></fmt:message></option>

                        <option value="10" selected="true"><fmt:message key="more.random.songs"><fmt:param value="10"/></fmt:message></option>

                        <option value="20"><fmt:message key="more.random.songs"><fmt:param value="20"/></fmt:message></option>

                        <option value="50"><fmt:message key="more.random.songs"><fmt:param value="50"/></fmt:message></option>

                    </select>

                </td>

                <td><fmt:message key="more.random.genre"/></td>

                <td>

                    <select name="genre">

                        <option value="any"><fmt:message key="more.random.anygenre"/></option>

                        <c:forEach items="${model.genres}" var="genre">

                            <option value="${genre}">${genre}</option>

                        </c:forEach>

                    </select>

                </td>

                <td><fmt:message key="more.random.year"/></td>

                <td>

                    <select name="year">

                        <option value="any"><fmt:message key="more.random.anyyear"/></option>

                        <option value="2000 9999">&gt; 2000</option>

                        <option value="1990 1999">1990 &ndash; 1999</option>

                        <option value="1980 1989">1980 &ndash; 1989</option>

                        <option value="1970 1979">1970 &ndash; 1979</option>

                        <option value="1960 1969">1960 &ndash; 1969</option>

                        <option value="1950 1959">1950 &ndash; 1959</option>

                        <option value="0 1950">&lt; 1950</option>

                    </select>

                </td>

                <td><fmt:message key="more.random.folder"/></td>

                <td>

                    <select name="musicFolderId">

                        <option value="-1"><fmt:message key="more.random.anyfolder"/></option>

                        <c:forEach items="${model.musicFolders}" var="musicFolder">

                            <option value="${musicFolder.id}">${musicFolder.name}</option>

                        </c:forEach>

                    </select>

                </td>

                <td>

                    <input type="submit" value="<fmt:message key="more.random.ok"/>">

                </td>

            </tr>

            <c:if test="${not model.clientSidePlaylist}">

                <tr>

                    <td colspan="9">

                        <input type="checkbox" name="autoRandom" id="autoRandom" class="checkbox"/>

                        <label for="autoRandom"><fmt:message key="more.random.auto"/></label>

                    </td>

                </tr>

            </c:if>

        </table>

    </form>

</c:if>



<h2><img src="<spring:theme code="wapImage"/>" alt=""/>&nbsp;<fmt:message key="more.mobile.title"/></h2>

<fmt:message key="more.mobile.text"><fmt:param value="${model.brand}"/></fmt:message>



<h2><img src="<spring:theme code="podcastImage"/>" alt=""/>&nbsp;<fmt:message key="more.podcast.title"/></h2>

<fmt:message key="more.podcast.text"/>



<c:if test="${model.user.uploadRole}">



    <h2><img src="<spring:theme code="uploadImage"/>" alt=""/>&nbsp;<fmt:message key="more.upload.title"/></h2>



    <form method="post" enctype="multipart/form-data" action="upload.view">

        <table>

            <tr>

                <td><fmt:message key="more.upload.source"/></td>

                <td colspan="2"><input type="file" id="file" name="file" size="42"/></td>

            </tr>

            <tr>

                <td>&nbsp;</td>

                <td>
         <input type="hidden" id="dir" name="dir" size="37" value="/REPLACE/THIS/WITH/YOUR/PREFFERED/DESTINATION/${model.user.username}"/>
         Music will be uploaded into the "Uploaded" directory under you current username.
                  
      </td>

                <td><input type="submit" value="<fmt:message key="more.upload.ok"/>"/></td>

            </tr>

            <tr>

                <td colspan="2">

                    <input type="checkbox" checked name="unzip" id="unzip" class="checkbox"/>

                    <label for="unzip"><fmt:message key="more.upload.unzip"/></label>

                </td>

            </tr>

        </table>

    </form>





    <p class="detail" id="progressText"/>



    <div id="progressBar">

        <div id="progressBarContent"/>

    </div>



</c:if>



</body></html>


What I have done is to completely removed the input text, that makes the textbox with a choice of changing the destination. the functionality is still there as a input-hidden. However. I did also want the uploads should be put into the current usernames own "folder".
You need however do some editing youre self. Down in the file you have:


Code: Select all
<td>
         <input type="hidden" id="dir" name="dir" size="37" value="/REPLACE/THIS/WITH/YOUR/PREFFERED/DESTINATION/${model.user.username}"/>
         Music will be uploaded into the "Uploaded" directory under you current username.
                  
      </td>

Replace the destination text with youre destination. Save the file and try upload something.
If you get a permission denied as I did was because I had not added the new incoming directory from inside subsonic.

Tested and works well in my version: 3.6 (build 806) – den 1 februari 2009, but you have to take the responsibility for youre self - use this on youre own risk.

//Fredrik L
freleu
 
Posts: 1
Joined: Fri Apr 10, 2009 2:38 pm

Postby jonathanroz » Wed Jun 10, 2009 8:33 pm

Great mod!!
jonathanroz
 
Posts: 172
Joined: Thu Dec 18, 2008 8:54 pm
Location: Frisco, TX USA

Postby wintermute » Sat Jun 13, 2009 5:10 am

I 3rd (or forth? ;))

The upload location should be an admin option and thus the textbox read-only
5.257 artists
5.902 albums
69.903 songs
458.50 GB (~ 7.122 hours)
wintermute
 
Posts: 14
Joined: Tue Jan 27, 2009 5:10 am

Postby mixmaster » Sun Jun 14, 2009 4:27 pm

wintermute wrote:The upload location should be an admin option and thus the textbox read-only


I disagree. I want my users to be able to set the directory depending upon what they are uploading.
________
Last edited by mixmaster on Sun Mar 06, 2011 2:11 am, edited 1 time in total.
mixmaster
 
Posts: 121
Joined: Thu Nov 13, 2008 5:30 am

Postby 3R3 » Mon Jun 22, 2009 7:03 pm

since this is another "wich way is best" requests, why not makei it optional in the settings menu of the admin. I can understand both sides, and personally i like the user folder under incoming solution.
User avatar
3R3
 
Posts: 332
Joined: Mon May 04, 2009 2:09 pm
Location: Germany

Re: [FEATURE] Custom Upload Directory

Postby MB0404 » Fri Mar 06, 2015 3:09 pm

I have also seen that little issue in the tomcat-version of subsonic.

Maybe its easier to give tomcat the access to the folder and upload to that folder directly.
In this way in my config the zip-file needs to be built as following:

    Artist.zip_
    I_Album-1
    I__ Files.mp3
If an artist already exists, but not the album, the upload will just add the album under that artists folder.
For me it's the easiest way of managing my files. and it requires yust a little change in "subsonic/WEB-INF/jsp/more.jsp"

there I changed
Code: Select all
<td><input type="text" id="dir" name="dir" size="37" value="${model.uploadDirectory}"/></td>

to
Code: Select all
<td><input type="text" id="dir" name="dir" size="37" value="/var/music"/></td>
MB0404
 
Posts: 3
Joined: Sat Nov 22, 2014 9:37 pm

Re: [FEATURE] Custom Upload Directory

Postby n8ivetxn » Wed Aug 10, 2016 4:22 am

Bumping this one with another request for this feature that originated 7 years ago.

7. Years. Ago.

The system should be smart enough to create username upload folders whenever a new user is created.

The file path should be obscured from the user instead of exposing the full path to the user. I don't care to expose this info to anyone.

Auto-detect the file type after upload, have and include/exclude file type list and...

Audio file formats allowed on the system should then go into a subfolder labelled 'music'.

Video file formats allowed on the system should then go to a subfolder labelled 'video'.

Anything else goes into an 'Other' folder since the system is still allowing anything to be uploaded or delete files after upload if they are on the excluded file type list.

So the path could be something like this for OSX...

/Volumes/DriveName/WhateverIWant/UserName/Music

and

/Volumes/DriveName/WhateverIWant/UserName/Video

and

/Volumes/DriveName/WhateverIWant/UserName/Other

Just my $.02
n8ivetxn
 
Posts: 5
Joined: Fri May 06, 2016 5:33 pm


Return to Feature Requests

Who is online

Users browsing this forum: No registered users and 27 guests