OSDN Git Service

add ACS webapp, sql, htdocs
[acs/acs.git] / webapp / modules / User / actions / SetOpenLevelForProfileAction.class.php
diff --git a/webapp/modules/User/actions/SetOpenLevelForProfileAction.class.php b/webapp/modules/User/actions/SetOpenLevelForProfileAction.class.php
new file mode 100644 (file)
index 0000000..2401256
--- /dev/null
@@ -0,0 +1,48 @@
+<?php
+// $Id: SetOpenLevelForProfileAction.class.php,v 1.3 2006/11/20 08:44:25 w-ota Exp $
+
+class SetOpenLevelForProfileAction extends BaseAction
+{
+       // GET
+       function execute() {
+               $context = $this->getContext();
+               $controller = $context->getController();
+               $request =  $context->getRequest();
+               $user = $context->getUser();
+               
+               $acs_user_info_row = $user->getAttribute('acs_user_info_row');
+
+               // ÂоݤȤʤë¥æ¡¼¥¶¥³¥ß¥å¥Ë¥Æ¥£ID¤ò¼èÆÀ
+               $user_community_id = $request->ACSgetParameter('id');
+               // ÂоݤȤʤëcontents_key¤ò¼èÆÀ
+               $contents_key = $request->ACSgetParameter('contents_key');
+               // ÂоݤȤʤ륳¥ó¥Æ¥ó¥Ä¼ïÊÌ¥³¡¼¥É¤ò¼èÆÀ
+               $contents_type_code = $request->ACSgetParameter('contents_type_code');
+
+               // ¥³¥ó¥Æ¥ó¥Ä¼ïÊÌ¥Þ¥¹¥¿
+               $contents_type_master_array = ACSDB::get_master_array('contents_type');
+               // ¸ø³«ÈÏ°Ï
+               $open_level_master_row_array = ACSAccessControl::get_open_level_master_row_array(
+                               ACSMsg::get_mst('community_type_master','D10'), $contents_type_master_array[$contents_type_code]);
+               if ($acs_user_info_row['is_acs_user']) {
+                       // ¥Þ¥¤¥Õ¥ì¥ó¥º¥°¥ë¡¼¥×
+                       $friends_group_row_array = ACSUser::get_friends_group_row_array($user_community_id);
+               } else {
+                       $friends_group_row_array = array();
+               }
+
+               // set
+               $request->setAttribute('contents_key', $contents_key);
+               $request->setAttribute('contents_type_code', $contents_type_code);
+               $request->setAttribute('open_level_master_row_array', $open_level_master_row_array);
+               $request->setAttribute('friends_group_row_array', $friends_group_row_array);
+
+               return View::SUCCESS;
+       }
+
+       function isSecure () {
+               return false;
+       }
+}
+
+?>