///////////////////////////////////////////////////////////////////////////////
// 공용 버튼
///////////////////////////////////////////////////////////////////////////////
// global_cache_confirm_btn => global_offcloud_cache_confirm_btn
$("body").on('click', '#global_offcloud_cache_confirm_btn', function(e){
e.preventDefault();
hash = $(this).data('hash');
$.ajax({
url: '/offcloud2/ajax/hash',
type: "POST",
cache: false,
data:{hash:hash},
dataType: "json",
success: function (data) {
if (data == 'true') {
$.notify('캐쉬 되어 있습니다.', {
type: 'success'
});
} else if (data == 'false') {
$.notify('캐쉬 되어 있지 않습니다.', {
type: 'warning'
});
} else if (data == 'fail') {
$.notify('캐쉬 확인 실패', {
type: 'warning'
});
}
}
});
//$(location).attr('href', '/offcloud/cache?magnet=' + hash)
});
//global_add_remote_btn -> global_offcloud_add_btn
$("body").on('click', '#global_offcloud_add_btn', function(e) {
e.preventDefault();
hash = $(this).data('hash');
$.ajax({
url: '/offcloud2/ajax/add_remote',
type: "POST",
cache: false,
data: {hash:hash},
dataType: "json",
success: function (data) {
m_modal(data)
}
});
});
$("body").on('click', '#global_downloader_add_btn', function(e){
e.preventDefault();
download_url = $(this).data('hash');
$.ajax({
url: '/downloader/ajax/add_download',
type: "POST",
cache: false,
data: {download_url:download_url},
dataType: "json",
success: function (data) {
show_result_add_download(data);
}
});
});
// 토렌트 프로그램에 다운로드 추가할 결과를 보여주는
function show_result_add_download(data) {
try {
sub = ''
program = '토렌트'
if (data.default_torrent_program == '0') {
program = '트랜스미션에 토렌트'
sub = 'transmission'
} else if (data.default_torrent_program == '1') {
program = '다운로드스테이션에 토렌트'
sub = 'downloadstation'
} else if (data.default_torrent_program == '2') {
program = '큐빗토렌트다에 토렌트'
sub = 'qbittorrent'
} else if (data.default_torrent_program == '3') {
program = 'aria2에 토렌트'
sub = 'aria2'
} else if (data.default_torrent_program == '4') {
program = 'PikPak에 토렌트'
sub = 'pikpak'
}
}
catch {
}
if (data.ret == 'success') {
$.notify({message:''+ program +'를 추가하였습니다.
클릭시 다운로드 상태창으로 이동', url:'/downloader/'+sub+'/status',
target: '_self'}, {
type: 'success',
});
} else if (data.ret == 'success2') {
$.notify('일반 파일 다운로드를 시작하였습니다.', {
type: 'success'
});
} else if (data.ret == 'fail') {
$.notify(''+ program +' 추가에 실패하였습니다.', {
type: 'warning'
});
} else {
$.notify(''+ program +' 추가 에러
'+data.error+'', {
type: 'warning'
});
}
}
$("body").on('click', '#global_torrent_info_btn', function(e) {
e.preventDefault();
hash = $(this).data('hash');
$.ajax({
url: '/torrent_info/ajax/torrent_info',
type: "POST",
cache: false,
data: {hash:hash},
dataType: "json",
success: function (data) {
m_modal(data, "토렌트 정보")
}
});
});
function get_torrent_program_name(p) {
if (p == '0') return '트랜스미션'
else if (p == '1') return '다운로드스테이션'
else if (p == '2') return '큐빗토렌트'
else if (p == '3') return 'aria2'
else if (p == '4') return 'PikPak'
}
function global_relay_test(remote) {
$.ajax({
url: '/' + 'gd_share_client' + '/ajax/'+'base'+'/relay_test',
type: "POST",
cache: false,
data: {remote:remote},
dataType: "json",
success: function (data) {
if (data.ret == 'success') {
$.notify('릴레이 공유가 가능합니다.', {type: 'success'});
}else {
$.notify('설정이 잘못 되어 있습니다.', {type: 'warning'});
}
}
});
}
$("#video_modal").on('hidden.bs.modal', function () {
document.getElementById("video_modal_video").pause();
//streaming_kill();
});
$("#video_modal").on('click', '#trailer_close_btn', function(e){
e.preventDefault();
document.getElementById("video_modal_video").pause();
//streaming_kill();
});
function streaming_kill(command, data={}) {
$.ajax({
url: '/' + 'ffmpeg' + '/ajax/streaming_kill',
type: "POST",
cache: false,
data:{},
dataType: "json",
success: function (data) {
}
});
}
///////////////////////////////////////////////////////////////////////////////
// Global.. JS 파일로 뺄것
///////////////////////////////////////////////////////////////////////////////
$("body").on('click', '#global_json_btn', function(e){
e.preventDefault();
var id = $(this).data('id');
for (i in current_data.list) {
if (current_data.list[i].id == id) {
m_modal(current_data.list[i])
}
}
});
$("body").on('click', '#global_reset_btn', function(e){
e.preventDefault();
document.getElementById("order").value = 'desc';
document.getElementById("option").value = 'all';
document.getElementById("search_word").value = '';
global_sub_request_search('1')
});
$("body").on('click', '#global_remove_btn', function(e) {
e.preventDefault();
id = $(this).data('id');
$.ajax({
url: '/'+package_name+'/ajax/'+sub+ '/db_remove',
type: "POST",
cache: false,
data: {id:id},
dataType: "json",
success: function (data) {
if (data) {
$.notify('삭제되었습니다.', {
type: 'success'
});
global_sub_request_search(current_data.paging.current_page, false)
} else {
$.notify('삭제 실패', {
type: 'warning'
});
}
}
});
});