1
0
mirror of https://github.com/Rogiel/httpchannel synced 2025-12-06 07:32:50 +00:00

First commit

This commit is contained in:
2011-08-14 13:51:46 -03:00
commit 1856bfa4e3
13 changed files with 327 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
/*
* This file is part of seedbox <github.com/Rogiel/seedbox>.
*
* seedbox is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* seedbox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/
package com.rogiel.httpchannel;
import java.nio.channels.ReadableByteChannel;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public interface DownloadChannel extends ReadableByteChannel {
}

View File

@@ -0,0 +1,27 @@
/*
* This file is part of seedbox <github.com/Rogiel/seedbox>.
*
* seedbox is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* seedbox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/
package com.rogiel.httpchannel;
import java.net.URI;
import java.nio.channels.WritableByteChannel;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public interface UploadChannel extends WritableByteChannel {
URI getLink();
}

View File

@@ -0,0 +1,25 @@
/*
* This file is part of seedbox <github.com/Rogiel/seedbox>.
*
* seedbox is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* seedbox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/
package com.rogiel.httpchannel.service;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>
*
*/
public interface CaptchaResolver {
}

View File

@@ -0,0 +1,57 @@
/*
* This file is part of seedbox <github.com/Rogiel/seedbox>.
*
* seedbox is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* seedbox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/
package com.rogiel.httpchannel.service;
import java.io.IOException;
import java.net.URI;
import java.nio.ByteBuffer;
import java.nio.channels.ReadableByteChannel;
import com.rogiel.httpchannel.DownloadChannel;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>
*
*/
public interface DownloadService {
DownloadChannel download(URI uri, CaptchaResolver captchaResolver);
/**
* Simple delegating implementation for {@link DownloadChannel}.
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public abstract class SimpleDownloadChannel implements DownloadChannel {
protected final ReadableByteChannel channel;
public SimpleDownloadChannel(ReadableByteChannel channel) {
this.channel = channel;
}
public int read(ByteBuffer dst) throws IOException {
return channel.read(dst);
}
public boolean isOpen() {
return channel.isOpen();
}
public void close() throws IOException {
channel.close();
}
}
}

View File

@@ -0,0 +1,25 @@
/*
* This file is part of seedbox <github.com/Rogiel/seedbox>.
*
* seedbox is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* seedbox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/
package com.rogiel.httpchannel.service;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>
*
*/
public interface Service {
}

View File

@@ -0,0 +1,53 @@
/*
* This file is part of seedbox <github.com/Rogiel/seedbox>.
*
* seedbox is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* seedbox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/
package com.rogiel.httpchannel.service;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.WritableByteChannel;
import com.rogiel.httpchannel.UploadChannel;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public interface UploadService {
UploadChannel upload(String filename, long filesize);
/**
* Simple delegating implementation for {@link UploadChannel}.
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public abstract class SimpleUploadChannel implements UploadChannel {
protected final WritableByteChannel channel;
public SimpleUploadChannel(WritableByteChannel channel) {
this.channel = channel;
}
@Override
public int write(ByteBuffer src) throws IOException {
return channel.write(src);
}
@Override
public boolean isOpen() {
return channel.isOpen();
}
}
}

View File

@@ -0,0 +1,51 @@
/*
* This file is part of seedbox <github.com/Rogiel/seedbox>.
*
* seedbox is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* seedbox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/
package com.rogiel.httpchannel.service.impl;
import java.io.IOException;
import java.net.URI;
import com.rogiel.httpchannel.DownloadChannel;
import com.rogiel.httpchannel.UploadChannel;
import com.rogiel.httpchannel.service.CaptchaResolver;
import com.rogiel.httpchannel.service.DownloadService;
import com.rogiel.httpchannel.service.UploadService;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>
*
*/
public class MegaUploadService implements DownloadService, UploadService {
public DownloadChannel download(URI uri, CaptchaResolver captchaResolver) {
return new SimpleDownloadChannel(null) {
};
}
public UploadChannel upload(String filename, long filesize) {
return new SimpleUploadChannel(null) {
@Override
public void close() throws IOException {
}
@Override
public URI getLink() {
return null;
}
};
}
}

1
src/main/resources/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/config