spacecp_upload.php
5.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
/**
 *      [Discuz!] (C)2001-2099 Comsenz Inc.
 *      This is NOT a freeware, use is subject to license terms
 *
 *      $Id: spacecp_upload.php 32041 2012-11-01 07:28:28Z zhengqingpeng $
 */
if(!defined('IN_DISCUZ')) {
	exit('Access Denied');
}
$albumid = empty($_GET['albumid'])?0:intval($_GET['albumid']);
if($_GET['op'] == 'recount') {
	$newsize = C::t('home_pic')->count_size_by_uid($_G['uid']);
	C::t('common_member_count')->update($_G['uid'], array('attachsize'=>$newsize));
	showmessage('do_success', 'home.php?mod=spacecp&ac=upload');
}
if(submitcheck('albumsubmit') && helper_access::check_module('album')) {
	if(!count($_POST['title'])) {
		showmessage('upload_select_image');
	}
	if($_POST['albumop'] == 'creatalbum') {
		$catid = intval($catid);
		$_POST['albumname'] = empty($_POST['albumname'])?'':getstr($_POST['albumname'], 50);
		$_POST['albumname'] = censor($_POST['albumname'], NULL, TRUE);
		if(is_array($_POST['albumname']) && $_POST['albumname']['message']) {
			showmessage($_POST['albumname']['message']);
		}
		if(empty($_POST['albumname'])) $_POST['albumname'] = gmdate('Ymd');
		$_POST['friend'] = intval($_POST['friend']);
		$_POST['target_ids'] = '';
		if($_POST['friend'] == 2) {
			$uids = array();
			$names = empty($_POST['target_names']) ? array() : explode(' ', str_replace(array(lang('spacecp', 'tab_space'), "\r\n", "\n", "\r"), ' ', $_POST['target_names']));
			if($names) {
				$uids = C::t('common_member')->fetch_all_uid_by_username($names);
			}
			if(empty($uids)) {
				$_POST['friend'] = 3;
			} else {
				$_POST['target_ids'] = implode(',', $uids);
			}
		} elseif($_POST['friend'] == 4) {
			$_POST['password'] = trim($_POST['password']);
			if($_POST['password'] == '') $_POST['friend'] = 0;
		}
		if($_POST['friend'] !== 2) {
			$_POST['target_ids'] = '';
		}
		if($_POST['friend'] !== 4) {
			$_POST['password'] = '';
		}
		$setarr = array();
		$setarr['albumname'] = $_POST['albumname'];
		$setarr['catid'] = intval($_POST['catid']);
		$setarr['uid'] = $_G['uid'];
		$setarr['username'] = $_G['username'];
		$setarr['dateline'] = $setarr['updatetime'] = $_G['timestamp'];
		$setarr['friend'] = $_POST['friend'];
		$setarr['password'] = $_POST['password'];
		$setarr['target_ids'] = $_POST['target_ids'];
		$setarr['depict'] = dhtmlspecialchars($_POST['depict']);
		$albumid = C::t('home_album')->insert($setarr ,true);
		if($setarr['catid']) {
			C::t('home_album_category')->update_num_by_catid('1', $setarr[catid]);
		}
		if(empty($space['albumnum'])) {
			$space['albums'] = C::t('home_album')->count_by_uid($space['uid']);
			C::t('common_member_count')->update($_G['uid'], array('albums' => $space['albums']));
		} else {
			C::t('common_member_count')->increase($_G['uid'], array('albums' => 1));
		}
	} else {
		$albumid = intval($_POST['albumid']);
	}
	$havetitle = trim(implode('', $_POST['title']));
	if(!empty($havetitle)) {
		foreach($_POST['title'] as $picid => $title) {
			$title = dhtmlspecialchars($title);
			C::t('home_pic')->update_for_uid($_G['uid'], $picid, array('title'=>$title, 'albumid' => $albumid));
		}
	} else {
		$picids = array_keys($_POST['title']);
		C::t('home_pic')->update_for_uid($_G['uid'], $picids, array('albumid' => $albumid));
	}
	if($albumid) {
		album_update_pic($albumid);
	}
	if(ckprivacy('upload', 'feed')) {
		require_once libfile('function/feed');
		feed_publish($albumid, 'albumid');
	}
	showmessage('upload_images_completed', "home.php?mod=space&uid=$_G[uid]&do=album&quickforward=1&id=".(empty($albumid)?-1:$albumid));
} else {
	if(!checkperm('allowupload') || !helper_access::check_module('album')) {
		showmessage('no_privilege_upload', '', array(), array('return' => true));
	}
	cknewuser();
	$config = urlencode($_G['siteroot'].'home.php?mod=misc&ac=swfupload&op=config'.($_GET['op'] == 'cam'? '&cam=1' : ''));
	$albums = getalbums($_G['uid']);
	$actives = ($_GET['op'] == 'flash' || $_GET['op'] == 'cam')?array($_GET['op']=>' class="a"'):array('js'=>' class="a"');
	$maxspacesize = checkperm('maxspacesize');
	if(!empty($maxspacesize)) {
		space_merge($space, 'count');
		space_merge($space, 'field_home');
		$maxspacesize = $maxspacesize + $space['addsize'] * 1024 * 1024;
		$haveattachsize = ($maxspacesize < $space['attachsize'] ? '-':'').formatsize($maxspacesize - $space['attachsize']);
	} else {
		$haveattachsize = 0;
	}
	require_once libfile('function/friend');
	$groups = friend_group_list();
	loadcache('albumcategory');
	$category = $_G['cache']['albumcategory'];
	$categoryselect = '';
	if($category) {
		include_once libfile('function/portalcp');
		$categoryselect = category_showselect('album', 'catid', !$_G['setting']['albumcategoryrequired'] ? true : false, $_GET['catid']);
	}
}
$navtitle = lang('core', 'title_'.(!empty($_GET['op']) ? $_GET['op'] : 'normal').'_upload');
require_once libfile('function/upload');
$swfconfig = getuploadconfig($_G['uid'], 0, false);
include_once template("home/spacecp_upload");
?>